A
B
C
D
Share : | ||||||||
Directions to Solve In questions below, each passage consist of six sentences. The first and sixth sentence are given in the begining. The middle four sentences in each have been removed and jumbled up. These are labelled as P, Q, R and S. Find out the proper order for the four sentences. A SPQR
B RQPS
C QPRS
D RSQP
Share : | ||||||||
A 4321
B 1234
C 2134
D 3214
Share : | ||||||||
A 1, 2, 3
B 1, 2
C 2, 4
D 3, 4, 5
Share : | ||||||||
A Only 4, 5
B Only 1, 2, 4
C Only 1, 2
D All of the above
E Only 1, 2, 3
Share : | ||||||||
A Prints 0 to 8
B Prints 1 to 9
C Prints 2 to 9
D Prints 2 to 8
E Compile error at label:.
Share : | ||||||||
A 20 16 12 8 4 0
B 20 16 12 8 4 0 -4 -8 -12
C 20 16 12 84 0 -4 -8
D 16 12 8 4 0
E 16 8 0 -8
Share : | ||||||||
A C# always supports an implicit fall through from one case label to another.
B It is not possible to extend the if statement to handle multiple conditions using the else-if arrangement.
C The if statement selects a statement for execution based on the value of a Boolean expression.
D A jump statement such as a break is required after each case block excluding the last block if it is a default statement.
E The switch statement can include any number of case instances with two case statements having the same value.
Share : | ||||||||
A 1
B 0
C blue
D 2
E red
Share : | ||||||||
A B C D E int i = 0;
while (i <= 11)
{
Console.WriteLine(i);
i += 1;
} Share : |
