Computer Applications
Name the expression that is used to initialize a loop variable.
- Initialization expression
- Step Value
- Control Variable
Related Questions
Naina has written a program in which she has entered one number. She wants to check whether the entered number is divisible by 2 or not. Suggest her the appropriate condition for the same.
The .......... is a logical situation where either of the two actions are to be performed depending on certain condition.
The unusual execution of more than one case at a time is termed as
How many times the following body of loop will execute?
for(int a = 1; a <= 10; a++) { System.out.println(a); }