Answer:
The answer is 200 Meters
Explanation:
At what distance should the warning triangle be placed if a vehicle breaks down on the autobahn?
200 Meters
The Autobahn is the federal controlled-access highway system in Germany. The official German term is Bundesautobahn, which translates as "federal motorway". The literal meaning of the word Bundesautobahn is "Federal Auto Track".
Answer:
Re=100,000⇒Q=275.25 
Re=500,000⇒Q=1,757.77
Re=1,000,000⇒Q=3060.36 
Explanation:
Given:
For air
=25°C ,V=8 m/s
For surface
=179°C
L=2.75 m ,b=3 m
We know that for flat plate
⇒Laminar flow
⇒Turbulent flow
<u> Take Re=100,000:</u>
So this is case of laminar flow

From standard air property table at 25°C
Pr= is 0.71 ,K=26.24
So 
Nu=187.32 (
)
187.32=
⇒h=1.78
heat transfer rate =h
=275.25 
<u> Take Re=500,000:</u>
So this is case of turbulent flow


Nu=1196.18 ⇒h=11.14 
heat transfer rate =h
=11.14(179-25)
= 1,757.77
<u> Take Re=1,000,000:</u>
So this is case of turbulent flow


Nu=2082.6 ⇒h=19.87 
heat transfer rate =h
=19.87(179-25)
= 3060.36 
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).