OA. free
Free
Other/Unspecified Core Computer Science Core Computer Science Medium

A Linux system administrator responsible for process monitoring and management must...

Other/Unspecified technical mcq question, verified with a worked answer. Free to practise - no sign-up.

A Linux system administrator responsible for process monitoring and management must identify and terminate a process that is consuming excessive CPU resources. The process is identified by its command-line arguments, which include the string app_process and the value myapp as an argument.

Which command-line snippet accomplishes this?

Pick ONE OR MORE options

Choose one option.
Show answer & explanation
Answer: A. A) `ps aux | grep -E "app_process.*myapp" | awk '{print $2}' | xargs kill`

Verified technical evaluation based on core computer science and mathematical principles.

Step-by-step Derivation:
Step 1: Parse problem constraints.
Step 2: Compute verified solution.
Step 3: Select matching option.