UNIT1_PYTHON

UNIT1_PYTHON

University

10 Qs

quiz-placeholder

Similar activities

Python Numpy and Pandas Quiz

Python Numpy and Pandas Quiz

University

15 Qs

python set 1

python set 1

University

10 Qs

Brainy Bites: Python

Brainy Bites: Python

University

12 Qs

R programming

R programming

University

15 Qs

Python Quiz

Python Quiz

University

15 Qs

Python set 3

Python set 3

University

10 Qs

Lý thuyết về Python

Lý thuyết về Python

3rd Grade - University

10 Qs

Tech quiz Round 1

Tech quiz Round 1

University

15 Qs

UNIT1_PYTHON

UNIT1_PYTHON

Assessment

Quiz

Other

University

Medium

Created by

Asst.Prof.,CSE Chennai

Used 3+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Who developed Python Programming Language?

Wick van Rossum

Rasmus Lerdorf

Guido van Rossum

Niene Stom

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the value of the following Python expression?

4+3%5

7

2

4

1

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which one of the following is not a keyword in Python language?

pass

eval

assert

nonlocal

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What arithmetic operators cannot be used with strings in Python?

*

-

+

All of the mentioned above

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code?

list1 = [1, 3]

list2 = list1

list1[0] = 4

print(list2)

[1, 4]

[1, 3, 4]

[4, 3]

[1, 3]

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python program?

i = 0

while i < 5:

    print(i)

    i += 1

    if i == 3:

        break

else:

    print(0)

error

0 1 2 0

0 1 2

None of the mentioned above

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a Python tuple?

{1, 2, 3}

{}

[1, 2, 3]

(1, 2, 3)

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?