As the user scrolls down, they should see the Shop Now! Heading and the different clothing items they can shop, with the prices and the icon to click on to buy the item. When the user clicks on the icon to buy a pop box will appear which will allow them to select how many of the item do, they want to buy. It should calculate accordingly. When the user clicks check out. They should be redirected to the Checkout page, where they need to fill in information. Once the form is correctly filled in and the user clicks on the Ship off button. They should be redirected to the Thank You web page.
Create two interfaces such as MathsOperable and TrigonometricOperable which
contains the functions to perform the basic arithmetic operations (add, sub, mul, div,
mod) and trigonometric operations (sine, cosine, tan) respectively.Create an abstract class called “Calculator” with details such as no1, no2 and result. Add
necessary constructors.
Implement these interfaces and inherit the class in “Operation” class to perform the
specific operations.
Demonstrate the operations in a menu driven fashion from a Main class. Write logics in
the corresponding methods.
Create a program that will generate twenty (20) random numbers from the range 1 to 9. The twenty random numbers shall be stored in a generic list. Print a horizontal histogram, representing the occurrence of each digit. Display also the generated combinations. 2. Refer to the sample output given below.
(Sample Ouput)
Welcome to my GENERIC LIST PROGRAM
The 20 random numbers are: 3 4 1 7 8 5 6 3 4 9 3 5 1 3 4 2 8 9 5 9
Histogram:
1 **
2 *
3 ****
4 ***
5 ***
6 *
7 *
8 **
9 ***