Variable Declaration and Strings Quiz

Variable Declaration and Strings Quiz

11th Grade

10 Qs

quiz-placeholder

Similar activities

Intro to Python Programming Quiz 9B

Intro to Python Programming Quiz 9B

10th Grade - University

14 Qs

Intro to Python Programming Quiz 9C

Intro to Python Programming Quiz 9C

10th Grade - University

12 Qs

Introductory Quiz

Introductory Quiz

9th - 12th Grade

10 Qs

python

python

3rd Grade - University

12 Qs

Quiz Time

Quiz Time

11th - 12th Grade

15 Qs

python quiz

python quiz

1st - 12th Grade

10 Qs

Operators in Python

Operators in Python

11th Grade

10 Qs

Python

Python

9th - 12th Grade

10 Qs

Variable Declaration and Strings Quiz

Variable Declaration and Strings Quiz

Assessment

Quiz

Other

11th Grade

Hard

Created by

Ambrose Koroma

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to declare a variable in Python?

Use the keyword 'var' to declare a variable in Python.

Use the keyword 'let' to declare a variable in Python.

Use the assignment operator (=) to declare a variable in Python.

Use the keyword 'const' to declare a variable in Python.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a valid variable name in Python?

my-variable

my_variable

my variable

myVariable

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the data type of the variable 'x' in the statement: x = 5.7?

float

boolean

string

integer

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

50

105

15

3

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

HelloWorld

Hello + World

Hello, World

Hello World

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to concatenate two strings in Python?

+

&

-

*

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

15

53

5555

555

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?