Answer:
clean up space or reboot ur computer or delete unwanted apps and files .
Explanation:
It is b, as some word checkes don't recognize modern slangs.
The part of an algorithm which is repeated for a fixed number of times is classified as iteration.
Iteration is basically a repeated execution of the same set of instructions in sequence until a certain condition is met. For loop is the type of iteration in which a block of instructions repeated again and again for the fixed number of times. Upon completion of the previous iteration, the next iteration starts. The iteration process stops only when the given termination condition matches.
For example, this is the syntax of for loop:
for(initialize; condition; increment);
for (int num=0; num<5; num++)
In this for loop, iteration is carried out for 5 times, starting the value of num from 0 and repeatedly iterates with an increment of one in num until the value of num is less than 5 i.e. 4. This loop terminates once the value of num becomes 5 and, in result the condition num < 5 fails to match anymore.
Therefore, the part of an algorithm which is repeated for fixed number of times is classfied as iteration.
You can learn more about itreation at
brainly.com/question/28134937
#SPJ4
Answer:
import java.util.Scanner;
public class num5 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter one the numbers - 1, 2, or 3.");
int num = in.nextInt();
switch (num){
case 1:
System.out.println("one");
break;
case 2:
System.out.println("two");
break;
case 3:
System.out.println("three");
break;
default:
System.out.println("Error");
}
}
}
Explanation:
- Using Java Programming Language
- User Scanner Class to prompt, receive and store user's input
- Use a switch statement with three cases as required by the question to output one, two or three
- Use the default statement to handle any other case
I would say the correct answer is "octane". It is important that you use the fuel with the correct octane rating recommended by the manufacturer. Among the choices it is only octane that is used as a rating for fuels. Hope this helps.