answersLogoWhite

0


Best Answer

Lead.

It is also in older paints.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What element is harmful to children if they ingest too much of it and is found in older pipes?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is the element iron poisonous?

The human body naturally contains iron in the bloodstream. However, too much of it in the bloodstream can be harmful to you. However, naturally-found iron is not otxic or harmful in any way, unless taken internally. Hope this helped.


Is brown algae helpful or harmful?

No, algae are not harmful unless it dies. (Found this answer on Yahoo.com)


What element is found in your teeth?

The element is found in your teeth is Calcium.


Where was the element silver found?

The element silver was found in the 700 bc.


What is the gas when found in the stratosphere protects us from harmful ultraviolet rays but when found closer to earth in the troposphere can be harmful?

O3 is the gas mentioned above. It is the gas which protects us from harmful UVB rays in the Stratosphere. But when found closer can be harmful.


What alloys can be found in gold?

Gold is an element. No alloys are found in any element.


Was argon found as a element or compound?

Element


An element found in shels?

This element is calcium.


Is radon found as an element or as a compound?

Element.


By whom was the element found?

Which element do you mean?


Where can harmful symbol found?

on a chemical


How do you search for an element in unsorted array?

Let's use integers as an example. int elementToFind; // the element we want to search for int[] elementArray; // the array we want to search through boolean found = false; //boolean flag to indicate if we found the element or not for(int i = 0; i < elementArray.length; ++i) { if(elementArray[i] == elementToFind) { // we found the element at index i // do whatever you want to do with this information found = true; } //if found is still false so it means this element is not found if(!found) { //the element is not found in the array } }