Python level 1 Autumn 2024

Python level 1 Autumn 2024

7th Grade

15 Qs

quiz-placeholder

Similar activities

Python Basics (CodeHS)

Python Basics (CodeHS)

7th - 12th Grade

20 Qs

Python Print Statement

Python Print Statement

6th - 10th Grade

12 Qs

Python (The Basics)

Python (The Basics)

6th - 10th Grade

20 Qs

Input and Output Operations in Python

Input and Output Operations in Python

6th - 10th Grade

11 Qs

Python Inputs

Python Inputs

6th - 10th Grade

11 Qs

Python Programming

Python Programming

5th Grade - University

15 Qs

Python basics

Python basics

6th - 8th Grade

15 Qs

Python Statements

Python Statements

5th - 7th Grade

10 Qs

Python level 1 Autumn 2024

Python level 1 Autumn 2024

Assessment

Quiz

Computers

7th Grade

Medium

Created by

Nagmun Onu

Used 7+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to take input from a user in Python?

name = input("Enter your name: ")

name = get_input("Enter your name: ")

name = read("Enter your name: ")

name = scan("Enter your name: ")

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct if-else statement in Python?

if x > 10: print("x is greater than 10") else: print("x is 10 or less")

if x > 10 then print("x is greater than 10") else print("x is 10 or less")

If x > 10: print("x is greater than 10") else print("x is 10 or less")

if x > 10: print("x is greater than 10") elseif: print("x is 10 or less")

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare a variable in Python?

int x = 5

x = 5

declare x = 5

var x = 5

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is an example of string concatenation in Python?

name = "John" + "Doe"

name = "John" & "Doe"

name = "John" * "Doe"

name = "John" - "Doe"

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to use an f-string in Python?

name = "Onu"

print(f"Hello, {name}!"

name = "Onu"

print(f'Hello, {name}!')

name = "Onu"

print(f"Hello, name!")

name = "Onu"

fprint("Hello, name!")

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you convert a string to an integer in Python?

int("123")

str(123)

float("123")

char("123")

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code:

num1 = 15

num2 = 5

print(num1/num2)

15

3

20

10

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?