ECE B_Python Class Test_QA

ECE B_Python Class Test_QA

25 Qs

quiz-placeholder

Similar activities

LV12 Big Transmission

LV12 Big Transmission

KG - University

20 Qs

Python Quiz

Python Quiz

KG - University

20 Qs

Chapter 4 Test: Strings and Methods

Chapter 4 Test: Strings and Methods

KG - University

20 Qs

WOW! - RASTER GRAPHICS

WOW! - RASTER GRAPHICS

KG - University

24 Qs

Python Programming Quiz

Python Programming Quiz

University

20 Qs

[1] QUIZ - INFORMATIKA 2024

[1] QUIZ - INFORMATIKA 2024

KG - University

20 Qs

Python Test

Python Test

KG - University

26 Qs

HHB 2.6 Cardiac Cycle QUIZS

HHB 2.6 Cardiac Cycle QUIZS

11th Grade

20 Qs

ECE B_Python Class Test_QA

ECE B_Python Class Test_QA

Assessment

Quiz

others

Medium

Created by

Mrs.P.Malin 1588

Used 1+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output of the following code snippet? print(2**3 + (5 + 6)**(1 + 1))

129

8

121

None of the above.

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the datatype of the var in the below code snippet?

var = 10;

print(type(var));

var = "Hello";

print(type(var))

str and int

int and int

str and str

int and str

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

How is a code block indicated in Python?
Brackets.
Indentation.
Key.
None of the above.

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output of the following code snippet?

a = 3;

b = 1;

print(a, b);

a, b = b, a;

print(a, b);

3 1 1 3

3 1 3 1

1 3 1 3

1 3 3 1

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following types of loops are not supported in Python?
for
while
do-while
None of the above

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output of the following code snippet?

s = {1, 2, 3, 3, 2, 4, 5, 5};

print(s);

{1,2,3,3,2,4,5,5}

{1,2,3,4,5}

None

{1,5}

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following are valid string manipulation functions in Python?
count()
upper()
strip()
All of the above

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?