different students group to complete the "restaurant online reservation system" my job is to lead and analysis how to build it by using "Visio" software to create UML diagrams, activity diagrams, Entity Relationship diagrams, class diagrams, pseudocodes, and used "NetBeans" software to create GUI parts. In this experience, it can help me to master the skills about how to communicate with stakeholders, and over came a lot of obstacles of working with some people who has different characteristic
Words: 434 - Pages: 2
assignment.”I started the programming assignment immediately by looking up various websites that address flowcharts and Pseudo code. I compared various flow charts and their how they flow. I also played youtube videos of how to create flowcharts and pseudocodes. Subsequently I read the example that was given along with the assignment. The example that was given was similar to the mode of operations of programming assignment that was given last. So I decided to draw a flowchart of the last week’s assignment
Words: 511 - Pages: 3
L*W = 100 R3: L = 12, W = 12, L*W = 144 Usable Area: R1 + R2 + R3 = 364 square feet Test Case 2: R1: L = 10, W = 12, L*W = 120 R2: L = 11, W = 11, L*W = 121 R3: L = 12, W = 12, L*W = 144 Usable Area: R1 + R2 + R3 = 385 square feet Pseudocode // This program will add together the square feet of rooms to determine the total square feet of a house. // Declare variables Declare R1, R2, R3, Usable Area as Integer // Set values of Integers //The values for R will be found using
Words: 317 - Pages: 2
| |Display totalArea B. Program Design – Following the directions in the assignment, clearly write up your problem design in this section and comment your pseudocode. Begin Declare roomWidth, roomLength, area, totalArea = 0 Write “Please enter the width and length of room 1: “ Input roomWidth Input roomLength Set area = roomWidth * roomLength Set totalArea = totalArea + area
Words: 331 - Pages: 2
say “Thank You For Taking Your Diabetic Assessment.” The “no” is considered a “NULL” because its only necessary to write for the pertinent yeses. I did find that the single case structure of the basic format that I selected work well with my pseudocode formatting. In addition, it allowed
Words: 403 - Pages: 2
Programming Solution Proposal Donald L. Smith PRG/211 June 24, 2013 Jack Warner Programming Solution Proposal The McBride Financial Services Company, a part of the Virtual Organizations, needs a computer program to calculate mortgage payments in their agent field offices. The agents want to input a mortgage loan amount, an interest rate, and a number to pay off the loan into this program and have the mortgage’s monthly payments as output. In addition, agents want the program to calculate
Words: 545 - Pages: 3
Name (Name: String) Input Salary (Salary: Real) Output Display Average salary Display Count_2 above average salary Display Count_3 below average salary Pseudocode Main Module Declare Name, Response As String Declare Sum, Salaries, Average As Real Declare Count, Count_2, Count_3 As Integer Write “ Welcome to the Payroll Program ”
Words: 471 - Pages: 2
Pseudocode: start perform housekeeping( ) while bothDone = “N” perform mainLoop( ) finishUp( ) stop housekeeping( ) declare variables char hanName char hanAdd char hanCity char hanState num hanZip char lakeName char lakeAdd char lakeCity char lakeState num lakeZip open files perform readHanover( ) perform readLakewood( ) if lakeZip = 99999 then if handZip = 99999 then bothDone = “Y” endif( ) endif( ) return readLakewood( ) read lakewoorRec
Words: 390 - Pages: 2
feet Area2 Float Area of room 2 in square feet Area3 Float Area of room 3 in square feet Area4 Float Area of room 4 in square feet TotalArea Float Total area in square feet Test Cases: [I omit this as nearly everyone presented good cases] Pseudocode: BEGIN PROGRAM Declare Length1, Width1, Length2, Width2, Length3, Width3, Length 4, Width4 as Float Declare Area1, Area2, Area3, Area4, Area5, TotalArea as Float // Gather the input data Print “Enter the length of room 1 in feet: “ Input Length1
Words: 410 - Pages: 2
Control Structure INTRODUCTION Control structures are used in programming to help the computer make decisions. (Drake & Venit, 2011). The structure helps the user enjoy a far easier experience than having to manually type or calculate every step of the program. A computer may be used to compute a set of numbers to find their average and then display a notification to the user that the average does not meet the user's requirements. In this paper, we will show a simple control structure that
Words: 486 - Pages: 2