IT 117: Intermediate to Scripting
Class 4 Ungraded Quiz
-
To make a script executable, what permissions must the script have?
-
What special line must be added to a script to run it without
typing python3 on the command line?
-
What do you call an error caused by code that does not follow the rules of the Python language?
-
What do you call an error that causes the code to give incorrect results?
-
What do you call an error that occurs when a value in a Python statement causes the statement to fail?
-
What do you call a collection of things stored one right after another?
-
What are the three data types that are a collection of things stored one right after the other.
-
What do you call the integer used to select one element of a list.
-
Write the Python statement you would use to create the empty list
named empty.
-
What is the string method that breaks up a string into a list of values?