Crear actividad
Jugar Test
1. 
What is the output of the following code fragment?
A.
10 11 12 13 14 15
B.
9 8 7 6 5 4 3 2 1 0
C.
10 9 8 7 6 5
D.
10 9 8 7 6
2. 
What must the test be so that the following fragment prints out the integers 5 through and including 15?
A.
j<15
B.
j<=16
C.
j<16
D.
j==15