answersLogoWhite

0

idont

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

What minerals can be detected by a geiger counter?

radioactive materials.


What can minerals that contain uranium or radium be detected by?

Minerals that contain uranium or radium can be detected by methods such as gamma-ray spectroscopy, alpha spectroscopy, or mass spectrometry. These techniques can detect the specific radiation emitted by uranium and radium isotopes present in the minerals.


Example of over the counter drugs?

advil, tylenol, motrin, docolax, any vitamin/minerals, robotussin, mucinex.


Where might you find products made from rocks and minerals in your daliy life?

You might find products made from rocks and minerals in your daily life in items such as smartphones (containing minerals like quartz and copper), buildings (made with materials like granite and marble), and jewelry (crafted from gemstones like diamonds and sapphires).


What can a geiger conter detect in a mineral?

A Geiger counter can detect ionizing radiation emitted from radioactive minerals, such as alpha, beta, and gamma radiation. Common radioactive elements that might be found in minerals include uranium, thorium, and radon. The instrument measures the intensity of radiation, providing information about the mineral's radioactivity levels. This can help identify potentially valuable or hazardous minerals in geological surveys or mining operations.


Turning a while loop to a for loop?

A for loop is just a while loop with a built-in counter. For example, the following programs are functionally identical: While loop: int counter = 0; while(counter < 10) { printf("counter = %d\n", counter); counter++; } For loop: for(int counter = 0; counter < 10; counter++) { printf("counter = %d\n", counter); }


What is difference between decade counter and binary counter?

a counter is a counter which counts the data and the decade counter is the counts the decade ones


Counter strike 1.8?

no! counter strike 1.6 counter strike CZ counter strike Source


Which tool is used to determine the amount of radioactive DNA in a solution?

Geiger Counter


What counter strike has the map office in it?

Counter-Strike 1.6 Counter-Strike: Condition Zero Counter-Strike: Source


How do you test ground to see if it contains ores?

Testing the ground for ores is basically the same as mineral mining. Finding these minerals takes tools specific to the mineral. For instance, you find uranium with a gieger counter or pyrrhotite with a magnetometer.


What is the correct way to add 1 to the count variable?

A counter variable is "incremented" (the step number, 1 in this case, is added to it) in any of the following four ways: $counter = $counter + 1;$counter += 1; //this is shorthand for the above $counter++; //postfix increment operator $counter = 0;echo $counter++;The output would be 0++$counter; //prefix increment operator $counter = 0; echo ++$counter;The output is 1