Python Programming Quiz

Python Programming Quiz

Assessment

Quiz

Computers

University

Easy

Created by

ARAVIND T

Used 1+ times

FREE Resource

Student preview

quiz-placeholder

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct syntax to output "Hello, World!" in Python?

echo("Hello, World!")

print("Hello, World!")

printf("Hello, World!")

console.log("Hello, World!")

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of the following Python code? x = 5 x += 3 print(x)

5

8

3

53

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is NOT a valid variable name in Python?

my_variable

2nd_variable

_variable

variable_2

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which data type does the following Python expression return: type(10.5)?

int

float

str

bool

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the len() function do in Python?

Returns the length of a string

Returns the length of a list

Returns the length of a tuple

All of the above

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? x = [1, 2, 3] x.append(4) print(x)

[1, 2, 3]

[1, 2, 3, 4]

4

[4]

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following keywords is used to define a function in Python?

def

function

method

create

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?