Looks like no one added any tags here yet for you.
What is the output of line 1?
Line 1 shows a variable, not a print. Therefore, line 1 will not output anything
What does line 5 output?
Doe
What does line 6 output?
JaneDoe
What does line 7 output?
Jane Doe
What does line 4 output?
Jane
Create the line of code required to print out the exact text below:
“There is no substitute for victory.”
print("\"There is no substitute for victory.\"")
Note of the way the slash goes.
Is this output correct?
No
What will be displayed exactly by this line of code:
1 print("Hello Class!\n")
2 print("I hope you find this quiz easy")
Hello Class!
I hope you find this quiz easy
What will this output?
3
What will this output?
7
What will this output?
ic
What will this output?
1
Create a multiline comment that includes 3 lines of text as follows:
Title: Quiz Program in Python
Programmed on: September 28, 2024
By: Your name
"""
Title: Quiz Program in Python
Programmed on: January 31, 2024
By: Y/N
"""
What type of variable is this number?
String variable
What will the output look like for this print statement?
Your name isSteveand that is fantastic!
What will this output?
BE NICE TO EVERYONE
What is the purpose of ‘name’ in this code?
The variable saves some memory for the data
What is the correct output for this program?
1 sentence = Hi there!
2
3 print(sentence)
Syntax Error: To assign words to a variable, they must be in quotations to signify a string
What will be displayed exactly by this line of code:
1 print("Hello Class!")
Hello Class!
What is the output of line 1?
What is the output of the two input or gate?
True
What is the output of the two input and gate?
True
What is the value quizIsEasy in line 6?
True
What is the output of this line of code?
Error (Helleman and Teacher are not defined)
What is the 3rd number printed?
7
What is the output of the two input or gate?
False
What is the output of the two input or gate?
False
What is the output of this line of code?
True
What is the output of the two input and gate?
False
What is the correct output?
What is the value of result for the following equation?
False
What is the most appropriate item(s) that define what quizIsEasy?
Variable, Integer, Boolean, or Text?
Variable and Boolean
What is the last number printed?
12
Which of the following lines will be printed?
Students are smarter than teacher
Smile
What is line 1? (one word answer)
Comment
What is the output of the two input and gate?
False
What is the output of this line of code?
True
What is the output of the two input or gate?
True
What is the output of this line of code?
False
What is its range of Level 4? Please enter integer numbers only. Example answer: 34-38
80-94
What is the output of this line of code?
Helleman == Teacher
What is the output of this line of code?
Error, to compare two strings, you must have two operators. In this case, it is supposed to be:
print ("A" == "A")