S3 SDD Unit 2 - 4. Implementation

S3 SDD Unit 2 - 4. Implementation

9th Grade

8 Qs

quiz-placeholder

Similar activities

python String and comment

python String and comment

3rd Grade - University

13 Qs

AP CSP Review

AP CSP Review

9th - 12th Grade

10 Qs

Word Processing Lesson 2 Review

Word Processing Lesson 2 Review

5th - 9th Grade

10 Qs

AI-9A-PA1-Practical

AI-9A-PA1-Practical

9th Grade

10 Qs

Python Quiz Starter

Python Quiz Starter

9th Grade

11 Qs

Edublocks D01

Edublocks D01

6th - 9th Grade

8 Qs

Exit Ticket 1/17

Exit Ticket 1/17

9th - 12th Grade

12 Qs

Parts of the Word Window 2021

Parts of the Word Window 2021

9th Grade

12 Qs

S3 SDD Unit 2 - 4. Implementation

S3 SDD Unit 2 - 4. Implementation

Assessment

Quiz

Computers

9th Grade

Medium

Created by

Violet Smyth

Used 1+ times

FREE Resource

8 questions

Show all answers

1.

MATCH QUESTION

30 sec • 1 pt

Match the pseudocode steps to their corresponding Python code for a program that calculates a pupil's grade:

Print(name, "has a grade of", grade)

Set pupil’s grade (next slide)

name = input("Enter pupil name")

Ask user to enter a pupil’s mark

Set pupil’s grade (next slide)

Display pupil’s name and grade

mark = input("Enter pupil mark")

Ask user to enter pupil’s name

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Fill in the blank: The Python code to ask the user to enter the pupil's name is ___________.

name = input("Enter pupil name")

input = name("Enter pupil name")

pupil = ask.input("Enter name")

name = get.input("Enter pupil name")

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the name of the construct that places a value into a variable?

Assignment

Selection

Fixed Loop

Conditional Loop

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the name of the construct decides which lines of code to run, depending on a condition(s)?

Assignment

Selection

Fixed Loop

Conditional Loop

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the name of the construct that repeats code a set number of times?

Assignment

Selection

Fixed Loop

Conditional Loop

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the name of the construct that repeats code depending on a condition(s)?

Assignment

Selection

Fixed Loop

Conditional Loop

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Fill in the blank: The Python code to display the pupil's name and grade is ___________.

Print(name, "has a grade of", grade)

print(name + " has a grade of " + grade)

echo(name, "has a grade of", grade)

display(name, grade)

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following Python statements is used to ask the user to enter a pupil's mark?

mark = input("Enter pupil mark")

mark = int(input("Enter pupil mark")

mark = int(input("Enter pupil mark"))

mark = input("Enter pupil mark"))