Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Objectives: The purpose of this lab is to gain some fluencies with software codi

ID: 3708944 • Letter: O

Question

Objectives: The purpose of this lab is to gain some fluencies with software coding standards.

Assignment Description: You will edit a sample code snippet to meet general coding standards.

Assignment Background: Standardized naming conventions for all software professionals within a project will help facilitate team velocity. Finding files quickly and easily helps everyone in completing their day to day tasks.

Assignment Instructions:

Copy the following sample code to MS Word. Edit the code so that it follows the general guidelines of coding standards described in the unit course materials. You do NOT need to observe language-specific standards.

/*****

Big_DarndealProgram

***/

string myAuntmatilda = "Customer's Last Name";

HonkinMoney= numberOfpizzas * cost;

FormeyFunctionThingey

getthestinkinaddress (call address locator)

mapquesttheaddress (print Map)

return (from the FormeyFunctionThingey)

print ("Thank you, " + myAuntmatilda)

print ("Your order total is " + HonkinMoney)

/**end the Big_DarndealProgram

Challenge: Intermediate Time Scoping: 1.5 hr maximum Tool Set: Unit Materials Points Possible: 100 pts

Explanation / Answer

/**

*    Big_DarndealProgram

*/

// Assigns a string constant

string myAuntmatilda = "Customer's Last Name";

// Calculates amount to be paid

honkinMoney = numberOfPizzas * cost;

// Function formeyFunctionThingey definition

formeyFunctionThingey

// Calls the method to get the address

getTheStinkinAddress (/*call address locator*/);

// Calls the method to print the map passed as parameter

mapQuestTheAddress (print Map);

// Returns result

return (/*from the formeyFunctionThingey*/);

/* Displays the thanking message concatenated with myAuntmatilda variable contents.*/

print ("Thank you, " + myAuntmatilda)

/* Displays the message concatenated with honkinMoney variable contents. */

print ("Your order total is " + honkinMoney)

// end the Big_DarndealProgram