AP Computer Science A Quiz

AP Computer Science A Quiz

Assessment

Passage

Computers

12th Grade

Hard

Created by

Xin Deng

Used 2+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is printed as a result of executing the following code segment? System.out.println("W"); System.out.println("X"); System.out.print("Y"); System.out.print("Z");

W X YZ

W XYZ

WX YZ

WXYZ

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is printed as a result of executing the following code segment? System.out.print("cat "); System.out.println("dog "); System.out.println("horse "); System.out.print("cow ");

cat dog horse cow

cat dog horse cow

cat dog horse cow

cat dog horse cow

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is printed as a result of executing the following code segment? System.out.print("Hello!"); System.out.println("How "); System.out.print("are "); System.out.print("you?");

Hello! How are you?

Hello!How are you?

Hello!How are you?

Hello!Howareyou?

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following changes can be made so that the following code segment produces the intended output? System.out.println(hello); // Line 1 System.out.print(world); // Line 2 hello world

Changing println in line 1 to print

Inserting System.out.println(); between lines 1 and 2

Enclosing hello in line 1 and world in line 2 in quotation marks

Inserting System.out.print(); between lines 1 and 2

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which change can be made so that the following code segment produces the intended output? System.out.print("Ready"); // Line 1 System.out.print("Set"); // Line 2 System.out.print("Go!"); // Line 3 Ready Set Go!

Interchanging lines 1 and 3

Changing print to println in lines 1 and 2

Changing print to println in line 3

No change is needed; the code segment works correctly as is.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following code segments works as intended to print the word Hello? I. System.out.print("Hello"); II. System.out.print(Hello); III. System.out.print(He); System.out.print(llo);

I and II

II only

I and III

I only

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement correctly declares a variable that can store a temperature rounded to the nearest tenth of a degree?

patientTemp = 0;

int patientTemp;

double patientTemp;

boolean patientTemp;

Create a free account and access millions of resources

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?

Discover more resources for Computers