Knowee
Questions
Features
Study Tools

1.Question 1Which of the following statements are true about child processes in Windows? Select all that apply.1 pointA child process inherits environment variables and settings from its parent.A child process can be terminated by running the taskkill /pidcommand in the CLI.A child process is dependent on its parent process until the child process is terminated.A child process can be terminated by clicking on the X button in the top right corner of the application. 2.Question 2In Linux, what process has the PID of 1?1 pointgrepinitkernelless3.Question 3You want to find a process PID number for a process running on your Windows machine. How can you do this? Select all that apply. 1 pointSelect the Process tab in Task Manager. Select the Details tab in Task Manager.  Use the tasklist command from the CLI.Use the commandlet Get-Process from the PowerShell prompt. 4.Question 4Which of the following methods will provide information on processes that are running in Linux? Select all that apply.1 pointUse the ps -x command.Use the ls command.List the contents of the /etc directory.List the contents of the /proc directory.5.Question 5Which of the following represents a signal in Linux?1 pointSUDOSIGPROFTOUCHPING6.Question 6Which of the following options in Process Explorer will terminate a selected process? Select all that apply.1 pointKill Process TreeRestartKill ProcessSuspend7.Question 7In Linux, what signal puts a process into a suspended state?1 pointSIGTSTPSIGKILL SIGTERM SIGINT 8.Question 8In iOS and Android, what’s the first thing you should try when troubleshooting a misbehaving app?1 pointUninstall apps, one at a time, starting with the least recently used app.Check for an app that is using a lot of battery.Close apps, one at a time, starting with the least recently used app.Close apps, one at a time, starting with the foreground app.9.Question 9Which of the following Powershell commands will sort processes by amount of non-paged memory, in descending order?1 pointGet-Process| Sort NPM -descending | Select -property ID, ProcessNameGet-Process| Sort WS -ascending | Select -property ID, ProcessNameGet-Process| Sort CPU -descending | Select -property ID, ProcessNameGet-Process| Sort -property ID, ProcessName10.Question 10What does the top command do in Linux? Select all that apply.1 pointIt lists the top processes that are using the most resources on a machine.It provides information on process CPU and memory usage.It lists the top ten largest files on the system.It provides a snapshot of total tasks currently running or idling.

Question

1.Question 1Which of the following statements are true about child processes in Windows? Select all that apply.1 pointA child process inherits environment variables and settings from its parent.A child process can be terminated by running the taskkill /pidcommand in the CLI.A child process is dependent on its parent process until the child process is terminated.A child process can be terminated by clicking on the X button in the top right corner of the application. 2.Question 2In Linux, what process has the PID of 1?1 pointgrepinitkernelless3.Question 3You want to find a process PID number for a process running on your Windows machine. How can you do this? Select all that apply. 1 pointSelect the Process tab in Task Manager. Select the Details tab in Task Manager.  Use the tasklist command from the CLI.Use the commandlet Get-Process from the PowerShell prompt. 4.Question 4Which of the following methods will provide information on processes that are running in Linux? Select all that apply.1 pointUse the ps -x command.Use the ls command.List the contents of the /etc directory.List the contents of the /proc directory.5.Question 5Which of the following represents a signal in Linux?1 pointSUDOSIGPROFTOUCHPING6.Question 6Which of the following options in Process Explorer will terminate a selected process? Select all that apply.1 pointKill Process TreeRestartKill ProcessSuspend7.Question 7In Linux, what signal puts a process into a suspended state?1 pointSIGTSTPSIGKILL SIGTERM SIGINT 8.Question 8In iOS and Android, what’s the first thing you should try when troubleshooting a misbehaving app?1 pointUninstall apps, one at a time, starting with the least recently used app.Check for an app that is using a lot of battery.Close apps, one at a time, starting with the least recently used app.Close apps, one at a time, starting with the foreground app.9.Question 9Which of the following Powershell commands will sort processes by amount of non-paged memory, in descending order?1 pointGet-Process| Sort NPM -descending | Select -property ID, ProcessNameGet-Process| Sort WS -ascending | Select -property ID, ProcessNameGet-Process| Sort CPU -descending | Select -property ID, ProcessNameGet-Process| Sort -property ID, ProcessName10.Question 10What does the top command do in Linux? Select all that apply.1 pointIt lists the top processes that are using the most resources on a machine.It provides information on process CPU and memory usage.It lists the top ten largest files on the system.It provides a snapshot of total tasks currently running or idling.

...expand
🧐 Not the exact question you are looking for?Go ask a question

Solution

  1. The true statements about child processes in Windows are:

    • A child process inherits environment variables and settings from its parent.
    • A child process can be terminated by running the taskkill /pid command in the CLI.
    • A child process can be terminated by clicking on the X button in the top right corner of the application.
  2. In Linux, the process that has the PID of 1 is init.

  3. To find a process PID number for a process running on your Windows machine, you can:

    • Select the Process tab in Task Manager.
    • Select the Details tab in Task Manager.
    • Use the tasklist command from the CLI.
    • Use the commandlet Get-Process from the PowerShell prompt.
  4. The methods that will provide information on processes that are running in Linux are:

    • Use the ps -x command.
    • List the contents of the /proc directory.
  5. In Linux, SIGPROF represents a signal.

  6. The options in Process Explorer that will terminate a selected process are:

    • Kill Process Tree
    • Kill Process
  7. In Linux, the signal that puts a process into a suspended state is SIGTSTP.

  8. In iOS and Android, the first thing you should try when troubleshooting a misbehaving app is to close apps, one at a time, starting with the least recently used app.

  9. The Powershell command that will sort processes by amount of non-paged memory, in descending order is Get-Process| Sort NPM -descending | Select -property ID, ProcessName.

  10. The top command in Linux does the following:

    • It lists the top processes that are using the most resources on a machine.
    • It provides information on process CPU and memory usage.
    • It provides a snapshot of total tasks currently running or idling.

This problem has been solved

Similar Questions

Which of the following is not correct: (two choice)A.A process is a program in progress, possessing an address space, an instruction pointer, a set of registers, and a stack.B.The process itself decides when to stop the processing operation to serve another process.C.A process is a program that is in memoryD.Processes can communicate with each other not through the operating system.

Which process can be affected by other processes executing in the system?Select one:a. child  processb. init processc. parent processd. cooperating process

Which of the following options in Process Explorer will terminate a selected process? Select all that apply.1 pointRestartKill Process TreeKill ProcessSuspend

What is a process identifier (PID) used for in an operating system?Question 17Answera.To identify the memory pages used by the processb.To identify the software libraries used by the processc.To uniquely identify a processd.To identify the hardware components used by the process

Which of the following is not included in the process control block? (A) Process state and priority (B) File descriptors and environment variables (C) Program counter and stack pointer (D) Memory management information (E) Process termination time

1/3

Upgrade your grade with Knowee

Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.