Python Quiz - 20

Python Quiz - 20

12th Grade - University

8 Qs

quiz-placeholder

Similar activities

Ice Breaker

Ice Breaker

University

10 Qs

Dart Final

Dart Final

University

9 Qs

CS201: Chapter 1

CS201: Chapter 1

University

12 Qs

PYTHON BASICS

PYTHON BASICS

University

7 Qs

Week 9

Week 9

University

10 Qs

OPAMP EXERCISE

OPAMP EXERCISE

University

13 Qs

Kuiz Microsoft Excel

Kuiz Microsoft Excel

6th - 12th Grade

10 Qs

QUIZ KELOMPOK 6 TEORI PRDUKSI & ESTIMASI

QUIZ KELOMPOK 6 TEORI PRDUKSI & ESTIMASI

University

10 Qs

Python Quiz - 20

Python Quiz - 20

Assessment

Quiz

Architecture, Other

12th Grade - University

Hard

Created by

shanmugaraja .

Used 2+ times

FREE Resource

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