Java - Chapter 7 - 8

Java - Chapter 7 - 8

9th - 12th Grade

90 Qs

quiz-placeholder

Similar activities

python quiz

python quiz

7th - 11th Grade

92 Qs

AP Computer Science Principles (All Terms)

AP Computer Science Principles (All Terms)

10th Grade

90 Qs

Python Final Test Review

Python Final Test Review

9th - 12th Grade

92 Qs

Computer final

Computer final

10th Grade

93 Qs

Mega Quiz

Mega Quiz

11th Grade - Professional Development

85 Qs

N5 Computing SDD/DDD/CS

N5 Computing SDD/DDD/CS

9th - 10th Grade

89 Qs

ÔN TẬP CUỐI KỲ 2 - TIN 10

ÔN TẬP CUỐI KỲ 2 - TIN 10

10th Grade

91 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?