###### Run the command `"jobs"`. Can you confirm that the program displays the list with the status of all jobs and that one of them is "Stopped" like the example above?
###### Can you confirm that the program brings the background job to the foreground like in the example above?
##### Try to run the command `"fg"` then stop the process with the `"Ctrl + Z"`.
```
sleep 50000
^Z
[2]+ Stopped sleep 50000
```
###### Can you confirm that the program brings the background job to the foreground and after you press `"Ctrl + Z"` the process stops like in the example above?
##### Try to run the command `"bg"`.
```
[2]+ sleep 50000 &
```
###### Run `"jobs"`. Can you confirm that the program started the process in the background like in the example above?