1. monitor output
2. keyboard input
3. mouse input
4. <span>microphone input</span>
5. printer output , or input if it has scanner
<span>6. speakers output</span>
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
Answer:
char
Explanation:
The character data type written as char holds any single character, numbers and non-printing characters. In java and most programming languages, the value of the character must be placed within single quotes. for example
char c = 'd'
char c = '9'
char c = '\t'
Are all valid declarations of a variable c as char and assigned d, then 9 and then used with a non-printing character (tab ) with the escape sequence.
Answer:
Active Directory
Explanation:
The 2012 R2 Windows Server is the 6th version of Windows Server server operating system which is made by Microsoft. It is a part of the Windows NT family of the operating systems.
Active Directory helps to store the default user profiles as well as the user login scripts.
It helps to assign the system policies, assign permission to the users overt he network resources and also to deploy software in a centralized manner.
Answer:
THREE strategies which local municipality is implementing in addressing the issue of lack of clean water caused by human factors include:
1) Increasing the amount of tax for those companies which are opening their wastes into water sources which can help built better water cleaning and recycle system.
2) Tree plantation is another strategy to help secure the water sources and naturally keep cleaning it.
3) Running awareness campaigns for general people to keep the water sources clean as well as use the only amount of water which they need and not waste it.
Explanation:
i hope this helps you