Python Quiz - 20

Python Quiz - 20

12th Grade - University

8 Qs

quiz-placeholder

Similar activities

Resume Quiz

Resume Quiz

12th Grade

12 Qs

UK Knowledge Test

UK Knowledge Test

University

10 Qs

Test Development

Test Development

University

10 Qs

lego

lego

University

10 Qs

JHAP-TAAL HVM 12

JHAP-TAAL HVM 12

12th Grade

10 Qs

Meet Ms Wahlen

Meet Ms Wahlen

9th - 12th Grade

10 Qs

Cell Phone Vocabulary

Cell Phone Vocabulary

9th - 12th Grade

12 Qs

Business Ethics

Business Ethics

University

10 Qs

Python Quiz - 20

Python Quiz - 20

Assessment

Quiz

Architecture, Other

12th Grade - University

Practice Problem

Hard

Created by

shanmugaraja .

Used 2+ times

FREE Resource

AI

Enhance your content in a minute

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

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Guess the correct output of the following string operations


str1 = 'Welcome'

print(str1*2)

WelcomeWelcome

str1str1

Error

None of the above

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Write the following output of the following code :

list('Welcome')

['W','e','l','c','o','m','e']

('W','e','l','c','o','m','e')

['welcome']

None of the above

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Write the following output of the following code :

>>>L = ['w','e','l','c','o','m','e']

>>>print(len(L))

8

9

7

None

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Write the following output of the following code :

>>> L=[“Amit”,”Anita”,”Zee”,”Longest Word”]

>>> print(max(L))

Longest Word

Zee

Error

None

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Write the output of the following code :

L=list(“www.learninghpython.com”)

print(L[20 : -1])

['c','o']

['c','o','m']

(com)

Error

None of the above

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Write the output of the following code :

>>>L=[“Amit”,”Sumit”,”Naina”]

>>>print(L[-1][-1])

['Sumit']

[a]

[Naina]

None of the above

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Write the output of the following code :

L=[0.5 * x for x in range(4)]

print(L)

[0.0, 0.5, 1.0, 1.5]

(0,.5, 1, 1.5)

[0.0, 0.5, 1.0, 1.5, 2.0]

None

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Write the output of the following code :

L=[‘a’ * x for x in range(4)]

print(L)

[‘ ‘ , ‘a’ , ‘aa’ , ‘aaa’]

[‘a’, ‘aa’, ‘aaa’]

Error

None of the above