python 3

python 3

1st Grade

20 Qs

quiz-placeholder

Similar activities

Mūzikas žanri

Mūzikas žanri

KG - 10th Grade

20 Qs

Resource Economics

Resource Economics

1st Grade - University

20 Qs

Illustrator Quiz 1

Illustrator Quiz 1

KG - University

18 Qs

Seni Musik Kelas 7

Seni Musik Kelas 7

1st - 3rd Grade

20 Qs

Music Theory

Music Theory

KG - 7th Grade

20 Qs

Pengolahan makanan awetan nabati

Pengolahan makanan awetan nabati

1st Grade

21 Qs

Violin A & D String

Violin A & D String

1st - 5th Grade

17 Qs

Figures de Nota 1r i 2n

Figures de Nota 1r i 2n

1st Grade

18 Qs

python 3

python 3

Assessment

Quiz

Arts

1st Grade

Hard

Created by

Nagendrapatel Puppala

Used 1+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

1.what will be the output of the following snippet?

a=[[],"abc",[0],1,0]

print(list(fliter(bool,a)))

['abc',[0],1]

[1]

["abc"]

None of the above

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

2.what will be the output of the following code snippet?

a=[1,2,3]

a=tuple(a)

a[0]=2

print(a)

[2,2,3]

(2,2,3)

(1,2,3)

Error

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

what will the output of the following code snippet?

print(2**3+(5+6)**(1+1))

129

8

121

None of the above

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

str1 = '{2}, {1} and {0}'.format('a', 'b', 'c')

str2 = '{0}{1}{0}'.format('abra', 'cad')

print(str1, str2)

c, b and a abracad0 

a, b and c abracadabra

a, b and c abracadcad 

c, b and a abracadabra 

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following program?

a = 2

b = '3.77'

c = -8

str1 = '{0:.4f} {0:3d} {2} {1}'.format(a, b, c)

print(str1)

2.0000 2 -8 3.77 

2 3.77 -8 3.77 

2.000 3 -8 3.77 

2.000 2 8 3.77 

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following program?

import string

 

Line1 = "And Then There Were None"

Line2 = "Famous In Love"

Line3 = "Famous Were The Kol And Klaus"

Line4 = Line1 + Line2 + Line3

print("And" in Line4)

True 2 

True 

False 

False 2 

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following program?

List = [True, 50, 10]

List.insert(2, 5)   

print(List, "Sum is: ", sum(List))

[True, 50, 10, 5] Sum is: 66 

[True, 50, 5, 10] Sum is: 65 

TypeError: unsupported operand type(s) for +: ‘int’ and ‘str’ 

[True, 50, 5, 10] Sum is: 66 

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?