Python  Fundamentals- 02

Python Fundamentals- 02

5th Grade - University

32 Qs

quiz-placeholder

Similar activities

CATECHISM QUIZ COMPETITION

CATECHISM QUIZ COMPETITION

12th Grade

30 Qs

BUS1 PRELIM EXAM CHAVEZ

BUS1 PRELIM EXAM CHAVEZ

University

30 Qs

TLE 9 SUMTEST DESSERTS

TLE 9 SUMTEST DESSERTS

9th Grade

30 Qs

Trial Ekonomi SBMPTN

Trial Ekonomi SBMPTN

10th - 12th Grade

30 Qs

Willenhall's end of year quiz!

Willenhall's end of year quiz!

KG - 6th Grade

27 Qs

Anthro 1300 Exam 2

Anthro 1300 Exam 2

University

27 Qs

Văn 10

Văn 10

10th Grade

30 Qs

PTS_B.Inggris_XI_Gasal_21-22

PTS_B.Inggris_XI_Gasal_21-22

11th Grade

30 Qs

Python  Fundamentals- 02

Python Fundamentals- 02

Assessment

Quiz

Other

5th Grade - University

Hard

Created by

Sreelakshmi Sridhar

Used 22+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

32 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

b = [11,13,15,17,19,21]

What is output for − print(b[::2])

[19,21]

[11,15]

[11,15,19]

[13,17,21]

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

When the given code is executed how many times ' 'you are learning python ' ' will be printed.

a = 0

while a<10:

print(''you are learning python'')

pass

9

10

11

Infinite number of times

3.

MULTIPLE CHOICE QUESTION

1 min • 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

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following code?

sampleList = ["Jon", "Kelly", "Jessa"]

sampleList.append("Scott")

print(sampleList)

[‘Jon’, ‘Kelly’, ‘Scott’, ‘Jessa’]

[‘Jon’, ‘Kelly’, ‘Jessa’, ‘Scott’]

[‘Jon’, ‘Scott’, ‘Kelly’, ‘Jessa’]

The program executed with errors

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following


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

print(x)

182.0

37

117

The Program executed with errors

6.

MULTIPLE CHOICE QUESTION

1 min • 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

30 20 10

Error: invalid syntax

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following code?


valueOne = 5 ** 2

valueTwo = 5 ** 3


print(valueOne)

print(valueTwo)

10

15

25

125

Error: invalid syntax

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?