Python Variables and Input

Python Variables and Input

9th - 12th Grade

10 Qs

quiz-placeholder

Similar activities

Do Now Lesson 2

Do Now Lesson 2

9th - 12th Grade

15 Qs

python String and comment

python String and comment

3rd Grade - University

13 Qs

Python

Python

7th - 9th Grade

12 Qs

Y9 Homework 1: Python Revisited 1

Y9 Homework 1: Python Revisited 1

9th Grade

13 Qs

Python Unit 1 Lesson 3

Python Unit 1 Lesson 3

9th - 12th Grade

14 Qs

To'lqinjon 9 sinf

To'lqinjon 9 sinf

9th Grade

5 Qs

第二章大名小號

第二章大名小號

9th Grade

10 Qs

year 8 lesson 2 quiz - python

year 8 lesson 2 quiz - python

8th - 10th Grade

14 Qs

Python Variables and Input

Python Variables and Input

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Gitika Kaur

Used 4+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a variable in Python?

A variable in Python is a data type.

A variable in Python is a function.

A variable in Python is a loop control statement.

A variable in Python is a name that refers to a value.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare a variable in Python?

You assign a value to a variable name using the '=' operator.

You use the 'const' keyword to declare a variable.

You use the 'let' keyword to declare a variable.

You use the 'var' keyword to declare a variable.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the 'print' function in Python?

To read input from the user.

To perform mathematical calculations.

To display output on the console or terminal.

To create a new variable.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you print multiple variables in a single line in Python?

print(var1 + var2 + var3)

print(var1 + ' ' + var2 + ' ' + var3)

print(var1, '+', var2, '+', var3)

print(var1, var2, var3)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? x = 5 y = 3 print(x + y)

8

7

2

15

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? x = 'Hello' y = 'World' print(x + y)

HelloWorld!

HelloWorld

Hello, World

Hello World

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? x = 10 y = '5' print(x + y)

15

TypeError

105

TypeError: unsupported operand type(s) for +: 'int' and 'str'

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?