Python 3 Review Part 1

Python 3 Review Part 1

9th - 12th Grade

20 Qs

quiz-placeholder

Similar activities

Python Concepts Quiz

Python Concepts Quiz

11th Grade

21 Qs

Python

Python

9th - 12th Grade

20 Qs

Python Year 9 Quiz

Python Year 9 Quiz

8th - 10th Grade

19 Qs

LETS PLAY QUIZ - PYTHON CBSE CLASS XII

LETS PLAY QUIZ - PYTHON CBSE CLASS XII

11th - 12th Grade

20 Qs

CSP Python Review

CSP Python Review

9th - 12th Grade

25 Qs

Problem Solving using Python and R - UNIT II - Tuples

Problem Solving using Python and R - UNIT II - Tuples

12th Grade

15 Qs

Recuperacion final parte 1

Recuperacion final parte 1

8th Grade - University

20 Qs

Python Programming II CSE A

Python Programming II CSE A

12th Grade - University

20 Qs

Python 3 Review Part 1

Python 3 Review Part 1

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Wayground Content

Used 1+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

In the statement "my_number = 50", what is "my_number"?

A function

A variable name

A constant

A string

Answer explanation

In the statement "my_number = 50", "my_number" is a variable name that stores the value 50. It is not a function, constant, or string, making "A variable name" the correct choice.

2.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Which of the following is NOT a float?

5.5

0.0

7

3.14

Answer explanation

A float is a number that has a decimal point. Among the options, 5.5, 0.0, and 3.14 are floats because they contain decimal points. The number 7 is an integer, thus it is NOT a float.

3.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

If `a = True` and `b = False`, what is the result of the expression `a and not b`?

`True`

`False`

`None`

`Error`

Answer explanation

In the expression `a and not b`, `a` is True and `not b` evaluates to True (since `b` is False). Therefore, `True and True` results in True. The correct answer is `True`.

4.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

What is the correct syntax to create a variable in Python?

variable my_number = 50

my_number = 50

let my_number = 50

const my_number = 50

Answer explanation

The correct syntax to create a variable in Python is 'my_number = 50'. This assigns the value 50 to the variable 'my_number'. The other options use syntax from different programming languages.

5.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

print("3"+"3")

33

6

INVALID OUTPUT

Answer explanation

The expression print("3"+"3") concatenates two strings "3" and "3", resulting in "33". Therefore, the correct answer is 33.

6.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

How is a float different from an integer?

It does not have a decimal component

It is always positive

It has a decimal component

It is always negative

Answer explanation

A float differs from an integer in that it has a decimal component, allowing for fractional values. Integers are whole numbers without any decimal part.

7.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

Media Image

Which of the following is a function call in the example?

def print_a_number():

x = 10

print(x)

print_a_number()

Answer explanation

The function call in the example is 'print_a_number()'. This line executes the function defined earlier, while 'def print_a_number():' defines the function, and 'print(x)' outputs the value of x but is not a function call.

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?