3_28 Warm Up

3_28 Warm Up

10th Grade

6 Qs

quiz-placeholder

Similar activities

AP CSP Review on Lists, Loops, and Groups

AP CSP Review on Lists, Loops, and Groups

9th - 12th Grade

9 Qs

Review

Review

9th - 12th Grade

10 Qs

Computer Quiz

Computer Quiz

5th Grade - Professional Development

8 Qs

HARDWARE QUIZ

HARDWARE QUIZ

9th - 12th Grade

10 Qs

Python Code Quiz

Python Code Quiz

8th - 12th Grade

11 Qs

[AP CSP] Unit 4 Review: Functions and Lists

[AP CSP] Unit 4 Review: Functions and Lists

9th - 12th Grade

10 Qs

Computer  Fundamentals

Computer Fundamentals

10th Grade - Professional Development

10 Qs

Coding - Advanced Level

Coding - Advanced Level

8th Grade - Professional Development

11 Qs

3_28 Warm Up

3_28 Warm Up

Assessment

Quiz

Computers

10th Grade

Medium

Created by

Chris Barnabei

Used 3+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What text will be output by the program?

Less than 10

Less than 20

Less than 30

30 or more

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What text will be output by the program?

Output A

Output B

Output C

Output D

Output E

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A movie theater charges different ticket prices based on a customer's age. The prices are shown in the table below.

Age Ticket Price

12 and younger $5

13 to 64 $8

65 and older $6


The customer's age is stored in the variable age and the price is stored in the variable price. Which piece of code will correctly decide the price for each ticket.

Media Image
Media Image
Media Image
Media Image

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A museum charges different prices based on the day of the week and age of the visitor. The pricing rules are shown below.

On Tuesday and Thursday children 10 and under get in free ($ 0). For all other days and ages the cost is ten dollars ($ 10).


The visitor's age is stored in the variable age, the day of the week is stored in a variable day, and the price in dollars is stored in the variable price. Which piece of code will correctly decide the price for each ticket.

Media Image
Media Image
Media Image
Media Image

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

wordList is a list of words that currently contains the values ["tree", "rock", "air"]

Which of the following lines will result in the list containing the values ["air", "rock", "air"]

wordList[0] = wordList[2]

wordList[2] = wordList[0]

insertItem(wordList, 0, "air")

removeItem(wordList,0)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

.

The following algorithm is followed by a person every morning when they get up from bed to go to school

1. Wake up

2. Brush teeth

3. Put on shirt

4. Put on pants

5. Put on socks

6. Put on shoes

7. Tie shoes

Which concept does this algorithm BEST demonstrate?

Sequencing

Selection

Iteration

Execution