Acme Company makes and sells a single product called a widge…

Acme Company makes and sells a single product called a widget. During the current year, Acme’s total revenues are $420,000, total selling expenses are $62,000, and total administrative expenses are $59,000. Each widget sells for $50 per unit. Variable selling expenses are 7% of sales revenue, and the remainder of the selling expenses are fixed. Variable administrative expenses are $4 per unit, and the remainder of the administrative expenses are fixed. Acme’s accountant constructs a mixed cost formula for total selling and administrative expenses. What is the fixed cost amount in the formula? Round to the nearest whole dollar amount and do not enter a dollar sign or a decimal point (e.g., enter 89, not $89.00).

Acme Company makes and sells a single product called a widge…

Acme Company makes and sells a single product called a widget. During the current year, Acme’s total revenues are $420,000, total selling expenses are $62,000, and total administrative expenses are $59,000. Each widget sells for $50 per unit. Variable selling expenses are 7% of sales revenue, and the remainder of the selling expenses are fixed. Variable administrative expenses are $3 per unit, and the remainder of the administrative expenses are fixed. Acme’s accountant constructs a mixed cost formula for total selling and administrative expenses. What is the fixed cost amount in the formula? Round to the nearest whole dollar amount and do not enter a dollar sign or a decimal point (e.g., enter 89, not $89.00).

The multiples of 5 are: 5, 10, 15, 20, 25, 30, 35, 40, 45, 5…

The multiples of 5 are: 5, 10, 15, 20, 25, 30, 35, 40, 45, 50… 100 ( inclusive, including 100 )Write code to compute and print the sum and average of these numbers ( 5 to 100 ) using a while loop?Format the numbers to include the , (comma) and two decimal places.Sample output:Sum: 1,050.00Average: 52.50

The formula for converting a temperature from Fahrenheit to…

The formula for converting a temperature from Fahrenheit to Celsius is: C = (5/9) x (°F – 32 ).The formula for converting a temperature from Celsius to Fahrenheit is: F = (9/5) x °C + 32.Format the numbers to include the , (comma) and two decimal places. Given:       // 1) declare variables         System.out.println(“————- Temperature Converter ————-“);        System.out.println(“Enter c to enter Celsius, f to enter Fahrenheit: “);        // 2) read the option        System.out.println(“Enter Temperature: “);        // 3) read the temperature      //  4) write your code to convert the temperature to Celsius or Fahrenheit based on selected option Sample output ( Celsius to Fahrenheit ):————- Temperature Converter ————-Enter c to enter Celsius, f to enter Fahrenheit: cEnter Temperature: 3838.0 Celsius = 100.40 FahrenheitSample output (  Fahrenheit to Celsius ):————- Temperature Converter ————-Enter c to enter Celsius, f to enter Fahrenheit: fEnter Temperature: 100.4100.4 Fahrenheit = 38.00 Celsius

Assume you are writing the code in main() {   ……   Your…

Assume you are writing the code in main() {   ……   Your Code                }. ( no need to add any includes ).Write code to prompt the user to enter a number ( int ) determine if the number is even or odd using the ternary operator and display it.Sample output: Enter a number: 55 is oddSample outputEnter a number: 88 is Even