Answer:
its B the person in the comments were right
Explanation:
took an edge test
Oh I got this! I'm a professional photographer! The answer is Leaning to se the background before taking the photograph.
Plz mark brainliest! So glad I could help, and Have an AWESOME day!!!
Answer:
x = int(input ("enter first number: "))
y = int(input ("enter second number: "))
z = int(input ("enter third number: "))
print('%6d %6d %6d' %(x,y,z))
Explanation:
Using python programming language we receive three integers variables (x,y,z) then using string formatting (%6) which specifies that the output should be right justified with a width of 6, the values are printed out.
So this is called a modem we use it to send and receive info over telephone lines
Hope this helps
-scav
Answer:
Not sure what language, but in python a super basic version would be:
val1 = 98
val2 = 87
val3 = 84
val4 = 100
val5 = 94
sum = val1 + val2 + val3 + val4 + val5
avg = sum / 5
print(avg)
Explanation: