Q1) Write a program that asks the user to enter an items wholesale cost and its markup percentage. It should then display the items retail price. For example:
- If an items wholesale cost is 5.00 and its markup percentage is 100 percent, then the items retail price is 10.00
- If an items wholesale cost is 5.00 and its markup percentage is 50 percent, then the items retail price is 7.50
The program should have a method named calculateRetail that receives the wholesale cost and the markup percentage as arguments, and returns the retail price of the item.
Q2) Write a program that asks the user to enter the width and length of a rectangle, and then display the rectangles area. The program should call the following methods:
- getLength This method should ask the user to enter the rectangles length, and then return that value as a double.
- getWidth This method should ask the user to enter the rectangles width, and then return that value as a double.
- getArea This method should accept the rectangles length and width as arguments, and return the rectangles area. The area is calculated by multiplying the length by width.
- displayArea This method should accept the rectangles length, width, and area as arguments, and display them in an appropriate message to the screen.
Q3) In physics, an object that is in motion is said to have kinetic energy. The following formula can be used to determine a moving objects kinetic energy:
KE = ½ mv2
The variables in the formula are as follows: KE is the kinetic energy, m is the objects mass in kilograms, and v is the objects velocity, in meters per second.
Write a method named kineticEnergy that accepts an objects mass (in kilograms) and velocity (in meters per second) as arguments. The method should return the amount of kinetic energy that the object has. Demonstrate the method by calling it in a program that asks the user to enter values for mass and velocity.