Python Quiz

Python Quiz

Professional Development

10 Qs

quiz-placeholder

Similar activities

Python_R

Python_R

2nd Grade - Professional Development

8 Qs

Python Quiz

Python Quiz

Professional Development

10 Qs

Python

Python

KG - Professional Development

13 Qs

Pemrograman Web dan Perangkat Bergerak

Pemrograman Web dan Perangkat Bergerak

University - Professional Development

10 Qs

Python Training Day-6 Quiz-6

Python Training Day-6 Quiz-6

Professional Development

10 Qs

Python to Access Data Quiz

Python to Access Data Quiz

Professional Development

15 Qs

Ansible part 2

Ansible part 2

Professional Development

11 Qs

Python

Python

7th Grade - Professional Development

13 Qs

Python Quiz

Python Quiz

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Fady Botrus

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct syntax for a single-line comment in Python?

/* comment */

<!-- comment -->

# comment

-- comment

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you create a multi-line comment in Python?

# This is a multi-line comment

''' This is a multi-line comment '''

// This is a multi-line comment

/* This is a multi-line comment */

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? python Copy code x = 5 y = 2.0 print(x + y)

7

7.0

Error

52.0

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How would you create a list in Python?

list = (1, 2, 3)

list = [1, 2, 3]

list = {1, 2, 3}

list = list = <1, 2, 3>

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What function would you use to convert a string to an integer in Python?

int()

str()

float()

convert()

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword is used to handle multiple conditions in an if statement?

if

elif

for

def

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you use the range() function to generate numbers from 0 to 4?

range(0, 5)

range(1, 5)

range(0, 4)

range(1, 4)

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?