Phyton Basic Quiz

Phyton Basic Quiz

11th Grade

10 Qs

quiz-placeholder

Similar activities

PYTHON PROGRAMMING FUNDAMENTALS

PYTHON PROGRAMMING FUNDAMENTALS

11th Grade

15 Qs

Programming - Output

Programming - Output

KG - 12th Grade

12 Qs

Python Fundamentals and Programming

Python Fundamentals and Programming

11th - 12th Grade

13 Qs

Python Boolean

Python Boolean

11th - 12th Grade

11 Qs

Python Input/Output

Python Input/Output

9th - 12th Grade

10 Qs

Python Strings

Python Strings

8th - 12th Grade

14 Qs

Python Basics

Python Basics

6th - 12th Grade

9 Qs

Python-Basic

Python-Basic

3rd Grade - University

15 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?