< Back

Activity 24: Test 3 Review

  1. What is the difference between a method and a function?

  2. What is the negation of the Python expression \(a < 0 \mbox{ } and \mbox{ } b > 0\)?

  3. For each of the following snippets of Python code, give what would be printed to the command line if run. If the snippet will not print anything because of an error, just put error.

    1. a_string = "0123456789"
      for index in range(0, len(a_string), 2):
          print(a_string[index])
      
    2. a_string = "abcd"
      for character in a_string:
          print(a_string + a_string)
      
    3. a_string = "abcd"
      print(a_string[2:4] + a_string[0:2])
      
    4. accumulator = 0
      MAX_VALUE   = 10
      while(accumulator < MAX_VALUE):
          accumulator = 2 * (accumulator + 1)		    
      print(accumulator)
      
    5. a_string = "my string!"
      while(a_string[0] != ' '):
          a_string = a_string[1:]
      print(a_string)
      
    6. a_string = "abcd"
      b_string = ""
      index = 0
      while index <= len(a_string):
          b_string = a_string[index] + b_string
          index = index + 1
      print(b_string)
      
  4. What is the decimal number 61 in binary?

  5. Write a function called count_uppercase(my_string) which takes as a parameter a string of characters. It should return an integer, the number of uppercase letters in my_string. Include your own test cases.

  6. Write a function called print_initials(my_string) which takes as a parameter a string of characters of the form "name1 name2". Your function should return a string of length 2, which is the concatenation of the first character of each name in the string.