answersLogoWhite

0


Best Answer

False. Gamma rays are photons (light pieces), and have zero charge.

User Avatar

Wiki User

15y ago
This answer is:
User Avatar
More answers
User Avatar

AnswerBot

5mo ago

False. Gamma rays are neutral, meaning they have no charge. They are a form of high-energy electromagnetic radiation that does not carry an electric charge.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: True or false gamma rays are negitively charged?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

3 All nuclear radiation consists of charged particles true or false?

False. Not all nuclear radiation consists of charged particles. Nuclear radiation can also consist of neutral particles, such as gamma rays.


A gamma ray is a very high speed particle with no charge. True or false?

False. Gamma rays are electromagnetic radiation, not particles with charge. They are produced by the decay of atomic nuclei or during high-energy interactions.


Can you be charged with a criminal penalty fo violating the privacy act true or false?

true


A person charged with a felony crime will first appear in a lower court true or false?

false


Is it true or false that a gamma ray is a very high-speed particle with no charge?

False. A gamma ray is a high-energy electromagnetic wave rather than a particle. It is neutral and has no charge.


When an atom gains electrons it becomes positively charged true or false?

False. When an atom gains electrons, it becomes negatively charged, not positively charged. This is because electrons are negatively charged particles.


True or false A Proton is positively charged and found in the orbitals?

False. A proton is positively charged and found in the nucleus of an atom, not in the orbitals where electrons are located.


True or false a surface that loses electrons becomes positively charged?

True. When a surface loses electrons, it becomes positively charged because it has more positively charged protons compared to the negatively charged electrons.


when There is no requirement to take action to identify and discipline those responsible for the unauthorized disclosure of Controlled Unclassified Information?

False


When the distance from a charged particle decreases the strength of the electric field true or false?

True. The strength of the electric field created by a charged particle is inversely proportional to the square of the distance from the particle. As the distance decreases, the electric field strength increases.


Is The greater the distance from a charged object the stronger the electric field True or false?

False. The strength of an electric field weakens with distance from a charged object. The field strength is inversely proportional to the square of the distance from the object.


What is the result of True AND False OR True?

True AND False OR True evaluates to True. IT seems like it does not matter which is evaluated first as: (True AND False) OR True = False OR True = True True AND (False OR True) = True AND True = True But, it does matter as with False AND False OR True: (False AND False) OR True = False OR True = True False AND (False OR True) = False AND True = False and True OR False AND False: (True OR False) AND False = True AND False = False True OR (False AND False) = True OR False = True Evaluated left to right gives a different answer if the operators are reversed (as can be seen above), so AND and OR need an order of evaluation. AND can be replaced by multiply, OR by add, and BODMAS says multiply is evaluated before add; thus AND should be evaluated before OR - the C programming language follows this convention. This makes the original question: True AND False OR True = (True AND False) OR True = False OR True = True