Pre-Assessment Test: Python Basics

Pre-Assessment Test: Python Basics

University

25 Qs

quiz-placeholder

Similar activities

Python Quiz SE 27/10/2023

Python Quiz SE 27/10/2023

University

26 Qs

python programming quiz

python programming quiz

12th Grade - University

26 Qs

CODEATHON'22

CODEATHON'22

University

20 Qs

Diagnostic Kognitif KKA - Fase E

Diagnostic Kognitif KKA - Fase E

10th Grade - University

20 Qs

DEBUGGING

DEBUGGING

University

26 Qs

communcation studies quiz

communcation studies quiz

12th Grade - University

20 Qs

BUGHUNT

BUGHUNT

University

20 Qs

Week 1 QUIZ

Week 1 QUIZ

University

20 Qs

Pre-Assessment Test: Python Basics

Pre-Assessment Test: Python Basics

Assessment

Quiz

Other

University

Medium

Created by

Sushma Sushma

Used 1+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is used to output data in Python?

print()

echo()

write()

show()

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which data type is immutable in Python?

List

Tuple

Dictionary

Set

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of: type(3.5)?

int

float

double

number

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which operator is used for exponentiation in Python?

^

**

//

%%

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method is used to add an item to a list?

append()

insert()

push()

add()

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? x = [1, 2, 3] total = 0 for i in x: total += i print(total)

1

3

6

Error

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output? for i in range(1, 5): if i % 2 == 0: print(i) else: print('Odd')

Odd 2 Odd 4

Odd Even Odd Even

Odd 2 Odd 4

Error

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?