I don’t know what the answer is I wish I could help
CPU is the Answer to this question.
Answer:
Computations use multiple processors. There is an increase in speed.
Explanation:
The increase in speed is loosely tied to the number of processor or computers used.
Mark me a brainliest answer
Answer:
enhanced for loop
Explanation:
Enhanced for loop is an improve concept about loops, this features was implemented in Java SE 5.0 version, this method simplify the For structure. For example:
for (int i = 0; i <array.length; i ++) {
System.out.print (array [i]);
}
Enhanced for loop
for (String element : array) {
System.out.print(element);
}