answersLogoWhite

0

Is potash in pennies

Updated: 10/17/2022
User Avatar

Wiki User

13y ago

Best Answer

No, pennies are made of copper and zinc

Potash is potassium carbonate.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is potash in pennies
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you write a java program in which the user will enter an amount of money as a decimal number and the program will compute how many pennies nickels dimes quarters ones fives tens twenties etc.?

Denomination values should be stored in an integer array where each value is in pennies. So $100 is 10000 pennies: const array<int,10> value = {10000, 5000, 2000, 500, 100, 50, 25, 10, 5, 1}; Create a parallel array with the actual denominations: const array<string,10> denomination = {"hundreds", "fifties", "twenties", "fives", "dollars", "half", "quarters", "dimes", "nickels", "cents"}; Start by multiplying the amount by 100 to determine the actual number of pennies. So $1.23 becomes 123 pennies. Store this value as an integer named pennies. Now work your way through the denominations in sequence: for (int index=0; index<value.size() && pennies; ++index) { int number=pennies/value[index]; if (number) cout<<number<<' '<<denomination[index]<<endl; pennies%=value[index]; }


What alloy is a penny covered in?

Current pennies (since 1982) are copper-plated zinc, so the answer is it's covered in copper. The penny is 2.5% copper, and 97.5% zinc. See the related links for a history of penny composition over the years.


Visual basic code for making change in dollars quarters dimesnickelsand pennies?

intNumOfQuarters = intNumOfPennies \ 25 'calculate number of qaurters' intNumOfDimes = (intNumOfPennies Mod 25) \ 10 'calculate number of dimes' intNumOfNickels = ((intNumOfPennies Mod 25) Mod 10) \ 5 'calculate number of nickels' intNumOfPenniesleft = (((intNumOf


Why is a section of the battery referred to as a lead-acid cell?

Alkaline batteries are named for their highly alkaline electrolyte solution which is potassium hydroxide (aka caustic potash, aka "traditional" lye) mixed with water. Lead-Acid batteries are similarly named in-part after their highly acidic electrolyte solution consisting of 35% sulfuric acid and 65% water.


What are the advantages of implementing a synchronous counter with the 74LS163 integrated circuit versus using discrete flip flops and gates?

The main advantage is that the 74ls193 can count either up or down, where as the 74ls163 can only count down. However, if you are asking about the 74ls93 instead of the 74ls193, the 74ls93 has a divide by 12 counter which the 74ls163 does not, but the 74ls93 isn't a synchronous counter so I assumed you meant the 74ls193.