CS A U1 Review

CS A U1 Review

12th Grade

8 Qs

quiz-placeholder

Similar activities

U5 Arrays/Lists Homework

U5 Arrays/Lists Homework

10th - 12th Grade

10 Qs

Casting in Java

Casting in Java

9th - 12th Grade

11 Qs

Arrays += Chan

Arrays += Chan

9th - 12th Grade

12 Qs

Primitives Quiz Review

Primitives Quiz Review

10th - 12th Grade

10 Qs

Code.org APCSA Unit

Code.org APCSA Unit

9th - 12th Grade

10 Qs

AP CSA Review Unit 2

AP CSA Review Unit 2

9th - 12th Grade

10 Qs

AP CSA Classes

AP CSA Classes

9th - 12th Grade

10 Qs

AP Computer Science A Year Review

AP Computer Science A Year Review

9th - 12th Grade

10 Qs

CS A U1 Review

CS A U1 Review

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Michael Pogue

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What are the values of the variables x, y, and z after the following is executed:

x = 6, y = 6, z = 6

x = 4, y = 4, z = 4

x = 4, y = 6, z = 6

x = 5, y = 4, z = 4

x = 4, y = 6, z = 5

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

The following code segment is intended to output 0.5. What, if any, is the error in the code?

There is a syntax error: you cannot make an arithmetic expression that contains variables of different data types.

There is a syntax error: you must pass a String as a parameter to System.out.println().

There is a syntax error: you cannot assign an int value to a double variable without casting.

There is a logic error: lossy conversion of int to double.

This code works as intended.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which of the following will result in a value of type double?

I only

II only

I and II only

I, II and III

None

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which of the following would be output by this code segment?

7 , 1

7.0

7.0

1

7.0 , 1

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which of the following would be output by this code segment? int max = 2147483647; max++; System.out.println(max);

2147483648

0

syntax error

-2147483648

none of the above

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Consider the following code segment. What is printed as a result of executing the code segment? int num = 5 / 3; System.out.print(num); System.out.print(" "); System.out.print((double) num);

1.0 , 1

2.0 , 2

1 , 1.0

1.67 , 1

1.67 , 1.0

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following expressions evaluate to -1.0? I. (double) 5 / 3 - 2 II. (double) (5 / 3) - 2 III. (double) (5 / 3 - 2)

I only

I and II only

II and III only

I, II, and III

None evaluate to -1.0

8.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Media Image

What will print out from the following code segment?

5

8

5

7

3