Skip to Main
OnlineContent
Residential Athletics Request Info Apply Now Visit Us Create Guest Account Sign In
Quiz: Lab — Python Programming
Due Oct 3 at 11:59pm Points 50 Questions 16
Time Limit None
Instructions
The quiz:
Covers the Learn material from Module 6: Week 6.
Contains 15 multiple-choice, matching questions and 1 file submission question
(Programming assignment).
Has no time limit.
Allows 1 attempt.
Is worth 50 points.
This lab is open book and it is encouraged that you learn through researching. The final question in this
lab is a question where you will write the python program to solve a given scenario.
Submit this assignment by 11:59 p.m. (ET) on Monday of Module 6: Week 6.
Attempt History
Attempt Time Score
LATEST Attempt 1 77 minutes 26.6 out of 50 *
* Some questions not yet graded
Score for this quiz: 26.6 out of 50 *
Submitted Oct 3 at 5:46pm
This attempt took 77 minutes.
Question 1 pts
In Python, as long as the identifier does not begin with a digit, it can be
any combination of: (chose all that apply)
https://canvas.liberty.edu/courses/340373/quizzes/1628987 1/11
, 10/3/22, 4:46 PM Quiz: Lab — Python Programming: CSIS110: Introduction to Computer Science (B05)
Correct!
Underscore ( _ )
Slash ( / )
Correct!
Letters
Correct!
Digits
Question 2 pts
What is the output from the following fragment of Python code?
myVariable = 65
myVariable = 65.0
myVariable = “Sixty Five”
print(myVariable)
Output to screen would be: [output]
Correct!
Sixty Five
Correct Answers Sixty Five
Question 3 pts
In Python, without directions to the contrary, instructions are executed
sequentially, from first to last in the program--a straight-line algorithm.
https://canvas.liberty.edu/courses/340373/quizzes/1628987 2/11