Search Header Logo

Java - Chapter 7 - 8

Authored by Colleen Chattaway

Computers

9th - 12th Grade

Used 110+ times

Java - Chapter 7 - 8
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

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

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?