Purchase Solution

create Pseudocode for the program

Not what you're looking for?

Ask Custom Question

Using the UML diagram and variable list , create Pseudocode for the program.

How do I created the pseudocode?

1. client type (regular or discounted)
2. discount value (10% or $10)
3. regular price ($35)
4. client name (or client number)
5. client mailing address
6. invoice number
7. incoice date
8. billing date
9. billing amount
10. billing period
11. account balance
12. late charge rate (5%)
13. payment receving date
14. time for client to send payment (30 days)

Attachments
Purchase this Solution

Solution Summary

Pseudocode is created.

Solution Preview

Pseudocode is an outline of a program, written in natural english-like language that can easily be converted into real programming statements.

For example, the pseudocode for a bubble sort routine might be written:

while not at end of list
compare adjacent elements
if second is greater than first
switch them
get next two elements
if elements were switched
repeat for entire list

Pseudocode cannot be compiled nor executed, and there are no real formatting or syntax rules.

It is simply one step - an important ...

Purchase this Solution


Free BrainMass Quizzes
C# variables and classes

This quiz contains questions about C# classes and variables.

Word 2010: Table of Contents

Ever wondered where a Table of Contents in a Word document comes from? Maybe you need a refresher on the topic? This quiz will remind you of the keywords and options used when working with a T.O.C. in Word 2010.

Java loops

This quiz checks your knowledge of for and while loops in Java. For and while loops are essential building blocks for all Java programs. Having a solid understanding of these constructs is critical for success in programming Java.

Javscript Basics

Quiz on basics of javascript programming language.

C++ Operators

This quiz tests a student's knowledge about C++ operators.