answersLogoWhite

0

Niter (also "nitre") is any one of various minerals, including potassium nitrate, potassium carbonate, sodium carbonate, and sodium nitrate.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What is niter in a sentence?

Niter is a mineral deposit of sodium nitrate found in arid regions.


What is an antonym for niter?

Well, darling, an antonym for niter would be purify. Niter is a mineral used in making gunpowder, so if you want to do the opposite and clean things up, you'd be looking at purifying instead. Hope that clears things up for you, honey.


Is niter an element or compound or mixture?

Niter is potassium nitrate, which is a compound.


What rhymes with mo niter?

Smiter, fighter, writer and lighter


What is the name of Nitrogen's family?

Nitrogen belongs to the family of elements called the "nitrogen family" or "pnictogens." This group includes nitrogen (N), phosphorus (P), arsenic (As), antimony (Sb), and bismuth (Bi).


Is niter deadly?

Niter, also known as potassium nitrate, is not deadly when handled properly. It is commonly used in fertilizers, food preservatives, and fireworks. Ingesting large amounts of niter can be harmful, but it would be difficult to consume a lethal dose through regular use.


Does saltpeter come from an animal?

No - it's refined from a naturally-occurring mineral (niter).


What are 3 major island groups of the Caribbean Islands?

3gi gi fan can co niter


How do you use nitrogen in an sentence?

Nitrogen gets its name from a mineral known as "niter" (potassium nitrate), from which it can be prepared.


How many words can you make from rainforest?

Words that can be made from the letters in "rain forest" are:aaeonafireaftafterairananiseantanteanteriorarearisearisenarosearrestarsonartasasterasternastiratateatoneearearneasteateoneraernerrerrantfaintfairfairestfanfarfarefastfastenfasterfatfatefearfeastfeatfeintfenfernfestfestfetafiefiestafinfinefinerfinestfirfirefirstfistfitfoefoistfontforforeforestfortfortefortiesfosterfretfriarfriesfrontfrontierfrostIifininertinferinfestinsertinsetinterintoioniotairateireironisititsnastiernearneatnestnetnitnitre (niter)nonoisenornosenosiernotnoteoafoaroatoatenofoftoftenononeonsetororateoreorientornateraftrafterrainraiseranrantrarerarestratraterationrearreasonrefrainreinrentresinresortrestrestrainretainretinaretrainriferiftrinseriotrioterriserisenriserriteroanroarroastroasterroeroserosierrosterrotrotesafesaintsanesarisatsatesatinsatireseaseafrontsearseatsenatorseniorsenorsenorasenoritasentserfserrationsetsierrasiftsiftersinsinesirsiresirensitsitarsitesnaresniftersnitsnoresnortsosoarsodasoftsoftensoftersonsoresortsortsortersotstainstairstarstaresteinstenosternstirstonestorestrafestrainstrainerstrifetantartaretarntaroteateartentenorternterraintietiertintinetiretotoetontonetoretraintrainertransfertreasontriotrontsar


Where did saltpeter come from?

Saltpeter is a salt produced by the solution of nitrates with potassium. It is a naturally occurring deposit known as niter. It can also be produced in a laboratory.


How do you Program to calculate the value of pi using Monte Carlo method?

//Program to calculate the value of pi using monte carlo method: /* NADEEM AHMAD MCA 2012 NITISH HOODA M TECH 2012 SHARDA UNIVERSITY GREATER NOIDA*/ #include<stdlib.h> #include<stdio.h> #include<math.h> #include<string.h> #include<conio.h> #define SEED 35791246 void main(int argc, char* argv) { int niter=0; double x,y; int i,count=0; /* # of points in the 1st quadrant of unit circle */ double z; double pi; printf("Enter the number of iterations used to estimate pi: "); scanf("%d",&niter); /* initialize random numbers */ srand(SEED); count=0; for ( i=0; i<niter; i++) { x = (double)rand()/RAND_MAX; y = (double)rand()/RAND_MAX; z = x*x+y*y; if (z<=1) count++; } pi=(double)count/niter*4; printf("# of trials= %d , estimate of pi is %g \n",niter,pi); getch(); }