Computer Applications
The unusual execution of more than one case at a time is termed as
- Infinite loop
- Time delay
- Fall through
Java Conditional Stmts
14 Likes
Answer
Fall through
Answered By
3 Likes
Related Questions
The .......... is a logical situation where either of the two actions are to be performed depending on certain condition.
Name the expression that is used to initialize a loop variable.
How many times the following body of loop will execute?
for(int a = 1; a <= 10; a++) { System.out.println(a); }
How many times the following message will be printed?
do { System.out.println("Hello"); } ch++; while(ch <= 1);