APCSP Pseudocode

APCSP Pseudocode

10th - 12th Grade

8 Qs

quiz-placeholder

Similar activities

MEDIA AND INFORMATION LITERACY

MEDIA AND INFORMATION LITERACY

12th Grade

10 Qs

To Change or Not to Change?

To Change or Not to Change?

12th Grade

10 Qs

networks

networks

11th Grade

10 Qs

Grade 12 1st Quarter Computer Science Summative Assessment

Grade 12 1st Quarter Computer Science Summative Assessment

12th Grade

11 Qs

Databases 2

Databases 2

9th - 11th Grade

13 Qs

Threats to Data

Threats to Data

9th - 12th Grade

11 Qs

OCR GCSE CS - 2.1 ERL sorts and searches

OCR GCSE CS - 2.1 ERL sorts and searches

10th - 11th Grade

9 Qs

Stepwise Refinement

Stepwise Refinement

11th - 12th Grade

13 Qs

APCSP Pseudocode

APCSP Pseudocode

Assessment

Quiz

Computers

10th - 12th Grade

Hard

Created by

Thomas Martinez

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Consider the code segment below.

If the variables onTime and absent both have the value false, what is displayed as a result of running the code segment?

Better late than never.

Is anyone there?

Hello. Is anyone there?

Hello. Better late than never.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

A summer camp offers a morning session and an afternoon session. The list morningList contains the names of all children attending the morning session, and the list afternoonList contains the names of all children attending the afternoon session.

Only children who attend both sessions eat lunch at the camp. The camp director wants to create lunchList, which will contain the names of children attending both sessions.

The following code segment is intended to create lunchList, which is initially empty. It uses the procedure IsFound (list, name), which returns true if name is found in list and returns false otherwise.


Which of the following could replace <MISSING CODE> so that the code segment works as intended?

Media Image
Media Image
Media Image
Media Image

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Consider the following program code.

Which of the following best describes the result of running the program code?

Nothing is displayed; the program results in an infinite loop.

The number 10 is displayed.

The number 6 is displayed.

The number 0 is displayed.

4.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Media Image

A teacher uses the following program to adjust student grades on an assignment by adding

5 points to each student’s original grade. However, if adding 5 points to a student’s original grade causes the grade to exceed 100 points, the student will receive the maximum possible score of 100 points. The students’ original grades are stored in the list gradeList, which is indexed from 1 to n.


Which of the following code segments can replace <MISSING CODE> so that the program works as intended?

Select two answers.

Media Image
Media Image
Media Image
Media Image

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

The following code segment is intended to set max equal to the maximum value among the integer variables x, y and z. The code segment does not work as intended in all cases.

Which of the following initial values for x, y and z can be used to show that the code segment does not work as intended?

x = 1, y = 2, z = 3

x = 1, y = 3, z = 2

x = 2,, y = 3, z = 1

x = 3, y = 2, z = 1

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

The following procedure is intended to return the number of times the value val appears in the list myList. The procedure does not work as intended.


Which of the following changes can be made so that the procedure will work as intended?

Changing line 6 to IF(item = count)

Changing line 6 to IF(myList[item] = val)

Moving the statement in line 5 so that it appears between lines 2 and 3

Moving the statement in line 11 so that it appears between lines 9 and 10

7.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Media Image

Consider the following procedure.

Which of the following code segments can be used to draw the figure?

Media Image
Media Image
Media Image
Media Image

8.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Media Image

In the following statement, val1, val2, and result are Boolean variables.

Which of the following code segments produce the same result as the statement above for all possible values of val1and val2 ?

Media Image
Media Image
Media Image
Media Image