Search Header Logo

AP Comp Sci A MidTerm Review

Authored by Laura Frauenberg

Other

9th - 12th Grade

Used 2+ times

AP Comp Sci A MidTerm Review
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following variable declarations and initializations.

int a = 2;

int b = 6;

int c = 3;

Which of the following expressions evaluates to false ?

a < b == c < b

a > b == b < c

a < b != b < c

a < b != c < b

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following code segment.

boolean a = true;

boolean b = false;

System.out.print((a == !b) != false);

What is printed as a result of executing this code segment?

false

true

0

1

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following expression.

(3 + 4 == 5) != (3 + 4 >= 5)

What value, if any, does the expression evaluate to?

true

false

5

7

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following code segment.

int m = 8;

int n = 3;

if (m + n > 10)

{

System.out.print(m + n);

}

if (m - n > 0)

{

System.out.print(m - n);

}

What, if anything, is printed as a result of executing the code segment?

nothing is printed

115

11

5

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following code segment.

boolean a = true;

boolean b = true;

System.out.print((b || (!a || b)) + " ");

System.out.print(((!b || !a) && a) + " ");

System.out.println(!(a && b) && b);

What output is produced when this code segment is executed?

true true true

true false true

true false false

false true false

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the following expression, j, k, and m are properly declared and initialized int variables.

!((j == k) && (k > m))

Which of the following is equivalent to the expression above?

(j != k) || (k < m)

(j != k) || (k <= m)

(j == k) || (k < m)

(j != k) && (k <= m)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the following expression, sunny and windy are properly declared and initialized boolean variables.

!sunny && !windy

Which of the following is equivalent to the expression above?

sunny || windy

!sunny || !windy

!(sunny || windy)

!(sunny && windy)

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?