False. Gamma rays are electromagnetic radiation, not particles with charge. They are produced by the decay of atomic nuclei or during high-energy interactions.
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.
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.
True. When you comb your hair, the comb becomes charged by friction due to the triboelectric effect. Since hair is also a good candidate for triboelectric charging, it becomes oppositely charged to the comb and is therefore attracted to it.
False. Electric forces are caused by the interaction of charged particles (like electrons and protons), but friction and contact forces are primarily a result of mechanical interactions between objects.
False. Not all nuclear radiation consists of charged particles. Nuclear radiation can also consist of neutral particles, such as gamma rays.
False. Gamma rays are electromagnetic radiation, not particles with charge. They are produced by the decay of atomic nuclei or during high-energy interactions.
true
false
False. A gamma ray is a high-energy electromagnetic wave rather than a particle. It is neutral and has no charge.
False. When an atom gains electrons, it becomes negatively charged, not positively charged. This is because electrons are negatively charged particles.
False. A proton is positively charged and found in the nucleus of an atom, not in the orbitals where electrons are located.
True. When a surface loses electrons, it becomes positively charged because it has more positively charged protons compared to the negatively charged electrons.
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.
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.
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