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 RSQP
D QPRS
Share : | ||||||||
A 3214
B 2134
C 4321
D 1234
Share : | ||||||||
A 2, 4
B 1, 2
C 1, 2, 3
D 3, 4, 5
Share : | ||||||||
A Only 1, 2, 4
B Only 1, 2, 3
C Only 1, 2
D Only 4, 5
E All of the above
Share : | ||||||||
A Prints 0 to 8
B Prints 2 to 8
C Compile error at label:.
D Prints 2 to 9
E Prints 1 to 9
Share : | ||||||||
A 16 12 8 4 0
B 16 8 0 -8
C 20 16 12 8 4 0 -4 -8 -12
D 20 16 12 8 4 0
E 20 16 12 84 0 -4 -8
Share : | ||||||||
A A jump statement such as a break is required after each case block excluding the last block if it is a default statement.
B It is not possible to extend the if statement to handle multiple conditions using the else-if arrangement.
C C# always supports an implicit fall through from one case label to another.
D The if statement selects a statement for execution based on the value of a Boolean expression.
E The switch statement can include any number of case instances with two case statements having the same value.
Share : | ||||||||
A 0
B 2
C blue
D 1
E red
Share : | ||||||||
A int i = 0;
while (i <= 11)
{
Console.WriteLine(i);
i += 1;
} B C D E Share : |
