Answer:
App that reminds you to drink water
Explanation:
A lot of people are dehydrated because they don't remeber to drink water
Answer:
Processing
Explanation:
The processor of a computer takes inputs runs them through the loaded programs and returns outputs usually to the screen or speakers of the computer.
Answer:
weight_pounds=float(input("Enter the weight in pounds:\n"))#taking input of weight.
height_inches=float(input("Enter the height in inches:\n"))#taking input of thye height.
bmi=(weight_pounds/(height_inches**2))*703#calculating the bmi.
print('The body mass index is '+str(bmi))#printing the result.
Ouput:-
Enter the weight in pounds:
207.8
Enter the height in inches
:
72
The body mass index is 28.163395061728398
Explanation:
The above written program is in python.First I have taken input from the user of the weight in pounds then taking input of the height in inches.Then calculating the bmi and storing it in the variable bmi.Then printing the bmi in the end.
Answer:
1, 3, & 4.
Is the way to do so. Good luck.