V = pi * r^2 *h
where r is the radius and h is the height of the cylinder
V = pi * 7^2 *4
V = pi* 49*4
pi is approximated by 3.14 or 22/7
V = 22/7 * 49 * 4
V = 616 units ^3
Answer:
g = h/f - d/f
Step-by-step explanation:
Given a <span>graph showing the relationship between daily caffeine consumption and
resting heart rate for some adults.
In the graph, the y-axis is labelled 'resting heart rate (bpm)' while the x-axs is labelled 'total coffee intake (cups)'
From the graph it can be seen that the y-value increases as the x-value increases.
Thus the phrases that describe the
relationship between heart rate and daily intake of caffeine are as follows:
</span>
increasing heart rate and positive correlation
Answer:
Step-by-step explanation:
Count pairs (a, b) whose sum of squares is N (a^2 + b^2 = N)
Given a number N, the task is to count all ‘a’ and ‘b’ that satisfy the condition a^2 + b^2 = N.
Note:- (a, b) and (b, a) are to be considered as two different pairs and (a, a) is also valid and to be considered only one time.
Examples:
Input: N = 10
Output: 2
1^2 + 3^2 = 9
3^2 + 1^2 = 9
Input: N = 8
Output: 1
2^2 + 2^2 = 8