Answer:
471 days
Explanation:
Capacity of Carvins Cove water reservoir = 3.2 billion gallons i.e. 3.2 x 10˄9 gallons
As,
1 gallon = 0.133 cubic feet (cf)
Therefore,
Capacity of Carvins Cove water reservoir in cf = 3.2 x 10˄9 x 0.133
= 4.28 x 10˄8
Applying Mass balance i.e
Accumulation = Mass In - Mass out (Eq. 01)
Here
Mass In = 0.5 cfs
Mass out = 11 cfs
Putting values in (Eq. 01)
Accumulation = 0.5 - 11
= - 10.5 cfs
Negative accumulation shows that reservoir is depleting i.e. at a rate of 10.5 cubic feet per second.
Converting depletion of reservoir in cubic feet per hour = 10.5 x 3600
= 37,800
Converting depletion of reservoir in cubic feet per day = 37, 800 x 24
= 907,200
i.e. 907,200 cubic feet volume is being depleted in days = 1 day
1 cubic feet volume is being depleted in days = 1/907,200 day
4.28 x 10˄8 cubic feet volume will deplete in days = (4.28 x 10˄8) x 1/907,200
= 471 Days.
Hence in case of continuous drought reservoir will last for 471 days before dry-up.
Tempo decides the speed at which the music is played.
<u>Explanation:</u>
The Tempo of a bit of music decides the speed at which it is played, and is estimated in beats per minute (BPM). The 'beat' is dictated when mark of the piece, so 100 BPM in 4/4 compares to 100 quarter notes in a single moment.
A quick tempo, prestissimo, has somewhere in the range of 200 and 208 beats for each moment, presto has 168 to 200 beats for every moment, allegro has somewhere in the range of 120 and 168 beats for every moment, moderato has 108 to 120 beats for every moment, moderately slow and even has 76 to 108, adagio has 66 to 76, larghetto has 60 to 66, and largo, the slowest rhythm, has 40 to 60.
Answer:
a)Δs = 834 mm
b)V=1122 mm/s

Explanation:
Given that

a)
When t= 2 s


s= 114 mm
At t= 4 s


s= 948 mm
So the displacement between 2 s to 4 s
Δs = 948 - 114 mm
Δs = 834 mm
b)
We know that velocity V


At t= 5 s


V=1122 mm/s
We know that acceleration a


a= 90 t
a = 90 x 5

Answer:
I think true
Explanation:
Well I mean...we cant see the future. Certain things will be achieveable in different ganerations like going on mars
Answer:
Java program explained below
Explanation:
FindSpecialNumber.java
import java.util.Scanner;
public class FindSpecialNumber {
public static void main(String[] args) {
//Declaring variable
int number;
/*
* Creating an Scanner class object which is used to get the inputs
* entered by the user
*/
Scanner sc = new Scanner(System.in);
//getting the input entered by the user
System.out.print("Enter a number :");
number = sc.nextInt();
/* Based on user entered number
* check whether it is special number or not
*/
if (number == -99 || number == 0 || number == 44) {
System.out.println("Special Number");
} else {
System.out.println("Not Special Number");
}
}
}
_______________
Output#1:
Enter a number :-99
Special Number
Output#2:
Enter a number :49
Not Special Number