Get help now
  • Pages 3
  • Words 721
  • Views 310
  • Download

    Cite

    Cameron
    Verified writer
    Rating
    • rating star
    • rating star
    • rating star
    • rating star
    • rating star
    • 5/5
    Delivery result 2 hours
    Customers reviews 339
    Hire Writer
    +123 relevant experts are online

    Procedures, Parameters ; Sub-programs Essay

    Academic anxiety?

    Get original paper in 3 hours and nail the task

    Get help now

    124 experts online

    Procedures, Parameters & Sub-ProgramsIn any modern programming language, procedures play a vital role in theconstruction of any new software. These days, procedures are used instead ofthe old constructs of GOTO and GOSUB, which have since become obsolete.

    Procedures provide a number of important features for the modern softwareengineer:-Programs are easier to write. Procedures save a large amount of time duringsoftware development as the programmer only needs to code a procedure once, butcan use it a number of times. Procedures are especially useful in recursivealgorithms where the same piece of code has to be executed over and over again. The use of procedures allows a large and complex program to be broken up into anumber of much smaller parts, each accomplished by a procedure.

    Procedures alsoprovide a form of abstraction as all the programmer has to do is know how tocall a procedure and what it does, not how it accomplishes the task. Programs are easier to read. Procedures help to make programs shorter, and thuseasier to read, by replacing long sequences of statements with one simpleprocedure call. By choosing goo procedure names, even the names of theprocedures help to document the program and make it easier to understand.

    Programs are easier to modify. When repeated actions are replaced by oneprocedure call, it becomes much easier to modify the code at a later stage, andalso correct any errors. By building up the program in a modular fashion viaprocedures it becomes much easier to update and replace sections of the programat a later date, if all the code for the specific section is in a particularmodule. Programs take less time to compile. Replacing a sequence of statements withonce simple procedure call usually reduces the compilation time of the program,so long as the program contains more than one reference to the procedure!Object programs require less memory.

    Procedures reduce the memory consumptionof the program in two ways. Firstly they reduce code duplication as the codeonly needs to be stored once, but the procedure can be called many times. Secondly, procedures allow more efficient storage of data, because storage for aprocedure’s variables is allocated when the procedure is called and deallocatedwhen it returns. We can divide procedures into two groups:-Function procedures, are procedures which compute a single value and whose callsappear in expressionsFor example, the procedure ABS is a function procedure, when given a number x,ABS computes the absolute value of x; a call of ABS appears in an expression,representing the value that ABS computes. Proper procedures, are procedures whose calls are statementsFor example, the procedure INC is a proper procedure.

    A call of INC is astatement; executing INC changes the value stored in a variable. Procedures have only one real disadvantage: Executing a procedure requiresextra time because of the extra work that must be done both when the procedureis called, and when it returns. Most of the time however, the advantages of using procedures heavily outweighthis minor disadvantage. Most procedures depend on data that varies from one call to the next, and forthis reason, Modula-2 allows a procedure heading to include a list ofidentifiers that represent variables or expressions to supply when calling theprocedure. The programmer can use these identifiers, known as formalparameters, in the body of the procedure in the same fashion as ordinaryvariables.

    A call of a procedure with parameters must include a list of actual parameters. The number of actual parameters must be the same as the number of formalparameters. Correspondence between the actual and formal parameters is byposition, so the first actual parameter corresponds to the first formalparameter, the second actual parameter corresponds to the second formalparameter, and so on. The type of each actual parameter must match the type ofthe corresponding formal parameter.

    Modula-2 provides to kinds of formal parameters:-Variable parameters. In a procedure heading, if the reserved word VAR precedesa formal parameter, then it is a variable parameter. Any changes made to avariable parameter within the body of the procedure also affect thecorresponding actual parameter in the main body of the program. Value parameters.

    If the reserved word VAR does not precede a formal parameterthen it is a value parameter. If a formal parameter is a value parameter, thecorresponding actual parameter is protected from change, no matter what changesare made to the corresponding parameter in the procedure.To sum up, variable parameters

    This essay was written by a fellow student. You may use it as a guide or sample for writing your own paper, but remember to cite it correctly. Don’t submit it as your own as it will be considered plagiarism.

    Need custom essay sample written special for your assignment?

    Choose skilled expert on your subject and get original paper with free plagiarism report

    Order custom paper Without paying upfront

    Procedures, Parameters ; Sub-programs Essay. (2019, Feb 08). Retrieved from https://artscolumbia.org/procedures-parameters-sub-programs-essay-80282/

    We use cookies to give you the best experience possible. By continuing we’ll assume you’re on board with our cookie policy

    Hi, my name is Amy 👋

    In case you can't find a relevant example, our professional writers are ready to help you write a unique paper. Just talk to our smart assistant Amy and she'll connect you with the best match.

    Get help with your paper