Process Management – Shuffle Q/A 1

28. Which of the following options are available in Process Explorer after right-clicking a running process in the top window pane? Select all that apply.

  • Restart
  • Suspend
  • Kill Process
  • Remove Process Tree

29. In Linux, what signal is sent when you enter the kill pidcommand?

  • SIGTSTP
  • SIGTERM
  • SIGINT
  • SIGKILL

30. Which of the following tools or commands can be used to monitor resources in Windows? Select all that apply.

  • The PowerShell Get-Processcommandlet
  • The msinfo32 command entered in the CLI
  • Control Panel
  • The Resource Monitoring tool

31. You launch notepad.exe from a Powershell command line. Which of the following is true?

  • The Powershell process is the parent process for notepad.exe.
  • The notepad.exe process is the parent process for Powershell.
  • The notepad.exe process will terminate when the Powershell process terminates.
  • The Powershell process will terminate when the notepad.exe process terminates.

32. Which of the following Linux commands shows information about the current time, how long your system's been running, how many users are logged on, and what the load average of your machine is?

  • top
  • uptime
  • lsof
  • ps -ef

33. Which of the following represents a signal in Linux?

  • SUDO
  • PING
  • TOUCH
  • SIGPROF

34. Which of the following options in Process Explorer will terminate a selected process? Select all that apply.

  • Kill Process
  • Suspend
  • Kill Process Tree
  • Restart

35. Which of the following Powershell commands will sort processes by amount of non-paged memory, in descending order?

  • Get-Process| Sort NPM -descending | Select -property ID, ProcessName
  • Get-Process| Sort CPU -descending | Select -property ID, ProcessName
  • Get-Process| Sort -property ID, ProcessName
  • Get-Process| Sort WS -ascending | Select -property ID, ProcessName

36. When a process completes its task, what happens? Select all that apply.

  • The process terminates automatically.
  • The process releases all the resources it was using to its parent.
  • The process goes into a suspended state.
  • The process releases all the resources it was using back to the kernel.

37. How do you find a process PID number in Windows Task Manager?

  • Task Manager will not show PID numbers (you have to use the tasklist command or the Get-Process commandlet).
  • Click on the Processes tab.
  • Click the Details tab.
  • Select a process from the process list.

Shuffle Q/A 2

37. Which of the following process information can you find in Windows Task Manager? Select all that apply.

  • The memory resources the process is using
  • What application or image the process is running
  • What time the process started
  • The CPU resources the process is using

38. Which of the following statements are true about SIGINT? Select all that apply.

  • It can be sent at the CLI by typing the sigint command.
  • It is a signal that exists in both Windows and Linux.
  • It is an interrupt signal that can be sent to a process that is running.
  • It can be sent at the CLI by pressing the CTRL+C keys.

Devendra Kumar

Project Management Apprentice at Google

Leave a Reply