programming languages Online Quiz - 129
Description: programming languages Online Quiz - 129 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Attempted
0/20
Correct 0
Score 0
‹
›
Each pass through a loop is called a/an
Which looping process checks the test condition at the end of the loop?
A continue statement causes execution to skip to
The statement i++; is equivalent to
Which looping process is best used when the number of iterations is known?
What's wrong? while( (i < 10) && (i > 24))
What's wrong? (x = 4 && y = 5) ? (a = 5) ; (b = 6);
Which looping process checks the test condition at the end of the loop?
A continue statement causes execution to skip to
Read the following program: public class test { public static void main(String [] args) { int x = 3; int y = 1; if (x = y) System.out.println("Not equal"); else System.out.println("Equal"); } } What is the result?