Answer:
9.2 V
Explanation:
The RMS value of an AC is the effective value of a varying voltage or current in DC, that is the equivalent value of the AC which produces the same effect as an DC. For example if a motor is supplied by a 9V RMS voltage, it will rotate as if the voltage applied was 9V DC.
The RMS value is given by:
RMS voltage = Peak voltage * 1/√2
Given that the maximum voltage should not exceed 13 V, this means that the peak voltage is 13 V. The maximum RMS voltage is:
RMS voltage = Peak voltage * 1/√2 = 13 * 1/√2 = 9.2 V
Before answering this question, you must know the concept between extensive and intensive property. The extensive property does not depend on the amount of substance (like mass), which is the opposite of intensive properties. From the given choices, the rest are extensive properties except for <em>amount of matter</em>. Hence, that is the answer.
I will assume that big Joe is big Jim. The equation for the momentum is p=m*v, where m is the mass of the body and v is the velocity. Big Joe has a mass m=105 kg and speed v=5.2 m/s. When we input the numbers:
p=105*5.2=546 kg*(m/s).
So big Joe's momentum before the collision is p=546 kg*(m/s).
Answer: The IF clause.
Explanation: This is the IF clause; you can use it as:
IF (something = true) then "something happens"
else "other thing happens"
Some example of it can be, suppose that your program reads a number X that the user inputs, then you can do:
If ( X > 5) then
print: "the number X is bigger than five"
Else
print: "the number X is smaller than five"
Where, of course, the statements depend on the language used, but the "if" clause works almost the same in every language.