answersLogoWhite

0

The latin word for silver is argentum, hence why silver is Ag on the Periodic Table. When silver and chlorine are in an aqueous solution together they form a white precipitate, silver chloride AgCl, thus removing chlorine from solution.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How do you call a method from inside the main method?

I assume the question is about Java. How you call a method from inside the main method depends on whether this is an instance method or a static method. To call an instance method, you need to have a valid instance. Say foo is an instance of class Foo, which was created inside the main method. Then to call the instance method implode() use foo.implode() To call the static method bar() of class Foo, use Foo.bar().


Static method can be call object?

yes we can call a static method with object


What do you call a compound containing potassium and chlorine?

A compound containing potassium and chlorine is called potassium chloride.


What is first thing you should do for a chlorine gas victim?

Move the victim to an area with fresh air to prevent further exposure. Call emergency services and provide any necessary first aid, such as removing contaminated clothing and administering CPR if needed.


Are there any elements in chloride?

chloride is actually chlorine. however, since it is occurs in nature as a diatomic atom, meaning having 2 atoms of chlorine, some may call it chloride. usually, one would just call it chlorine gas


Why main method only called by jvm why not any other our own static method?

At the time of developing jvm the development team by default make a only one method call i.e; 'main' method call in the jvm that's why when the call is loading into the jvm the jvm call the main method...and execution was starts..


Can the main method call the other method if it is not defined as static?

No


Can you refer static method from non static method in java?

Yes, it is possible to call a static method from a non-static method. However, it is not possible to call a non-static method from a static method without first having an instance to operate on.


What are the names of compounds in the element chlorine?

The most common compound including chlorine is sodium chloride, or NaCl. Sodium metal explodes when exposed to water, and chlorine is a poisonous gas, so it's a little strange to realize that we have this compound sitting right there on the dinner table; we call it "salt". Another fairly common compound is the mixture of hydrogen with chlorine, which we call "hydrochloric acid"; it is commonly used for cleaning. In a very dilute solution, we call it "bleach".


What do you call it when you remove the sail?

to remove a sail


How is a method called in java?

method header and method body There are two ways to call a method; the choice is based on whether the method returns a value or not.


Differences between declaring a method and calling a method?

Declaring a method is when you code for what the method will perform. When you call a method, you are using the method you have written in another part of the program, (or inside the method if it is recursive).