Pre-Assessment Test: Python Basics

Pre-Assessment Test: Python Basics

University

25 Qs

quiz-placeholder

Similar activities

Python 3

Python 3

University

21 Qs

Week 1 QUIZ

Week 1 QUIZ

University

20 Qs

python giber

python giber

University

21 Qs

C Programming

C Programming

12th Grade - University

25 Qs

Coding Vocabulary

Coding Vocabulary

University

21 Qs

Intro to Python by AUG Problem solving module

Intro to Python by AUG Problem solving module

University - Professional Development

24 Qs

Java Booleans FQ1

Java Booleans FQ1

University

20 Qs

Python Quiz SE 27/10/2023

Python Quiz SE 27/10/2023

University

26 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

45 sec • 1 pt

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

print()

echo()

write()

show()

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which data type is immutable in Python?

List

Tuple

Dictionary

Set

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the output of: type(3.5)?

int

float

double

number

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which operator is used for exponentiation in Python?

^

**

//

%%

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

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

append()

insert()

push()

add()

6.

MULTIPLE CHOICE QUESTION

45 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

45 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?