Answer:
CPU, printer, peripherals
Explanation:
Keep in mind hardware is parts you can add to the computer. Other examples are monitor, keyboard, mouse.
Microsoft Office and the operating system are software.
Answer:
D. General State folder.
Explanation:
In <em>geographical filing</em>, files received by persons, organizations, firms or businesses are categorized according to their location. This filing method can then be arranged according to numeric or alphabetic order as determined by the filing organization.
Persons, business or organizations that do not specify their business location are placed in a general state folder until their locations are identified.
Methods in Java are collections of program statements that are named, and executed when called/invoked
The printShortWords method in Java where comments are used to explain each line is as follows:
//This defines the static method
public static void printShortWords(String str, int maxLength){
//This iterates through each word in the string
for(String word: str.split(" ")){
//The compares the length of each word to maxLength
if(word.length()<=maxLength){
//If the length of the current word is atleast maxLength, the word is printed
System.out.print(word+" ");
}
}
}
Read more about static methods at:
brainly.com/question/19360941