How do I begin to break down a programming idea into modules?
My task is to think of a software application that I may be asked to develope, for example, a maintenance tracking application for an apartment complex, a video store application, a gym membership and equipment tracking application, an on-line shopping application, etc. I have to select one, discuss it, then determine how I woul ...continues
How do I create a flow chart and psuedocode for these problems?
Trying to figure out where to go on vacation. These are the scenarios: First, check how many vacation days you have left. If you have less than 2 days, you will stay at home. If you have between 2 and 4 days, you will go to Asheville. If you have more than 4 days, you check your budget. If your budget is greater than $1200, you ...continues
How do I create a flow chart and pseudocode for this problem?
Calculating a discount that customers receive based on the value of their order. If the total amount ordered is less than $20.00, no discount will be given. If the total amount is between $20.00 and $50.00, a discount of 5% will be givem. If the total amount is between $20.00 and $50.00, a discount of 5%will be given. If the tot ...continues
Please create a hierarchy chart of modules and a flow chart for the following problem
Part 1 You manage a dog-walking service, in which you interact with both clients and dog walkers. Your task is to schedule dog-walking appointments based on the clients' requested dates and times and the availability of the dog walkers. Once a dog walker has been assigned for a particular appointment, the appointment has to b ...continues
Please describe a situation or problem that would use a decision structure and a loop
Describe a situation or program that would use a decision structure and a loop.
Please write a pseudo-code for the following problems
Part 1: Write pseudo-code for the following problem: You have a file containing sporting goods that are sold online. Each item record contains the item id, item name, item description, item category, item price, and the units in stock. If the category of the item is either "tennis" or "golf", then the price will be discoun ...continues
Need flow chart and pseudo-code for the following problem
Create a flowchart and pseudo-code for the following problem: You have a file containing the grades of students from Beginning Programming, along with the students' information. Your part of the program has to loop through the records, and make sure that any student who has received a 'D', 'W', 'I', or 'F' in the course will ...continues
Please give a scenario of the following problem
Think of a situation when you would need to perform sorting or arranging of data. Explain which type of sort you would use and why
Please create a flow chart for this pseudo-code
Input File FirstName LastName SSNumber Grade start perform housekeeping() while not eof perform mainLoop() endwhile perform finish() stop housekeeping() Variables declare variables num x open file char foundit read studentInfo studentInfo return char studentName num s ...continues
create a pseudo-code for the following utilizing a bubble sort
Let us assume you are the manager of a firm and have list of employees with the number of days they were absent from work. If you want to find the top 10 absentees in the firm you will need to sort the list in descending order.