Classroom Starters Python

Classroom Starters Python

9th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

Python Loops Quiz (for loop and while loop)

Python Loops Quiz (for loop and while loop)

10th Grade

10 Qs

Python Intro 1

Python Intro 1

7th - 12th Grade

11 Qs

Unit 3 Review

Unit 3 Review

9th - 12th Grade

11 Qs

Python variables and Data types

Python variables and Data types

10th - 12th Grade

10 Qs

A short quiz

A short quiz

10th Grade

10 Qs

LOOPS

LOOPS

7th - 9th Grade

10 Qs

Year 9 March

Year 9 March

9th Grade

11 Qs

8D.1 Intro to Python Exit

8D.1 Intro to Python Exit

7th Grade - University

6 Qs

Classroom Starters Python

Classroom Starters Python

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

P Resende

Used 7+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a Variable?

Read carefully and choose the best option.

Something that can vary with time but isn't saved in computer memory

A location in computer memory where we can save information and can vary (change) with time?

A way to save information that cannot be called at a later stage of the program?

A location in memory that saves whatever we print to it by using the print statement

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the print command do in Python?

Sends something to the printer?

Sends to the printer whatever we printed on the screen?

Prints whatever we answer in the input without the need of using a print statement?

Prints something to the screen ?

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does input command do in Python?

Puts something on the screen?

Inserts code on a particular line?

Asks the user to answer a question?

Prints something to the screen?

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What type of data is the secondNumber variable?

String

Real/float

Boolean

String

Integer

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which comparison operator means NOT EQUAL TO in python?

= =

>=

<=

!=

>

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which comparison operator means BIGGER OR EQUAL TO in python?

>

<=

!=

<

>=