Answer:
public class Main
{
public static void main(String[] args) {
int userNum = 40;
while(userNum > 1){
userNum /= 2;
System.out.print(userNum + " ");
}
}
}
Explanation:
*The code is in Java.
Initialize the userNum
Create a while loop that iterates while userNum is greater than 1. Inside the loop, divide the userNum by 2 and set it as userNum (same as typing userNum = userNum / 2;). Print the userNum
Basically, this loop will iterate until userNum becomes 1. It will keep dividing the userNum by 2 and print this value.
For the values that are smaller than 1 or even for 1, the program outputs nothing (Since the value is not greater than 1, the loop will not be executed).
Which presenter would most likely benefit from a custom slide show?
a teacher who teaches four sessions of the same course
I believe its <span>c-set up a study space, preview your materials, create a routine</span>
Answer:
D. nothing, as the alkyne would not react to an appreciable extent.
Explanation:
Nothing, as the alkyne would not react to an appreciable extent.
Answer:
All the above options are correct.
Explanation:
In a Microsoft Word, to apply a left indent to a selected paragraph, a user can do any of the following:
1. Use the combination keys Ctrl+M on the keyboard to insert a left indent.
2. Use the mouse to pull the left indent marker on the ruler to create a left indent.
3. Another option is to go to the Paragraph dialogue box, place a positive value in the box labeled Left.
Hence, in this case, the correct answer is that: All the above options are correct.