Write an application that displays the factorial for every integer value from 1 to 10. A factorial of a
number is the product of that number multiplied by each positive integer lower than it. For
example, 4 factorial is 4 * 3 * 2 * 1, or 24.
One large chemical company pays its salespeople on a commission basis. The salespeople each receive $200 per week plus 9 percent of their gross sales for that week. For example, a salesperson who sells $5000 worth of chemicals in a week receives $200 plus 9 percent of $5000, or a total of $650. Develop a java program inputs each salesperson's gross sales for last week and calculates and displays that salesperson's earnings. Process one salesperson's figures at a time
write a java code that print the largest number of an array,
write a java code that declare an array which has 8 different numbers. Print the numbers of that array in reverse order.
Print the largest number of an array,
Write down a java program which will print a staircase pattern of * with 10 levels.
Write a java code that finds out the area of three geometric shape: Circle, Triangle, Square. Give the user an option to select which geometric shape's area he/she wants to find out. Based on the choice take necessary input and find out the result. Use different area method for each geometric shape. Print the result in main method.