Java Conditionals Unit 3

Java Conditionals Unit 3

9th - 12th Grade

8 Qs

quiz-placeholder

Similar activities

Question Type: Pseudocode

Question Type: Pseudocode

10th - 12th Grade

8 Qs

Y9 Homework 1: Python Revisited 1

Y9 Homework 1: Python Revisited 1

9th Grade

13 Qs

AP Review Quiz #2

AP Review Quiz #2

9th - 12th Grade

10 Qs

Y6 - Programming A - Variables in games

Y6 - Programming A - Variables in games

6th Grade - University

10 Qs

Variables in coding pt. 1

Variables in coding pt. 1

9th - 12th Grade

12 Qs

Thunkable Intro!

Thunkable Intro!

9th - 12th Grade

13 Qs

Recursion Contest

Recursion Contest

10th - 12th Grade

10 Qs

CWA Java 3

CWA Java 3

11th - 12th Grade

8 Qs

Java Conditionals Unit 3

Java Conditionals Unit 3

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Rebekah Lang

Used 19+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What is the value of var1 after the code segment is executed?

1

2

9

10

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What is printed as a result of the call conditionalTest(-1, -1)?

A

B

C

D

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

if !(val < 80 || !(val <= 90))

 

Which of the following code fragments would have the same effect?

if (!(val>80)||val<=90)

if (val > 80 || !(val >= 90))

if (val >= 80 && val <= 90)

if (val > 80 && !(val <=90))

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

The following truth table matches which Boolean condition?

 (A && B) || B

A || (B && A)

 (A || B ) && B

(A || B) || (!A || !B)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

A student programmed a video game to display different end messages depending on the final score. If the score is greater than or equal to 20, the game will print, “AMAZING!”. If the score is between 15-19 inclusive, the game will print out, “Well done.” If the score is between 10-14 inclusive, the game will print, “Do better.” And if the score is less than 10, the game will print, “Ouch.”

Will this code work as expected?

Yes

No

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What is the value of myNumber after the above code executes?

6

7

8

9

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What will be printed when this code segment is executed?

yes no yes

yes yes yes

yes no no

no yes yes

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

!(x || y) && (x || y)

 

The result of evaluating the expression above is best described as:

 always true

always false

true only when x is true and y is true

true only when x and y have the same value