UNIT2_PYTHON

UNIT2_PYTHON

University

10 Qs

quiz-placeholder

Similar activities

DEMAND, SUPPLY AND ELASTICITY

DEMAND, SUPPLY AND ELASTICITY

University - Professional Development

9 Qs

Exoictic cars.

Exoictic cars.

5th Grade - Professional Development

10 Qs

Capital Budgeting and Capital Ratioining Quiz

Capital Budgeting and Capital Ratioining Quiz

University

10 Qs

BDS Biochem Quiz - Aug 2

BDS Biochem Quiz - Aug 2

University

10 Qs

Ohio Valley College of Technology

Ohio Valley College of Technology

KG - University

10 Qs

Dental Amalgam Quiz

Dental Amalgam Quiz

University

10 Qs

Earnings Per Share

Earnings Per Share

University

10 Qs

Disney Personalities

Disney Personalities

5th Grade - University

15 Qs

UNIT2_PYTHON

UNIT2_PYTHON

Assessment

Quiz

Other

University

Practice Problem

Hard

Created by

Asst.Prof.,CSE Chennai

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...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To read two characters from a file object infile, we use ____________

infile.read(2)

infile.read()

infile.readline()

infile.readlines()

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following functions can help us to find the version of python that we are currently working on?

sys.version(1)

sys.version(0)

sys.version()

sys.version

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code?

l=[1, 0, 2, 0, 'hello', '', []]

list(filter(bool, l))

[1, 0, 2, ‘hello’, ”, []]

Error

[1, 2, ‘hello’]

[1, 0, 2, 0, ‘hello’, ”, []]

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following python program can work with ____ parameters.

def f(x):

    def f1(*args, **kwargs):

           print("Sanfoundry")

           return x(*args, **kwargs)

    return f1

any number of

0

1

2

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code snippet?

for i in [1, 2, 3, 4][::-1]:

    print (i)

4 3 2 1

Error

1 2 3 4

None of the mentioned above

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

________ matches the start of the string.________ matches the end of the string.

‘^’, ‘$’

‘$’, ‘^’

‘$’, ‘?’

‘?’, ‘^’

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the use of seek() method in files?

sets the file’s current position at the offset

sets the file’s previous position at the offset

sets the file’s current position at the offset

none of the mentioned

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?