Answer:
Math and Computer Skills. A qualified engineer should be good at math, at least through the level of calculus and trigonometry, and understand the importance of following the data when making design decisions.
Organization and Attention to Detail.
Curiosity.
Creativity.
Critical Thinking.
Intuition.
Explanation:
Answer:
John should detail his Scrum Master.
Explanation:
The Team Lead or Scrum Master coordinates the tasks of individual team members and supports the progress of the team. The Scrum Master usually receives instructions from the Product Owner and then ensures that the tasks are performed accordingly. She also coaches the Development Team and works with the Product Owner to carry out daily development activities. She also drives the Scrum Values and Principles, ensuring that the team members understand and practice them.
Answer:
1.2727 stokes
Explanation:
specific gravity of fluid A = 1.65
Dynamic viscosity = 210 centipoise
<u>Calculate the kinematic viscosity of Fluid A </u>
First step : determine the density of fluid A
Pa = Pw * Specific gravity = 1000 * 1.65 = 1650 kg/m^3
next : convert dynamic viscosity to kg/m-s
210 centipoise = 0.21 kg/m-s
Kinetic viscosity of Fluid A = dynamic viscosity / density of fluid A
= 0.21 / 1650 = 1.2727 * 10^-4 m^2/sec
Convert to stokes = 1.2727 stokes
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:
COP = 3.828
W' = 39.18 Kw
Explanation:
From the table A-11 i attached, we can find the entropy for the state 1 at -20°C.
h1 = 238.43 KJ/Kg
s1 = 0.94575 KJ/Kg.K
From table A-12 attached we can do the same for states 3 and 4 but just enthalpy at 800 KPa.
h3 = h4 = hf = 95.47 KJ/Kg
For state 2, we can calculate the enthalpy from table A-13 attached using interpolation at 800 KPa and the condition s2 = s1. We have;
h2 = 275.75 KJ/Kg
The power would be determined from the energy balance in state 1-2 where the mass flow rate will be expressed through the energy balance in state 4-1.
W' = m'(h2 - h1)
W' = Q'_L((h2 - h1)/(h1 - h4))
Where Q'_L = 150 kW
Plugging in the relevant values, we have;
W' = 150((275.75 - 238.43)/(238.43 - 95.47))
W' = 39.18 Kw
Formula foe COP is;
COP = Q'_L/W'
COP = 150/39.18
COP = 3.828