Python and data processing test

Python and data processing test

University

16 Qs

quiz-placeholder

Similar activities

Beginner Quiz on ML and Python Basics

Beginner Quiz on ML and Python Basics

University

20 Qs

Linked list 1

Linked list 1

University

20 Qs

Searching & Sorting Algorithms

Searching & Sorting Algorithms

10th Grade - University

16 Qs

[Python For All] Quiz 2 - Rewind.py

[Python For All] Quiz 2 - Rewind.py

University

20 Qs

Python Quiz Ver- 1.3

Python Quiz Ver- 1.3

University

15 Qs

Python Basics

Python Basics

University

15 Qs

Python

Python

University

20 Qs

Python 2

Python 2

University

17 Qs

Python and data processing test

Python and data processing test

Assessment

Quiz

Computers

University

Easy

Created by

Tibor Tajti

Used 1+ times

FREE Resource

16 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the result of the following expression multiplying an integer with a float?

5*1.5

5

10

7.5

7

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the result of the expression?

5*1.0

5

5.0

An error

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the result of the next expression?

"V"+1

The value of the variable V plus 1

"V1"

An error

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the result of the expression?

3*[1, 2, 3]

[3, 6, 9]

[ [1, 2, 3], [1, 2, 3], [1, 2, 3] ]

[1, 2, 3, 1, 2, 3, 1, 2, 3, ]

An error

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Assume that we have a list variable:lst=[1,2,3,4]

How can we add the value 5 to the end of the list?

lst.add(5)

lst.append(5)

5.add(lst)

5.append(lst)

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The v[4]='c' statement can work if the type of the v variable is:

string

list

tuple

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will write the following code to the output?

for i in range(1,10):

print(i*i)

1

4

9

16

25

36

49

64

81

1

4

9

16

25

36

49

64

81

100

Nothing

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