Python Programming Quiz - 2

Python Programming Quiz - 2

12th Grade

15 Qs

quiz-placeholder

Similar activities

Quiz Pemrograman Arduino

Quiz Pemrograman Arduino

11th Grade - University

20 Qs

Accenture Placement Preparation

Accenture Placement Preparation

12th Grade

20 Qs

Mastering Python Strings

Mastering Python Strings

12th Grade

10 Qs

Electrical Current Pre Quiz

Electrical Current Pre Quiz

12th Grade

15 Qs

Understanding Manual Gearbox Components

Understanding Manual Gearbox Components

11th Grade - University

10 Qs

System and System Thinking Exit Ticket NEGH

System and System Thinking Exit Ticket NEGH

12th Grade

12 Qs

p2rt

p2rt

7th Grade - University

10 Qs

Mastering Python Basics

Mastering Python Basics

12th Grade

10 Qs

Python Programming Quiz - 2

Python Programming Quiz - 2

Assessment

Quiz

Engineering

12th Grade

Hard

Created by

Krishnesh G P

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct variable declaration in Python?

int x = 5

var x = 5

x = 5

declare x = 5

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What data type is returned by the expression 3 + 2.5 in Python?

Integer

Float

String

Boolean

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which operator is used for exponentiation in Python?

^

**

%

//

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a mutable data type in Python?

String

Tuple

List

Integer

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? python Copy code a = 10 b = 20 a, b = b, a print(a, b)

10 10

10 20

20 10

20 20

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is used to create a conditional statement in Python?

if

for

while

switch

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? python Copy code x = 5 if x > 2: print("A") elif x > 4: print("B") else: print("C")

A

B

C

No output

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?