Premium Essay

Prg 211 Week 5

In:

Submitted By freezeme23
Words 1533
Pages 7
Introduction
Development teams and programmers acquire the knowledge of writing code to enhance the power of computers to solve problems and perform various tasks (Trott, 2004). Research shows good communication with customers and organizations ensures a meticulous understanding of a distinct problem. Subsequently a program can be designed to meet needs and expectations of customers and organizations (Trott, 2004). Successfully solving problems with program software requires planning, analyzing, and program management to ensure all aspects of the problem meet the required expectations. I believe planning your program following the program development cycle, will enable you to use your time efficiently thus helping design error-free programs that produce the desired output.
In the development cycle a programmer needs to first understand the problem by a extracting the requirements or requirements specification (Bronson & Rosenthal, 2005). The programmer then needs to analyze requirements using the information given to provide a repeatable, predictable process that improves productivity and quality results. Then coding takes place by writing statements in computer language to carry out the program design (Bronson & Rosenthal, 2005). After the program has been implemented software testing or validation phases ensures that bugs are recognized. Also accurate documentation of program implementation and testing is done throughout development cycle for future maintenance and enhancement (http://itfp.lps.org).

Problem Statement
An organization has awarded our program development team a contract to develop a program to manage daily calorie intake. The organization wants to identify if whether a person is balancing calories consumed with those being expended. Our programmers take into account the balance of calories daily by gaining knowledge of what foods and

Similar Documents

Free Essay

Prg 211 Entire Class Computer Programming

...PRG 211 ENTIRE CLASS COMPUTER PROGRAMMING To Purchase this tutorial visit following link http://wiseamerican.us/product/prg-211-entire-class-computer-programming/ Contact us at: SUPPORT@WISEAMERICAN.US PRG 211 ENTIRE CLASS COMPUTER PROGRAMMING PRG 211 Complete Class Algorithms and Logic for Computer Programming WEEK 1 PRG 211 Week 1 Programming Fundamentals -Reusability of Code Discussion Question 1 Discussion Question 2 WEEK 2 PRG 211 Week 2 Program Solution Proposal Discussion Question 1 Discussion Question 2 WEEK 3 PRG 211 Week 3 Selection Structure Visual Logic Flowchart.vls PRG 211 Week 3 Selection Structure paper /800 words Discussion Question 1 Discussion Question 2 WEEK 4 PRG 211 Week 4 Array Structure Proposal Visual Logic Flowchart PRG 211 Week 4 Individual Assignment – Array Structure Proposal Discussion Question 1 Discussion Question 2 WEEK 5 Calorie Management Visual logic Flowchart Final Team Assignment – Calorie Management Paper /1500 Word Final Team Assignment – Calorie Management Presentation Discussion Question 1 Discussion Question 2 PRG 211 ENTIRE CLASS COMPUTER PROGRAMMING PRG 211 Complete Class Algorithms and Logic for Computer Programming WEEK 1 PRG 211 Week 1 Programming Fundamentals -Reusability of Code Discussion Question 1 Discussion Question 2 WEEK 2 PRG 211 Week 2 Program Solution Proposal Discussion Question 1 Discussion Question 2 WEEK 3 PRG 211 Week 3 Selection Structure Visual Logic Flowchart...

Words: 287 - Pages: 2

Premium Essay

Paper

... |Course Title |PRG/211 | | | | | | | | | | | Team Members/Contact Information |Name | |Phone | |Time zone and | |Email | | | | | |Availability During the Week | | | | | |xxx-xxx-xxxx | |(e.g., AZ “Mtn Time”, Mon-Sat 9-11pm) | | | |Kyle Lee | |229-415-8330 | |Eastern Time Zone- (Mon-Sat 1pm-9pm) | |kvlee@valdosta.edu | |Brian Desjardins | |803-512-1035 | |Eastern Time Zone- Mon-Sun 6pm-9pm | |Desjardins88@email.phoenix.edu | |Breona Williams | |706-761-4930 | |EST after 5 p.m. daily | |Breonawilliams1991@gmail.com | |Robin King | |n/a(Deployed) | |UTC 06:00, (All week, 6-9pm) | |Robinking780@gmail...

Words: 311 - Pages: 2

Premium Essay

Calorie Management

...PRG/211 Algorithm Planning for Calorie Management Algorithm Planning for Calorie Management 1. We need to analyze the program.              By determining the information we are given and what results we need to get. What information do we need to calculate the calories daily. What calories are in the food and beverages. How many calories are burned daily. What is the required balance per person.  2. Design a program to solve the program.             The heart of the program development process.  3. Code the program.             Write statements in a computer language that will design what we need in the program. 4. Test the program.  Make sure the program solves the given problem. Make sure we are able to calculate the user's daily calorie balance.  Determine the modules that will be needed in the program. User Intake – Breakfast, Lunch, Dinner, Snacks, Drink User Activity – Sedentary, Light Active, Moderate Active, Very Active, and Extremely Active Pseudocode for Calorie Management Input Data Module Write “What was your daily meal calorie intake?” Input calorieIntake Write “Select your daily activity” Input dailyActivity Calorie Caluctions Module Set Totalcalories = calorieIntake- dailActivity Output Module Write “Your total calorie intake is: `` + Totalcalories End This a simple pseudocode for the calorie management program. The key variable are calorieintake the...

Words: 372 - Pages: 2

Premium Essay

Prg 211 Week 4

...Personal Learning Management Part Three University of Phoenix PRG 211 09-23-2013 Contents Introduction 3 Problem Statement and Solution 4 Conclusion 6 Introduction Parallel array structures can be used for many instances where an individual wants to input information that is unique to them, such as keeping track of their value items of learning. The entire process of putting pen to paper and creating a program is methodical in nature. The code does not have to be complicated and can be written in plain spoken English. Testing a program to see if it works is a simple task. All the programmer has to do is to input the data into the program and if it is functioning properly, a result based on the input and output will appear of the screen. The results come from a calculated list of items that have a represented value declared by the programmer. For instance, if a programmer wanted to design a program to calculate an entire course’s worth of an item with high value, then they would most likely declare the item of high value as the starting declaration and then say how many of that item are in an entire course. Problem Statement and Solution Arrays have been used in a whole host of problems to arrive at solutions for daily routines and tasks that people are involved in. Parallel arrays operate on a “grab that” basis where the values within the strings grab data from each other and produce information...

Words: 772 - Pages: 4

Free Essay

Prg Week 3 Dq2

...WEEK 3 DQ 2 PRG 211 * What are the similarities and differences between single alternative structures, dual alternative structures, and case structures? Provide an example of one of the three control structures using pseudocode. Try to provide an example that has not already been posted. Selection structures ask a question and, depending on the answer, take one of two courses of action. Then, no matter which path is followed, they continue on the next task. Structured programming is a programming paradigm aimed on improving the clarity, quality, and development time of a computer program by making extensive use of subroutines, block structures and for and while loops. A single-alternative structure is a single block of statements to be executed or skipped. When a single alternative selection structure returns the value of true, the actions on the true branch of the structure are executed. If the expression returns false, no actions are executed and the program control continues to the next executable statement structure in the program. Dual-alternative structures contain two blocks of statements, one of which is to be executed, while the other one is skipped. A case structure executes one sub diagram depending on the input value passed to the structure. Only one sub diagram is visible at a time, and the structure executes only one case at a time. Case structures easily support multiple simple conditions that have similar actions compared to if/else statements. Single-alternative...

Words: 557 - Pages: 3

Premium Essay

Personal Learning Management Array Structure

...Personal Learning Management Array Structure Giovonnte J. Tate PRG/211 March 31, 2014 Travis Sprouse Object-Oriented Programming Parallel array structures can be used for many instances where the programer wants to input information that is different to them, such as keeping track of their important items of learning. The whole process of creating a program is of a structured nature. Code does not have to be difficult and can be written in simple English. What programmers need to do is input the data into the program and if it is functioning properly, a result based on that data and output will appear. All results come from a calculated list of items that have a represented value declared by the programmer. Arrays have been used in lots of problems to arrive at solutions for tasks and routines that people are involved in day to day. The For Loop and data sharing elements make the structure a desirable solution to any situation where programmers need to write codes and programs for a problems with many working parts, such as the me with several classes with a value rating applied. The data shared between the elements, assignments and projects completed, has to be shared in order to get your results. The most logical solution is the use of a parallel array structure. To test this conclusion, a pseudo code has been written and executed and is operating with satisfactory results. The pseudo code for this particular program is written as follows: Economic Value...

Words: 675 - Pages: 3

Free Essay

Indi Assign

...Programming Development – Personal Learning Management Programming Development: Personal Learning Management Part 3 Author: Stephanie Heinrichs University of Phoenix – PRG 211 3/22/14 Programming Development: Personal Learning Management The part of the program I believe to need an array would be the entire program. The Subject, the Classes, the weeks, the keywords, and the notes. I am still unsure as to how the arrays work, I have been trying to practice them, but there is not much in the way of instruction on how to use them. I know it can be a list or a table, which works well with the program. For example, the program can be a table starting from the subject, breaking down into the classes, which break down into the weeks that break down into the keywords and the notes. In my opinion, the only way the program could be put together in its simplest form would be in an array. Using an array can reduce the number of variable names needed in a program because a single array can be used instead of a collection of simple variables to store related data (Venit, Stewart & Drake, Elizabeth; Prelude to Programming Concepts and Design; Chapter 6- Arrays: Lists and Tables.). So using an array is the best way to simplify my entire program. The best part of the array is being able to set up the search for the index of keywords. It will make being able to type in the keyword...

Words: 807 - Pages: 4

Free Essay

Algorithms and Logic for Computer Programming

...Programming Solution Part 3: Array Structure Proposal Wayne Murray Algorithms and Logic for Computer Programming (PRG 211) November 14, 2011 Professor Sprouse Array Structure Proposal In my proposal from week two I would want to find the total number of units per patient for each procedure code billed by the doctor. A parallel array consisting of a one-dimensional and a two-dimensional array in this case would be a good way to solve this problem in a simplified code format. An array would also allow all the data the user wants to input to be stored in the program for multiple queries to be run without having to re-input the data. So this module of the program will allow the user to input all the different procedure codes billed the provider and return a units-per-patient statistic for the searched procedure code. Assuming the data that the user will input is all for the same provider, the following variables will need to be declared: the procedure code, the number of patients, and the number of units billed. Two arrays will be declared as well, one for the procedure code and one for the number of patients and units. The procedure code variable and array must be setup with a string data type since there are some procedure codes that have alpha characters. The number of patients and the number of units variables, as well as their corresponding array will be setup as integer data types. Since both of those variables are of the same data type they can be combined into...

Words: 728 - Pages: 3

Premium Essay

Prg/211 Calorie Mng Doc

...Week 5 Final PRG/211 Learning team A James Wilson, John Chroninger, Greg Wahl and Bryce Koepke Introduction: Writing code to educe the power of computers to solve problems along with performing various task are skills that programming teams posses. The proper communication and organization skills ensures that the satisfaction of customers and organizations are met. To successfully solve problems with software requires planning and analyzing to ensure all aspects of the problem are met. A sequence of steps or program development cycle will enable you to use time efficiently and create an error free program. Understanding the problem is the key to creating any form of a solution. The program language to carry out the designs must be selected after coding. Problem statement: Our development team has been selected to create a daily calorie intake program. Our goal is to determine if the calorie intake is being expended. When you as a person decide to change the way you eat and live your life a few things need to be done in the process to help with the change. Some of the ways to help you be a healthier person would include changing your diet and exercise to name the most important. When it comes to eating a person should track the amount of calories they consume per meal. Different ways to know what you consume in calories would be to read the nutrition facts, track through an online website or...

Words: 799 - Pages: 4

Premium Essay

Programming Fundamentals

...Programming Fundamentals Paper Johnny Garcia PRG/211 May 11, 2015 Programming Fundamentals Paper This is a step by step instruction guide explaining how to do damage control maintenance when you become a DCPO (Damage Control Petty Officer) in the US Navy. Step 1) Go to the scheduled DCPO mandatory meeting. A) In this meeting they will go over what needs to get done for the week. B) Also in this meeting you will get the list of maintenance you will need to complete for the week. Step 2) Organize your maintenance in order from what takes the longest man hours to what takes the least man hours. Tip) keep in mind that you are only allowed to perform 8 total man hours of work each work day. Add up the total man hours you were assigned and make sure you don’t go over your allotted man hours. This can result in disciplinary action. Step 3) Get your MRC cards for the maintenance you plan on doing for day 1. A) You can get your cards from your DCPO binder in the DC locker (same place you had your meeting). B) Read your MRC card carefully and understand the maintenance you have to do, what tools are needed, and what HAZMAT is needed. Step 4) Gathering your tools. A) Gather all the tools needed for the maintenance from your DCPO locker located in your division space. Tip) if you don’t have all the tools needed you may borrow tools from the DC Petty Officer in charge. You must sign out the tool and put down how long you will need it and what division you are in, so...

Words: 906 - Pages: 4

Free Essay

Calorie Management Program

...PRG/211 – Week 5 Team B – Algorithm Planning Visual Logic CALORIE MANAGEMENT PROGRAM Week 2 Algorithm Planning Week 3 Program Variables for Calorie Management Week 4 Verification & workaround for Calorie Management Week 5 Learning Team Assignment ****************************************************** About the Assignment Imagine that your team of software developers won a contract to develop a program that will identify whether a person is balancing calories consumed with those being expended or burned by taking the following into account:   The balance of calories is calculated daily. Calories are consumed in both food and beverages. Calories can be identified from both product labeling and calorie counters located on the Internet. Calories are burned daily in both daily living and exercise. Calories expended or burned can be calculated using calorie calculators located on the Internet. The balance of calories may be displayed in either calories or pounds and ounces. The following are examples of the information that might be provided: Calories are in balance. _ _ _ more calories are consumed than expended. _ _ _ more calories are expended than consumed. No pounds/ounces were gained or lost. _ pounds _ _ ounces may have been gained. _ pounds _ _ ounces may have been lost. Use the following computation: One pound equals 3500 calories. THE PLAN Identify the criteria TEAM B will need to develop the required software. To do this, Team B must...

Words: 1400 - Pages: 6

Free Essay

A Paper

...|[pic] |Course Syllabus | | |Information Systems & Technology | | |PRG/211 Version 4 | | |Algorithms and Logic for Computer Programming | Copyright © 2012, 2011, 2010 by University of Phoenix. All rights reserved. Course Description This course provides students with a basic understanding of programming development practices. Concepts covered include the application of algorithms and logic to the design and development of procedural and object oriented computer programs to address the problem solving requirements associated with business information systems. This course will cover procedural programming concepts including data types, controls structures, functional decomposition, arrays, and files, classes and objects. Policies Faculty and students/learners will be held responsible for understanding and adhering to all policies contained within the following two documents: • University policies: You must be logged into the student website to view this...

Words: 1735 - Pages: 7

Premium Essay

Get Online Help with Ur Assignment Ashford a+Material

...http://homeworktimes.com/downloads/acc-202-complete-course-acc-202-entire-course/ http://homeworktimes.com/downloads/acc-206-entire-course-new/ http://homeworktimes.com/downloads/acc-206-new-week-1-assignment-chapter-one-problems/ http://homeworktimes.com/downloads/acc-206-new-week-2-assignment-chapter-two-three-problems/ http://homeworktimes.com/downloads/acc-206-new-week-2-journal-institute-management-accounting/ http://homeworktimes.com/downloads/acc-206-new-week-3-assignment-chapter-four-five-problems/ http://homeworktimes.com/downloads/acc-206-new-week-3-journal-hershey-company/ http://homeworktimes.com/downloads/acc-206-new-week-4-assignment-chapter-six-seven-problems/ http://homeworktimes.com/downloads/acc-206-new-week-5-assignment-chapter-eight-problems/ http://homeworktimes.com/downloads/acc-206-new-week-5-assignment-final-paper/ http://homeworktimes.com/downloads/acc-212-financial-accounting/ http://homeworktimes.com/downloads/acc-250-complete-course-acc-205-entire-course/ http://homeworktimes.com/downloads/acc-290-complete-course-acc-290-entire-course/ http://homeworktimes.com/downloads/acc-291-complete-course-acc-290-entire-course/ http://homeworktimes.com/downloads/acc-340-entire-course-acc-340-complete-course/ http://homeworktimes.com/downloads/acc-400-complete-course-acc-400-entire-course/ http://homeworktimes.com/downloads/acc-407-entire-course/ http://homeworktimes.com/downloads/acc-455-complete-course/ http://homeworktimes.com/downl...

Words: 3197 - Pages: 13

Premium Essay

Calorie Management

...Calorie Management by Team A PRG/211 - Algorithms and Logic for Computer Programming June 29, 2015 Calorie Management With rising obesity rates all across the United States of America, the team felt that it was necessary to build a program that could help citizens make healthier decisions and track those decisions on a day-to-day basis. The team set out to create a program that could manage and track a person’s daily calorie expended as it compares to their calorie intake. This program allows the consumers of the application be more conscientious of the choices they make as to how often they workout and what they choose to eat. To better help you as investors understand the proprietary nature of our application along with the ease of use for the end consumer, we will discuss each of these details along with future updates for this application. Not only will this application continue to improve the lives of those who use it, but it will become a social and cultural phenomenon that will contribute to bettering the lives of all those who need it. The mass appeal of this application is that it is not only a weight loss application, but also one for those who are already healthy. It will help to provide a way for the user to maintain his or her already good habits they have learned on their own or through use of the application The Program The program will ask for specific information about the user’s calories consumed, and calories expended. The calories consumed...

Words: 2262 - Pages: 10

Premium Essay

Factors Influencing Healthcare Service Quality

...http://ijhpm.com Int J Health Policy Manag 2014, 3(2), 77–89 doi 10.15171/ijhpm.2014.65 Original Article Factors influencing healthcare service quality Ali Mohammad Mosadeghrad* Abstract Background: The main purpose of this study was to identify factors that influence healthcare quality in the Iranian context. Methods: Exploratory in-depth individual and focus group interviews were conducted with 222 healthcare stakeholders including healthcare providers, managers, policy-makers, and payers to identify factors affecting the quality of healthcare services provided in Iranian healthcare organisations. Results: Quality in healthcare is a production of cooperation between the patient and the healthcare provider in a supportive environment. Personal factors of the provider and the patient, and factors pertaining to the healthcare organisation, healthcare system, and the broader environment affect healthcare service quality. Healthcare quality can be improved by supportive visionary leadership, proper planning, education and training, availability of resources, effective management of resources, employees and processes, and collaboration and cooperation among providers. Conclusion: This article contributes to healthcare theory and practice by developing a conceptual framework that provides policy-makers and managers a practical understanding of factors that affect healthcare service quality. Keywords: Healthcare Organisations, Quality, Pluralistic Evaluation...

Words: 12271 - Pages: 50