Answer:
V = 0.5 m/s
Explanation:
given data:
width of channel = 4 m
depth of channel = 2 m
mass flow rate = 4000 kg/s = 4 m3/s
we know that mass flow rate is given as

Putting all the value to get the velocity of the flow


V = 0.5 m/s
Answer:
Aggressive behavior
Explanation:
Alcohol consumption tends to cause more Aggressive behavior.
The consumption of alcohol plays a more role in our culture but drinking of too much alcohol can cause drowsiness, vomiting, Upset stomach, slurred speech, heart damage, infertile, numbness lung infections, and many more. Also too much alcohol can cause violence, anger and so on in the society.
Answer:
The solution code is written in Java.
- public class Movie {
- private double [][] seats = new double[5][5];
- private double totalSales;
-
- public Movie(){
-
- for(int i= 0; i < this.seats.length; i++){
- for(int j = 0; j < this.seats[i].length; j++){
- this.seats[i][j] = 12;
- }
- }
-
- this.totalSales = 0;
- }
-
- public boolean bookSeat(int i, int j)
- {
- if(this.seats[i][j] != 0){
- this.totalSales += this.seats[i][j];
- this.seats[i][j] = 0;
- return true;
- }else{
- return false;
- }
-
- }
- }
Explanation:
The method, bookSeat(), as required by the question is presented from Line 16 - 26 as part of the public method in a class <em>Movie</em>. This method take row,<em> i</em>, and column,<em> j</em>, as input.
By presuming the seats is an two-dimensional array with all its elements are initialized 12 (Line 7 - 10). This means we presume the movie ticket price for all the seats are $12, for simplicity.
When the<em> bookSeat() </em>method is invoked, it will check if the current price of seats at row-i and column-i is 0. If not, the current price, will be added to the <em>totalSales </em>(Line 19)<em> </em>and then set the price to 0 (Line 20) and return <em>true</em> since the ticket is successfully sold (Line 21). If it has already been sold, return <em>false</em> (Line 23).
Answer:
<em>Electric current is the movement of electrons through a wire. Electric current is measured in amperes (amps) and refers to the number of charges that move through the wire per second. If we want current to flow directly from one point to another, we should use a wire that has as little resistance as possible.</em><em>Current is directly proportional to voltage, inversely proportional to resistance. One of the most common electrical measurements you'll use is the watt, a unit of electrical power: W (Watts) = E (Volts) x I (Amperes). The quantity of electric charge is measured in coulombs.</em><em>They can even pass through bones and teeth. This makes gamma rays very dangerous. They can destroy living cells, produce gene mutations, and cause cancer.</em>
Explanation:
hey mate this is the best answer if you're studying engineering!