AP Comp Sci A MidTerm Review

AP Comp Sci A MidTerm Review

9th - 12th Grade

25 Qs

quiz-placeholder

Similar activities

Teknik Pemrograman Mikroprosesor dan mikrokontroler

Teknik Pemrograman Mikroprosesor dan mikrokontroler

10th Grade

20 Qs

Data Types and Operators

Data Types and Operators

9th - 12th Grade

26 Qs

OOP

OOP

12th Grade

20 Qs

C_FINAL

C_FINAL

12th Grade

20 Qs

Programming with Python Section 2.1 and 2.2

Programming with Python Section 2.1 and 2.2

9th - 12th Grade

23 Qs

Arrays

Arrays

9th - 12th Grade

20 Qs

JAVA String-1.1

JAVA String-1.1

10th Grade

20 Qs

Java Primitive Unit 1-A

Java Primitive Unit 1-A

12th Grade

22 Qs

AP Comp Sci A MidTerm Review

AP Comp Sci A MidTerm Review

Assessment

Quiz

Other

9th - 12th Grade

Hard

Created by

Laura Frauenberg

Used 2+ times

FREE Resource

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)

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?