The answer will be google docs since it depends on a web and its an application. hope it helps
Answer:
Motor Control Center
Explanation:
Such centers are built to control various or all (if possible) electric motors found in a central location. The Motor Control Center usually comprises of many section that are enclosed but having one central power bus, but each of the section would have its own combination starter. It is an efficient power distribution system also.
Answer:
B. Change the router's default administrative password
Explanation:
The best way to prevent any unauthorized use is to change the password to something more secure using 12 minimum characters and including number, symbols, upper and lower case.
Answer:
mkdir -m 770 sales
Explanation:
The command mkdir is used to create a directory and the attribute or flag
-m is used to assign permissions on create a folder.
Example:
mkdir -m 770 sales
Create a folder with permissions 770 with name sales
Answer:
hope this helps
Explanation:
import java.util.Scanner;
public class Problem3 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.print("Enter start value: ");
int start = in.nextInt();
System.out.print("Enter end value: ");
int end = in.nextInt();
if (start > end) {
int temp = start;
start = end;
end = temp;
}
for (int i = start; i <= end; i++) {
if (i % 2 == 1) {
System.out.print(i);
if (i == end || i + 1 == end) {
System.out.println();
} else {
System.out.print(", ");
}
}
}
}
}