Answer:

Just draw a line from point D join to point E
The triangle formed DME will be congruent to AMC
Answer:

Explanation:
In electrical terms, is the ratio of time in which a load or circuit is ON compared to the time in which the load or circuit is OFF.
The duty cycle or power cycle, is expressed as a percentage of the activation time. For example, a 70% duty cycle is a signal that 70% of the time is activated and the other 30% disabled. Its equation can be expressed as:

Where:



Here is a picture that will help you understand these concepts.
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:
Rate of heat transfer is 0.56592 kg/hour
Explanation:
Q = kA(T2 - T1)/t
Q is rate of heat transfer in Watts or Joules per second
k is thermal conductivity of the styrofoam = 0.035 W/(mK)
A is area of the cubical picnic chest = 6L^2 = 6(0.5)^2 = 6×0.25 = 1.5 m^2
T1 is initial temperature of ice = 0 °C = 0+273 = 273 K
T2 is temperature of the styrofoam = 25 °C = 25+273 = 298 K
t is thickness of styrofoam = 0.025 m
Q = 0.035×1.5(298-273)/0.025 = 1.3125/0.025 = 52.5 W = 52.5 J/s
Mass flow rate = rate of heat transfer ÷ latent heat of melting of ice = 52.5 J/s ÷ 3.34×10^ 5 J/kg = 1.572×10^-4 kg/s = 1.572×10^-4 kg/s × 3600 s/1 hr = 0.56592 kg/hr