The rule of 72 says that if you divide 72 by the interest rate the result is the number of years it takes to double your money.
72/5.6 = 12.86 years. to double your money from $1850 to $3700 it would take 12.86 years, which means you will have $3700 near the end of 1992.
Answer:
print()
Explanation:
print allows you to add words into the script, like this;
script.parent.mouse.touch <u>then</u>
<u>print(¨ḧimenewew¨)</u>
More force because it's the impact
EOCS can be fixed locations, temporary facilities, or virtual structures with staff participating remotely is a true statement.
<h3>What is the Emergency Operations Centers (EOC)?</h3>
Emergency Operations Centers is known to be part of the four NIMS Command and Coordination structures as the EOCs are known to be used in an off site locations where staff are gotten from a lot of agencies that come together to address some imminent kind of threats and hazards.
Therefore saying that EOCS can be fixed locations, temporary facilities, or virtual structures with staff participating remotely is a true statement.
Learn more about EOCS from
brainly.com/question/10794095
#SPJ1
Answer:
A and B have different output:
A output will be 1
B output will be 123
Explanation:
A
X = 0
do x < 3
x = x+1
print x
while
B
X = 0
do x = x+ 1
print x
while x < 3
For statement A the condition statement which suppose to be after "while" is not set therefore the value of x will be printed.
For statement B the condition statement is set "x < 3" in front of "while" thereby result in iteration until the condition is false.
Statement A output will be 1
Statement B output will be 123