Programming Fundamentals/Practice: Functions

Chapter Summary edit

  • Modular Programming - A software design technique that emphasizes separating the functionality of a program into independent, interchangeable modules, such that each contains everything necessary to execute only one aspect of the desired functionality.[1]
  • Hierarchy or Structure Chart - Conveys the relationship or big picture of the various functions in a program.
  • Function Examples
  • Parameters and Arguments - A parameter is a special kind of variable used in a function to refer to one of the pieces of data provided as input to the function. These pieces of data are the values of the arguments with which the function is going to be called/invoked.
  • Call by Value vs Call by Reference - Parameters can be passed by two different methods depending on the language.
    • Call by Value passes parameters as copies of the original value creating a second location in memory, which is essentially a new local variable. Any changes made to a Call by Value parameter only affect the passed in value and not the value passed in by the caller. This is the most common method that is used by most modern programming languages.
    • Call by Reference passes in the parameter using a single memory location which essentially passes in the original parameter from the calling function. Any changes made to a Call by Reference parameter by the called function also changes the value of that parameter in the calling function.[2]
  • Return Statement - Causes the result of a function to leave the current function and resume at the point in the code immediately after where the function was called.
  • Void Data Type - A data type that has no values or operators and is used to represent nothing.
  • Scope - The area of a source code file where an identifier name is recognized.
  • Programming Style - A set of rules or guidelines used when writing the source code for a computer program.
  • Standard Libraries - Common functions whose definitions have already been written that are ready to be used in any program.

Review Questions edit

True / False edit

  1. In addition to the term function as the name of a subprogram, the computer industry also uses macro, procedure and module.
  2. Generally, functions fall into two categories: Program Control and Specific Task.
  3. Functions must always have a return value.
  4. Hierarchy Charts and Structure Charts are basically the same thing.
  5. Program Control functions are used to simply subdivide and control the program.
  6. The void data type is rarely used in C++.
  7. Making source code readable is only used by beginning programmers.
  8. User-defined specific task functions are usually placed into a user-defined library.
  9. Local and global data storage is associated with the concept of scope.
  10. Creating a header file for user-defined specific task functions is a difficult task.
  11. The stack is part of the computer’s memory used for storage of data.
  12. The standard library is a set of specific task functions that have been added to the programming language for universal use.
  13. Programmers should have confidence that standard library functions work properly.
  14. It would be easier to write programs without using specific task functions.
  15. In order to separate the functionality of one function from another, you need to give each function its own parameters.
  16. Call-by-value evaluates arguments and passes a copy of the value to the subroutine.
  17. All functions should be called from "Output" because "Output" needs to call information from the other functions to get the correct output.
  18. Functions can only return 1 output.

Answers:

  1. true
  2. true
  3. false - Functions do not always need a return value, if the function is not going to jump back to the function that called it, then there is no need for a return value.
  4. true - Both names come from showing the organization / structure of a business, or the relationship between various modules.
  5. true
  6. false - The void can be used in a function's parameter list if it does not feed to return a value in C++.
  7. false - Making source code readable should be a priority for all programmers.
  8. true
  9. true
  10. false – It may seem difficult at first, but with a little practice it is really quite easy.
  11. true
  12. true
  13. true
  14. false - That may be the case in very simple code, but when the programs becomes complicated it becomes crucial to use functions.
  15. true
  16. true
  17. false - All functions should be called from main, because main is in charge of the other functions.
  18. true - only Python has the ability to return multiple variables from a single function.

Short Answer edit

  1. Create a hierarchy chart for the function example program found in this chapter.
  2. Review the programs you have already created for this course. Based on coding standards for your selected programming language, identify some problems that make your code “undocumented”, “unreadable” or wrong in some other way.
  3. Describe the differences between the local scope and the global scope.
  4. Think about when you are creating a function that requires more than one parameter to be passed in. Then when calling that function, in what order do you place those parameters and why?
  5. In your own words describe the difference between calling by value and calling by reference.
  6. Explain the differences between the void data type and the Nothing data type.
  7. Explain why having multiple functions in a program is more useful than having everything in the Main() function.

Activities edit

Complete the following activities using pseudocode, a flowcharting tool, or your selected programming language. Use separate functions for input, each type of processing, and output. Avoid global variables by passing parameters and returning results. Create test data to validate the accuracy of each program. Add comments at the top of the program and include references to any resources used.

  1. Create a program to prompt the user for hours and rate per hour and then calculate and display their weekly, monthly, and annual gross pay (hours * rate). Base monthly and annual calculations on 12 months per year and 52 weeks per year.[3]
  2. Create a program that asks the user how old they are in years, and then calculate and display their approximate age in months, days, hours, and seconds. For example, a person 1 year old is 12 months old, 365 days old, etc.
  3. Review MathsIsFun: US Standard Lengths. Create a program that asks the user for a distance in miles, and then calculate and display the distance in yards, feet, and inches, or ask the user for a distance in miles, and then calculate and display the distance in kilometers, meters, and centimeters.
  4. Review MathsIsFun: Area of Plane Shapes. Create a program that asks the user for the dimensions of different shapes and then calculate and display the area of the shapes. Do not include shape choices. That will come later. For now, just include multiple shape calculations in sequence.
  5. Create a program that calculates the area of a room to determine the amount of floor covering required. The room is rectangular with the dimensions measured in feet with decimal fractions. The output needs to be in square yards. There are 3 linear feet (9 square feet) to a yard.
  6. Create a program that helps the user determine how much paint is required to paint a room and how much it will cost. Ask the user for the length, width, and height of a room, the price of a gallon of paint, and the number of square feet that a gallon of paint will cover. Calculate the total area of the four walls as 2 * length * height + 2 * width * height Calculate the number of gallons as: total area / square feet per gallon Note: You must round up to the next full gallon. To round up, add 0.9999 and then convert the resulting value to an integer. Calculate the total cost of the paint as: gallons * price per gallon.
  7. Review Wikipedia: Aging in dogs. Create a program to prompt the user for the name of their dog and its age in human years. Calculate and display the age of their dog in dog years, based on the popular myth that one human year equals seven dog years. Be sure to include the dog's name in the output, such as:
        Spike is 14 years old in dog years.

References edit