Answer:
Both
Explanation:
Because of water, fuel does not burn completely. This brings about water fumes that are white in color and looks like white smoke. If engine is cold and water is heating, it leads to steam formation like water vapor. The white times are because of not firing properly in the heated engine. Technician A is right.
Blue fine is caused by this scoring. It is also caused by dirty oil. Technician b is right too
Answer:
T = 20.42 N
Explanation:
given data
standard altitude = 30,000 ft
velocity Ca = 500 mph = 0.4 m/s
inlet areas Aa = 7 ft² = 0.65 m²
exit areas Aj = 4.5 ft² = 0.42 m²
velocity at exit Cj = 1600 ft/s = 487.68 m/s
pressure exit
j = 640 lb/ft² = 0.3 bar
solution
we get here thrust of the turbojet that is express as
thrust of the turbojet T = Mg × Cj - Ma × Ca + (
j Aj -
a Ag ) .............1
here Ma = Mg
Ma =
a × Ca Aa = 0.042 kg/s
put value in equation 1 we get
T = 0.042 × (487.68 -0.14) + ( 0.3 × - 0.3 × 0.65 )
T = 20.42 N
Answer:
The objective of a properly proportioned concrete mix are:
- To produce the combination of cementitious material, water, and aggregate that meets the requirements of a particular structure, portion of a structure, or series of structures at least cost.
- To produce concrete of the specified properties.
- To produce a satisfactory of end product, such as beam, column or slab as economically as possible.
Cheers!
Answer: 131.75minutes
Explanation:
First if all, we've to find the density of liquid which will be:
= Specific gravity × Density to pure water
= 0.91 × 8.34lb/gallon
= 7.59lb/gallon
Then, the volume that's required to fill the tank will be:
= Load limit/Density of fluid
= 40000/7.59
= 5270.1gallon
Now, the time taken will be:
= V/F
= 5270.1/40
= 131.75min
It'll take 131.75 minutes to fill the tank in the truck.
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).