Intro to programming Final Review

Intro to programming Final Review

Assessment

Flashcard

Computers

11th Grade

Hard

Created by

Wayground Content

FREE Resource

Student preview

quiz-placeholder

16 questions

Show all answers

1.

FLASHCARD QUESTION

Front

A while loop can be used in which of the following situations? Repeat a set of statements till a condition remains True. Repeat a set of statements a finite or an infinite number of times. Iterate through a string, list, and tuple.

Back

All of the above

2.

FLASHCARD QUESTION

Front

What is a variable?

Back

A box(memory location) where you store values

3.

FLASHCARD QUESTION

Front

What symbol is used in python to assign values to a variable? Options: equals =, plus +, minus -, asterisk *

Back

equals =

4.

FLASHCARD QUESTION

Front

What will be the output?
name = "Dave"
print (name)

Back

Dave

5.

FLASHCARD QUESTION

Front

Which statement correctly assigns the string "Tanner" to the variable name? Options: name  = print( "Tanner") , input("Tanner"), name= "Tanner", name = input("Tanner")

Back

name= "Tanner"

6.

FLASHCARD QUESTION

Front

Loop that runs till the condition is true

Back

while

7.

FLASHCARD QUESTION

Front

Choose the correct output of the following code.
for i in range(10,15):
      print(i)

Back

10
11
12
13
14

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?