IT 116: Introduction to Scripting
Class 16 Ungraded Quiz

  1. What appears after return in a return statement?


  2. Name the four types of expressions.


  3. Can a return statement return more than one value?


  4. Write the SINGLE Python statement you would use to return the value of the expression interest * principle from within a function.


  5. Write the SINGLE Python statement you would use to return True if the parameter number_1 were greater than the parameter number_2, but otherwise return False.


  6. Write the SINGLE Python statement you would use to return True if the parameter number_1 were equal to the parameter number_2, but otherwise return False.


  7. Write a SINGLE Python statement to return True if the parameter number were less than 0, but otherwise return False.


  8. Write the Python function get_positive which takes no parameter and returns a number greater than 0. This function should use the input function to ask the user for a number and convert it to an integer. It should then keep looping until it gets a number that is greater than 0. When it gets such a number, it should return that number.