Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the command to send the TERM signal to process 1234.
Linux CLI
kill -[1] 1234
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using signal 9 (KILL) which forcefully stops the process.
✗ Incorrect
The TERM signal (15) politely asks a process to terminate.
2fill in blank
mediumComplete the command to forcefully kill process 5678.
Linux CLI
kill -[1] 5678
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using TERM (15) which allows process to clean up.
✗ Incorrect
Signal 9 (KILL) immediately stops a process without cleanup.
3fill in blank
hardFix the error in the command to send the HUP signal to process 4321.
Linux CLI
kill -[1] 4321
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 15 (TERM) instead of 1 (HUP).
✗ Incorrect
Signal 1 (HUP) tells a process to reload configuration.
4fill in blank
hardFill both blanks to send the INT signal to process 8765 using signal name.
Linux CLI
kill -[1] [2]
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong signal name or wrong process ID.
✗ Incorrect
Signal INT interrupts a process (Ctrl+C). Use 'kill -INT
5fill in blank
hardFill both blanks to send the STOP signal to process 3456 using signal number.
Linux CLI
kill -[1] [2]
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using KILL (9) or TERM (15) instead of STOP (19).
✗ Incorrect
Signal 19 (STOP) pauses a process. Use 'kill -19