IT 116: Introduction to Scripting
Answers to Class 4 Ungraded Quiz

  1. What do you call a value written out directly inside the code?
    a literal
  2. What is an expression?
    anything that can be turned into a value
  3. What are the four types of expressions?
    literals, variables, calculations, function calls
  4. What is wrong with the following variable name?
    1st_try
    it begins with a digit
  5. Is there a limit to the number of arguments you can use in a print function?
    no
  6. What is the name of the function used to read input from the keyboard?
    input
  7. What is purpose of the argument to the function mentioned above?
    text used to prompt the user for a value
  8. Write an assignment statement that asks the user for his or her name and assigns it to the variable name.
    name = input("Please enter your name: ")
  9. Write an assignment statement that asks the user for an integer, converts it to the correct data type and assigns it to the variable number.
    number = int(input("Please enter an integer: "))
  10. Name three data types.
    integer, decimal, string
    	or
    int, float, str