Python

Python

University

10 Qs

quiz-placeholder

Similar activities

Quiz 2

Quiz 2

University

15 Qs

X-quiz #3

X-quiz #3

University

10 Qs

Exception Handling

Exception Handling

University

13 Qs

Pertemuan 3

Pertemuan 3

University

10 Qs

Pre tes Prisma Sisfor Last Eps

Pre tes Prisma Sisfor Last Eps

University

10 Qs

Programming - Screening Test

Programming - Screening Test

3rd Grade - Professional Development

15 Qs

Quiz 10

Quiz 10

University

10 Qs

Python for loop

Python for loop

University

8 Qs

Python

Python

Assessment

Quiz

Computers

University

Medium

Created by

PUSHPALATHA C2114

Used 4+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt


1.What is the extentions for the python file?

python

py

pi

pi3

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

2.What is the output of the following program : What is the output of the following program :

def myfunc(a):

a = a + 2

a = a * 2

return a

print myfunc(2)

  • 8

  • 16

  • Indentation Error

  • Runtime Error

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

  1. 3.What is the output of the following program : 

print \'{0:.2}\'.format(1.0 / 3)

  • 0.333333

  • 0.33

  • 0.333333:-2

  • Error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

4.What is the output of the following program : 

i = 0

while i < 3:

print i

i += 1

else:

print 0

  • 0 1 2 3 0

  • 0 1 2 0

  • 0 1 2

  • Error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

5.What will be displayed by the following code?

def f(value, values):   

  v = 1   

  values[0] = 44

t = 3

v = [1, 2, 3]

f(t, v)

print(t, v[0])


  • 1 1

  • 1 44

  • 3 1

  • 3 44

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

6.What is the output of the following program?

x = 123

for i in x:

print(i, end=\" \")


  • 1 2 3

  • 1 1 1

  • Error

  • No Output

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

7.Given a string s = “Welcome”, which of the following code is incorrect?

  • print s[0]

  • print s.lower()

  • s[1] = ‘r’

  • print s.strip()

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?