Python Programming Quiz

Python Programming Quiz

University

25 Qs

quiz-placeholder

Similar activities

loops and iterables in python

loops and iterables in python

University

20 Qs

Programming in C(1)

Programming in C(1)

University

20 Qs

Java Quiz 1

Java Quiz 1

University

20 Qs

C Programming Quiz

C Programming Quiz

12th Grade - University

20 Qs

Compiler Design

Compiler Design

University

20 Qs

Python Control Structures

Python Control Structures

University

20 Qs

Python Programming II CSE A

Python Programming II CSE A

12th Grade - University

20 Qs

OOPs in Python

OOPs in Python

University

20 Qs

Python Programming Quiz

Python Programming Quiz

Assessment

Quiz

Computers

University

Hard

Created by

RAJAT -

Used 3+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the __init__ method in Python?

To initialize a class object

To terminate a program

To define a static method

To create a generator

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? print(type(3 + 5.0))

int

float

str

boolean

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is true about Python's None?

It is the same as False.

It is a placeholder for missing or undefined values.

It is equivalent to an empty string.

It is a data type used for integers.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? my_list = [1, 2, 3, 4] my_list[1:3] = [10, 20] print(my_list)

[1, 10, 20, 4]

[1, 2, 3, 4]

[10, 20, 3, 4]

[1, 10, 20, 3, 4]

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Study the following expression: str = [(1, 1), (2, 2), (3, 3)] What type of data is in this expression?

Array lists

str lists

List of tuples

String type

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code? >>> str1 = 'hello' >>> str1[-1:]

hello

h

o

olleh

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is true about Python sets?

Sets are ordered and mutable.

Sets can contain duplicate elements.

Sets are unordered and mutable.

Sets are indexed and immutable.

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?