Answer:
Please find the 3 options below.
Explanation:
To begin with, Task Manager in windows, is a monitor program that provides information or shows application and processes running on a computer. Task manager also provide insights about the general status of a computer. The three options for entering or accessing task manager in windows are:
1. Press Ctrl+Alt+Delete and then click Task Manager
2. Right-click the taskbar and choose Start Task Manager
3. Right-click the taskbar and choose Manage Tasks
Answer:
C) chain
Explanation:
Small group network comprises of a vertical, direct, chain, all channel and box network
The vertical network is a network that is made for some specific purpose or goal of the business organization.
The direct network is a network that is directly interrelated to each other.
The chain network is that network in which the formal chain of command follows through which proper communication can be done in all the departments without any barriers to a communication network
It also shows that each member can communicate the person below and above their position only in a vertical hierarchy. It follows the top-down approach
This all channel network follows an informal communication network through which anyone can communicate with anyone at any time with following any chain of the business organization
The box network covers all the things in one network. Like - various software, packages, etc
In the given case Peter is asking permission from the supervisor and supervisor is discussing with the department director, is showing the formal chain of command that's why according to the given scenario the most appropriate answer is chain network.
Answer:
import java.util.*;
public class Main {
public static void main(String[] args)
{
Scanner scan = new Scanner();
double budget=0, num=0, total=0;
System.out.println("Your budget for the month? ");
budget=scan.nextDouble();
System.out.println("enter all expense, and after that type -9999 to quit: ");
while(num != -9999)
{
total+=num;
num=scan.nextDouble();
}
if(total<=budget)
{
System.out.println("under budget by ");
System.out.println(budget-total);
}
else
{
System.out.println("over budget by ");
System.out.println(total-budget);
}
}
}
Explanation:
- Take the budget as an input from user and store it to the budget variable.
- Loop until user has entered all his expenses and keep on adding them to the total variable.
- Check If the total is less than or equal to budget or otherwise, and then print the relevant message accordingly.
Cleaning up a system helps clear up the space on the drives. It may also clear up processor usage, ram usage if you uninstall programs that automatically started when the system booted. You may also delete some unwanted programs in the process.