Answer:
You can.
Explanation:
If you want you can, but usually as you cover topics you should list the definitions for each topic then instead of all at the beginning you do not want it to seem like it is a lot.
You just answer other people’s questions you can also use this app to help you with your questions as well
Just decrease the font size and the size of the like will decrease.
Decrease font size by pressing on the part were it says 29 and typing in a smaller number like 14 for example
Machine Language is a language used to communicate with the Central Processing Unit (also known as the CPU)
Answer:
public static List<String> listUpper(List<String> list){
List<String> upperList = new ArrayList<String>();
for(String s:list){
s = s.toUpperCase();
upperList.add(s);
}
return upperList;
}
Explanation:
Create a method named listUpper that takes list as a parameter
Inside the method, initialize a new list named upperList. Create a for-each loop that iterates through the list. Inside the loop, convert each string to uppercase, using toUpperCase method, and add it to the upperList.
When the loop is done, return the upperList