Phyton Basic Quiz

Phyton Basic Quiz

11th Grade

10 Qs

quiz-placeholder

Similar activities

Python Quiz

Python Quiz

3rd Grade - Professional Development

11 Qs

Exploring Python: Input and Output Essentials

Exploring Python: Input and Output Essentials

9th Grade - University

10 Qs

Python End of Topic Quiz

Python End of Topic Quiz

8th Grade - University

15 Qs

Python Programming

Python Programming

5th Grade - University

15 Qs

Global and local variables

Global and local variables

10th - 12th Grade

10 Qs

Python Domain

Python Domain

10th - 11th Grade

13 Qs

Programming Quiz 1

Programming Quiz 1

11th Grade

11 Qs

Basics of Python

Basics of Python

9th - 12th Grade

12 Qs

   Phyton Basic Quiz

Phyton Basic Quiz

Assessment

Quiz

Computers

11th Grade

Easy

Created by

Nitika Chanana

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

var1 = 1

var2 = 2

var3 = "3"

print(var1 + var2 + var3)

6

33

123

Error. Mixing operators between numbers and strings are not supported

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

p, q, r = 10, 20 ,30

print(p, q, r)

10

20

10 20 30

Error: invalid syntax

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

valueOne = 5 ** 2

valueTwo = 5 ** 3

print(valueOne)

print(valueTwo)

10

15

25

125

55

555

Error: invalid syntax

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

for i in range(10, 15, 1):

print( i, end=', ')

10 11 12 13 14 15

10, 11, 12, 13, 14,

10, 11, 12, 13, 14,15,

10 11 12 13 14

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

var = "James" * 2 * 3

print(var)

JamesJamesJamesJamesJamesJames

JamesJamesJamesJamesJames

JamesJames

Error: invalid syntax

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following

x = 36 / 4 * (3 + 2) * 4 + 2

print(x)

182

37

117

The Program executed with errors

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

def calculate (num1, num2=4):

res = num1 * num2

print(res)

calculate(5, 6)

20

30

24

The program executed with errors

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?