Search Header Logo

Basic Python

Authored by Teerapat TREPOPSAKULSIN

others

Used 6+ times

Basic Python
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following Python code

x = "22"

y = "2"

z = x + y

what is the value of z?

an integer with a value of 24
a float with a value of 24
a string with a value of 24
a string with a value of 222

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following variable names are not allowed?

class
type
int
_invalid

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of this code?

[2,4]
2, 4
24
2

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following python code x = 10.0 y = int(x/2 + 1) z = y * 2 what is the value of z

12
12.0
6
6.0

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Suppose we have the following list x = [2, 4, 7, 9, 21]

if we want to remove 7 from the list which line of code will fail?

x.pop(2)
x.remove(7)
x.pop(x.index(7))
x.pop(7)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

what is the output of the following code x = ["Computer Science", "Programing Skills", "Computer Skills"] y = x[::3][0] z = y[:8:] print(z)

Computer
Science
Programing
Skills

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Fill in the blank so that the code outputs the correct result basket = ["apple", "cherry", "orange"] for fruit in basket: if fruit is cherry ____________ print(fruit) # output apple orange

break
continue
stop
None

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?