Java - Chapter 7 - 8

Java - Chapter 7 - 8

9th - 12th Grade

90 Qs

quiz-placeholder

Similar activities

4Q Exam Generosity Hope Program2025

4Q Exam Generosity Hope Program2025

12th Grade

85 Qs

Java - Ch. 1 - 6 Review

Java - Ch. 1 - 6 Review

9th - 12th Grade

95 Qs

Python Programming Multiple Choice Quiz

Python Programming Multiple Choice Quiz

9th Grade

90 Qs

Computer final

Computer final

10th Grade

93 Qs

Python Basic Input and Print Quiz

Python Basic Input and Print Quiz

11th Grade

91 Qs

M4 R5.1 Chapter 4 85+ MCQ

M4 R5.1 Chapter 4 85+ MCQ

12th Grade

87 Qs

Code.org Variables and Conditionals

Code.org Variables and Conditionals

9th - 12th Grade

88 Qs

Java - Chapter 7 - 8

Java - Chapter 7 - 8

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Colleen Chattaway

Used 110+ times

FREE Resource

90 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

The following logical expression illustrates what concept?
!( A || B) = !A && !B
DeMorgan's Theorem
Short-circuiting
Mathematical expression
flow control

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What is the difference between the "==" and "=" operators?
"==" tests for equality, "=" is an assignment
"=" tests for equality, "==" is an assignment
"==" is used on strings, while "=" is used on numbers

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Which of the following expressions is the most effective way to compare the contents of two strings in myString1 and myString2 variables?
myString1.equals(myString2)
myString1 == myString2
Both of these work equally well
Neither of these will work

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Using the rules of operator precedence, what is the result of the following equation?
int result = 2 + 4 / 1 * 3 - 1;
13
17
12
Impossible to tell without parentheses

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

If "A" is true, short-circuiting would prevent the "B" expression from being evaluated in this
overall expression: if ( A || B )
True
False

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What is the effect of using the equals operator == to compare two reference values?
You will find out if the two values refer to exactly the same object in memory
You will find out if the two objects contain essentially the same data
You will get a compile-time syntax error because you must always use the equals() method to compare
reference values
You may get a run-time exception if the two objects are not identical 0

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

When using an if() statement, what must go within the parentheses?
A logical expression
A mathematical expression
A mathematical expression
A string
An else clause

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?