Python Summer internship quiz 4

Python Summer internship quiz 4

University

10 Qs

quiz-placeholder

Similar activities

C PROGRAMMING

C PROGRAMMING

University

15 Qs

Java Lesson 7

Java Lesson 7

5th Grade - University

10 Qs

IEEE Coding Competition

IEEE Coding Competition

University

13 Qs

Tech quiz Round 1

Tech quiz Round 1

University

15 Qs

Java Arrays

Java Arrays

5th Grade - University

10 Qs

Day -1

Day -1

University

15 Qs

Day-1 Pre Assessment(Essentials of Data Analytics Using R)

Day-1 Pre Assessment(Essentials of Data Analytics Using R)

University

15 Qs

R programming

R programming

University

15 Qs

Python Summer internship quiz 4

Python Summer internship quiz 4

Assessment

Quiz

Other

University

Hard

Created by

Gnaneshwar Reddy

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?
for i in range(3):

pass

print(i)

a) 0

b) 1

c) 2

d) 3

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the else clause in a loop in Python?

a) To execute a block of code after the loop finishes normally without hitting a break.

b) To execute a block of code after the loop finishes regardless of whether it hit a break or not.

c) To execute a block of code before the loop starts.

d) To execute a block of code only if the loop is infinite.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?
for i in range(5):

if i == 3:

continue

print(i)

  • a) 0 1 2

b) 0 1 2 3

c) 0 1 2 4

d) 0 1 2 3 4

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?
for i in range(5):

if i == 3:

break

print(i)

  • a) 0 1 2 3

b) 0 1 2

c) 1 2 3

d) 0 1 2 4

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following will result in an infinite loop?

a) for i in range(1, 10, 1): print(i)

b) while True: print("Hello")

c) while False: print("Hello")

d) for i in range(10): print(i)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times will "Hello" be printed in the following code?
for i in range(3):

for j in range(3):

print("Hello")

  • a) 3

b) 6

c) 9

d) 12

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?
for i in range(3):

for j in range(2):

print(i, j)

  • a) (0, 0) (0, 1) (1, 0) (1, 1) (2, 0) (2, 1)

b) 0 0 0 1 1 0 1 1 2 0 2 1

c) (0, 0) (0, 1) (1, 0) (1, 1)

d) 0 0 1 1 2 2

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?