Write pseudocode, design flow chart and Java program using meaningful variable names, match logic specificed as in pseudocode and flow chart. Collect client information (Last name, first name, middle name (appear in one line) house/unit number, street name, type (appear in one line, city (by itself) & age (by itself) . Initial of first name with full stop, initial of middle name with full stop. Age brackets: 20 or under
21-35
36-70
71 or over
What do you understand by inconsistency in requirement? Explain it with suitable example?
Explain how spiral model can be preferred over the Prototyping Model.
Explain functional requirements and identify at least two functional requirements of bank auto mated teller machine (ATM) System? Explain in detail.
Write an application for a furniture company; the program determines the price of a table. Ask
the user to choose one for pine, 2 for oak, or three for mahogany. The output is the name of the
wood chosen as well as the price of the table. Pine tables cost $100, oak tables cost $225, and
mahogany tables cost $310. If the user enters an invalid wood code, set the price to zero. Save
the file as Furniture.cs
Write an application that displays the result of dividing two numbers and displays any
remainder. The main() method prompts the user for values and sends them to the dividing
method; the dividing method performs the calculation and displays the results. Save the
application as Divide.cs
Create a class named Eggs. It’s main () method holds an integer variable named numberOfEggs to
which you will assign a value entered by a user at the keyboard. Create a method to which you pass
numberOfEggs. The method displays the eggs in dozens; for example, 50 eggs is four full dozen (with
2 eggs remaining). Save the application as Eggs.cs
Write a program that prompts the user to input two POSITIVE numbers — a dividend (numerator) and a divisor (denominator). Your program should then divide the numerator by the denominator, and display the quotient followed by the remainder.
Hint: If you use division (/) to calculate the quotient, you will need to use int() to remove the decimals. You can also use integer division (// ), which was introduced in Question 10 of Lesson Practice 2.3.
Once you've calculated the quotient, you will need to use modular division (%) to calculate the remainder. Remember to clearly define the data types for all inputs in your code. You may need to use float( ) , int( ), and str( ) in your solution.
.
Create an application named Numbers whose main() method holds two integer variables. Assign
values to the variables. Pass both variables to methods named sum () and difference(). Create the
methods sum() and difference(); they compute the sum of and difference between the values of two
arguments, respectively. Each method should perform the appropriate computation and display the
results. Save the application as Numbers.cs