Calling Procedures

Slide 1:

  • A procedure is a named group of programming instructions that may have parameters and return values.
  • Procedures are referred to by different names, such as method or function, depending on the programing language.
  • Parameters are input values of a procedure. Arguments specify the values of the parameters when procedure is called.
  • A procedure call interrupts the sequential execution of statements causing the program to execute the statements within the procedure before continuing. One the last statement in the procedure (or a return statement) has executed, flow or control is returned to the point immediately following where the procedure was called.

Slide 2:

  • When calling procedures, it's important to take notice to whether it returns data, or a block of statements.
  • If the procedure just returns a block of statements, you call the procedure by referring to the procedure name, and inputting the arguments.
  • If the procedure returns some sort of data like a boolean or value, then you will assign that value to a variable

Slide 3:

  • Assume the Temperature outside is Fahrenheit.
  • The procedure convertFahrenheit is intended to convert from Fahrenheit to Celsius.
  • Convert the following psuedocode to python
def convertFahrenheit (temperature):
	celsius = temperature - 32
	celsius = celsius  * 5/9
	return celsius


outsideTemp = input("What is the temperature Outside?")
print(convertFahrenheit(int(outsideTemp)))

def convertFahrenheit (temperature):
	celsius = temperature - 32
	celsius = celsius  * 5/9
	return celsius

print("What is the temperature outside?")
outsideTemp = input()
25.0
What is the temperature outside?

Developing Procedures

Slide 8:

Picking a procedure name is important in case you revisit the code later on (separate words with capitals) There are 2 different types of procedures- ones that return a value and those that simply execute a block of statements Steps of developing procedure: picking a useful name, thinking of parameters (what data does the procedure need to know), making a flowchart or writing procedure in pseudocode, and actually developing the procedure.

Slide 9:

In this example, a teacher is writing a program that will replace the grade on a previous quiz if the new grade is better than the previous.

  • What would be a good name for this procedure?
  • What parameters do we need for this procedure?
  • Try writing this procedure out in python based on the given pseudocode
currentPoints = int(input("How many points did you earn on the retake? (Positive integer"))
quizGrade = int(input("How many points did you earn previously for the quiz? (Positive integer)"))
quizTotal = int(input("How many points was the quiz out of? (Positive integer"))

def quizReplace(currentPoints, quizGrade, quizTotal):
    quizGrade = (quizGrade/quizTotal) * 100
    currentGrade = currentPoints / quizTotal
    currentGrade = currentGrade * 100
    if (currentGrade > quizGrade):
        quizGrade = currentGrade
    return quizGrade

print("Your new grade on the quiz is " + str(int(quizReplace(currentPoints, quizGrade, quizTotal))) + "%")

# inputted: currentPoints = 30
#           quizGrade = 25
#           quizTotal = 30
Your new grade on the quiz is 100%

Procedural Abstraction

  • One type of abstraction is procedural abstraction which provides a name for a process and allows a procedure to be used only knowing what it does and not how it does it
  • This is very helpful in managing complexity in a program
  • Subdivision of a program into separate subprograms is called modularity
  • A procedural abstraction may extract shared features to generalize functionality instead of duplicating code. This allows for program reuse, which helps manage complexity
  • When a pre-written procedure is called, you don’t necessarily need to know the details of this, just what it does and how to call it
  • Simply, procedural abstraction is naming and calling a pre-written procedure
  • Making sure to include the right arguments so the procedure can do what its supposed to do is crucial

Complexity Example

One of the biggest advantages of procedural abstraction is managing complexity.

Think about the process of simplifying the code? What do you think the advantage of the code segment on the left is?

Code Segment 1 Code Segment 2
ROTATE_LEFT() detourLeft()

MOVE_FORWARD()|turnCorner()| ROTATE_RIGHT |MOVE_FORWARD()| MOVE_FORWARD()|MOVE_FORWARD()| MOVE_FORWARD() ROTATE_RIGHT() MOVE_FORWARD() ROTATE_LEFT() MOVE_FORWARD() ROTATE_LEFT() MOVE_FORWARD() MOVE_FORWARD MOVE_FORWARD()

Hacks

  • Write a python procedure about something which can help you in school, for example the teacher’s function we spoke about earlier.
  • Points will be awarded based on creativity and functionality
  • 0.1 points will be deducted for late submissions
  • Submit the notes with all blanks filled in (scored out of 0.5 points) and the python procedure (scored out of 0.5 points) by Monday 12/12 at 11:59 PM.
def get_teacher_feedback(teacher_name, assignment_name):
  
  feedback = "Your assignment was well-written and thoroughly researched. Great job!"
  
  
  return feedback

print(get_teacher_feedback("Ms. Smith", "History project"))
Your assignment was well-written and thoroughly researched. Great job!

In this example, the get_teacher_feedback() procedure takes in two arguments: the teacher's name and the name of the assignment. It then retrieves feedback for that assignment from the teacher and returns it.

To call the procedure, we simply call the get_teacher_feedback() function and pass in the appropriate arguments. In this case, we are calling the function with the teacher's name as "Ms. Smith" and the assignment name as "History project". When we run the code, the feedback from Ms. Smith for the History project will be printed to the screen.

another example!!!!

def calculate_grade(homework_grades, quiz_grades, test_grades):

  homework_grade = sum(homework_grades) / len(homework_grades)
  
  quiz_grade = sum(quiz_grades) / len(quiz_grades)
  
  test_grade = sum(test_grades) / len(test_grades)
  
  final_grade = 0.3 * homework_grade + 0.3 * quiz_grade + 0.4 * test_grade
  
  return final_grade

print(calculate_grade([90, 95, 100], [85, 90, 95], [80, 85, 90]))
89.5

To call the procedure, we simply call the calculate_grade() function and pass in the appropriate arguments. In this case, we are calling the function with three lists of grades for the homework, quiz, and test categories. When we run the code, the final grade for the student will be printed to the screen.