Programming Questions

Programming Questions

8th Grade

11 Qs

quiz-placeholder

Similar activities

python-loops

python-loops

6th - 8th Grade

11 Qs

Python quiz

Python quiz

KG - Professional Development

10 Qs

Python-8CB

Python-8CB

8th Grade

10 Qs

Lý thuyết về Python

Lý thuyết về Python

3rd Grade - University

10 Qs

Основи Python

Основи Python

7th - 12th Grade

12 Qs

Minecraft+Python(Повт Урок 15)

Minecraft+Python(Повт Урок 15)

1st - 10th Grade

9 Qs

Roblox. Язык программирования Lua

Roblox. Язык программирования Lua

1st - 12th Grade

10 Qs

Programming Questions

Programming Questions

Assessment

Quiz

Education

8th Grade

Medium

Created by

D Sweeney

Used 3+ times

FREE Resource

11 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following code do? print("Hello World")

Prints 'Hello World' to the console

Saves 'Hello World' to a file

Sends 'Hello World' over the network

Deletes 'Hello World' from the database

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following code do? name = input("What is your name")

It assigns a default name to the variable 'name'.

It prompts the user to enter their name and assigns it to the variable 'name'.

It prints the user's name to the console.

It checks if the variable 'name' is empty.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following code do? age = int(input("What is your age"))

It asks the user for their age and stores it as a string.

It asks the user for their age and stores it as an integer.

It calculates the user's age based on the current year.

It prints the user's age to the console.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times is "Hi" printed? Animal = "Cat" if animal == "Cat": print("Hi") elif animal == "Cat": print("Hi") elif animal == "Mouse": print("Hi") else: print("Hi")

0 times

1 time

2 times

3 times

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times is "Hi" printed? Animal = "Cat" if animal == "Cat": print("Hi") if animal == "Cat": print("Hi") if animal == "Mouse": print("Hi") else: print("Hi")

0

1

2

3

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following code do? for i in range(3): print("Hello")

Prints 'Hello' three times to the console

Prints 'Hello' once to the console

Prints 'Hello' indefinitely

Does not print anything

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? number = 5 if number > 3: print("Greater") else: print("Smaller")

Greater

Smaller

Error

No output

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?