Answer:
D. =AVERAGE(A1:A10)
Explanation:
The answer is D.
With option A. It means the cell should contain the minimum figure in the range of cells <em>(A1:A10).</em>
With option B. It means the cell should contain the total sum of the figures in the range of cells <em>(A1:A10).</em>
With option C. It means the cell should contain the maximum figure of the range of cells <em>(A1:A10)</em>
Are in good standing money wise!
hope helped c;
Answer:
- import java.util.Scanner;
-
- public class Main {
- public static void main(String[] args) {
- Scanner input = new Scanner(System.in);
- System.out.print("Input total sales of month: ");
- double totalSales = input.nextDouble();
-
- double stateTax = totalSales * 0.04;
- double countyTax = totalSales * 0.02;
- double totalSalesTax = stateTax + countyTax;
-
- System.out.println("County Tax: $" + countyTax);
- System.out.println("State Tax: $" + stateTax);
- System.out.println("Total Sales Tax: $" + totalSalesTax);
- }
- }
Explanation:
Firstly, create a Scanner object and prompt user to input total sales of month (Line 5-7). Next, apply the appropriate tax rate to calculate the state tax, county tax (Line 9 - 10). Total up the state tax and county tax to get the total sales tax (Line 11).
At last, print the county tax, state tax and the total sales tax (Line 13 - 15).
Answer:
left click, then click save image
Explanation: