Answer: Document findings, actions, and outcomes.
<em># Recieving two coordinate pairs</em>
x1 = int(input("Please provide X1:\t"))
y1 = int(input("Please provide Y1:\t"))
x2 = int(input("Please provide X2:\t"))
y2 = int(input("Please provide Y2:\t"))
<em>
</em>
<em>## Calculations
</em>
<em>
</em>
<em>
</em>
<em># distance formula</em>
xDif = x2 - x1
yDif = y2 - y1
radical = xDif**2 + yDif**2
distance = radical ** (1/2) # meters
<em>## Outputs</em>
if(distance>50):
print("The points are very far apart\n")
elif(distance<5 and distance>0):
print("The points are fairly close\n")
elif(distance==0):
print("These point are the same\n")
<em>#Informing the user of distance between the two coordinate pairs</em>
print("Distance between points:", distance, "meters")
Images are 2 dimensional and need a width and a height to determine the size and resolution of such image
Answer:
The stored program concept is defined as, in the architecture of computer where computer acts as internal store instruction and it is important because has high flexibility and user does not required to execute the instruction again and again. It is basically works on the principle of Von neumann architecture, as in which the instruction and the data are both same logically and can be used to store in the memory.
Answer:
So the first one i think is A. The second is 2, and that i do know
Explanation: