Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Give this quiz to my class
Q 1/5
Score 0
How many choices are possible when using a single if-else statement?
30
1
3
4
2
Q 2/5
Score 0
int sum = 14;
if ( sum < 20 )
System.out.print("Under ");
else
System.out.print("Over ");
System.out.println("the limit.");
What doesthis code fragment write to the monitor
30
over
under
over the limit
nothing
5 questions
Q.
How many choices are possible when using a single if-else statement?
1
30 sec
Q.
int sum = 14;
if ( sum < 20 )
System.out.print("Under ");
else
System.out.print("Over ");
System.out.println("the limit.");
What doesthis code fragment write to the monitor
2
30 sec
Q.
The 'if statement' in Python is _____.
3
30 sec
Q.
Which two statements are used to implement iteration?
4
30 sec
Q.
. Which of the following symbols is used in Python to mean "Equal to"?