AP Comp Sci A MidTerm Review

AP Comp Sci A MidTerm Review

9th - 12th Grade

25 Qs

quiz-placeholder

Similar activities

Quis Informatika

Quis Informatika

10th Grade

20 Qs

UTS PD X MM - SMKI AL AMAL SURABAYA

UTS PD X MM - SMKI AL AMAL SURABAYA

10th Grade

20 Qs

python telusko

python telusko

11th Grade

21 Qs

JavaScript_G9_Quiz

JavaScript_G9_Quiz

9th Grade

20 Qs

Conditional Logic

Conditional Logic

9th Grade - University

30 Qs

Quiz Linguagem de Programação C

Quiz Linguagem de Programação C

1st - 11th Grade

30 Qs

สอบปลายภาค วิชาพื้นฐานการเขียนโปรแกรมคอมพิวเตอร์ (C++)

สอบปลายภาค วิชาพื้นฐานการเขียนโปรแกรมคอมพิวเตอร์ (C++)

12th Grade - University

20 Qs

Exploring the Basics of C Programming

Exploring the Basics of C Programming

11th Grade - University

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