Answer:
Lots of steps and answers. Look at the picture.
Step-by-step explanation:
Answer:
11p+7q
Step-by-step explanation:
16.445 I have no expectation sorry.
The solution would be like this for this specific problem:
Volume of a cylinder = pi * r^2 * h
Volume of a cone = 1/3 * pi * r^2 * h
Total Height = 47
Height of the cone = 12
Height of the cylinder = 35
If the top half is filled with sand, then:
volume (sand) = pi * 4^2 * 36
volume (cone) = 1/3 * pi * 4^2 * 12
Total volume = 1960.353816 cubic millimeters
353816 / (10 * pi) = 62.4 seconds.
It will take 62.4 seconds until all of the sand has dripped to the bottom of the hourglass.
#include <stdio.h> #include <stdlib.h>
// Function to perform division (x / y) of two numbers x and y. // without using division operator in the code. int divide(int x, int y)
{ // handle divisibility by 0. if (y == 0)
{ printf("Error!! Divisible by 0"); exit(1);
} // store sign of the result.
int sign = 1; if (x * y < 0)