the density of ethanol, a colorless liquid that is commonly known as grain alcohol, is 0.798 g/mL. Calculate the mass of 37.5 mL of the liquid.
What is the compound formula for lithium chlorate?
What is the compound formula for lithium chlorate?
Change 21.2 ºC to Kelvin.
Change 21.2 ºC to Kelvin.
An atom has 36 protons, 36 electrons, and 52 neutrons. What…
An atom has 36 protons, 36 electrons, and 52 neutrons. What is the mass of this atoms?
What is the correct name from the polyatomc cation NH4+
What is the correct name from the polyatomc cation NH4+
What is the correct symbol for the element sodium?
What is the correct symbol for the element sodium?
Do the elements Al, Si, P and Cl represent a group, a period…
Do the elements Al, Si, P and Cl represent a group, a period, neither, or both?
Mercury has a density of 13.6 g/mL. What is the specific gra…
Mercury has a density of 13.6 g/mL. What is the specific gravity of 125 g of mercury?
QUESTION 6: in the TEXTBOX PROVIDED: WRITE the CODING for t…
QUESTION 6: in the TEXTBOX PROVIDED: WRITE the CODING for the FORMULAS * use the following Code for variable names & types in the formulas DECLARE the variable names & Data type= ===================== QUESTION 6- FORMULAS // VARIABLES AND VALUES TO USE: float markRate = 0.15; // markup rate float taxRate = 0.03; // tax Rate float comRate = 0.05; // commission Rate float baseDiscRate = 0.01; // base Discount Rate int carCost = 20000; // car Cost int noOfDisc = 1; // no of Discounts // *********************************** FORMULAS NEEDED ARE AS FOLLOWS: FINAL PRICE Found by : Subtract the DISCOUNT AMOUNT ..FROM.. the SUB PRICE ================================ DISCOUNT AMOUNT Found by : MULTIPLY the Customer Discount Rate by the Sub Price. ======================= CUSTOMER DISCOUNT RATE Found by : MULTIPLY the Base Discount Rate by the No of Discounts ======================= SUB PRICE Found by : Add TOGETHER: the Car Price, Commission Amount and Tax Amount. ======================= TAX AMOUNT Found by : MULTIPLY the Car Price by the Tax Rate. ======================= COMMISSION AMOUNT Found by : MULTIPLY the Car Price by the Commission Rate. ======================= CAR PRICE Found by : FIRST .. ADD 1 to the Markup Rate.. THEN.. MULTIPLY this by the Car Cost.
QUESTION 2: in the TEXTBOX PROVIDED: write the coding that…
QUESTION 2: in the TEXTBOX PROVIDED: write the coding that will “start” the program or main module of the program ================================