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
Answer:
2
Explanation:
The second option is the only one that will work. The last would work but doesn't make the code any shorter.
Joseph Henry in about 1835. He is American and he made something called a relay.
Answer:
360/number of sides
Explanation:
all the exterior angles add up to 360°
so to find each angle mesure, divide the 360 by the number of sides the figure has.