Answer: Technical sales engineer
Explanation:
An analysis engineer makes use of data and other technical information in order for him or her to be able to analyze a project plan, and provide necessary solutions.
Technical sales engineers gives their clients the needed support and sales advice for their business to thrive. Technical sales engineers helps their clients in giving technical advices, answering queries, as well as introducing new products.
Design engineers are the engineers that study, and develop ideas that will be used for new products. Sometimes, they also modify systems used in production so that organizational performance can be improved.
Inspection engineers are the engineers that looks at infrastructures and identify the problems affecting them e.g oil pipelines, roads, bridges, etc so that accidents will be prevented.
Consulting engineer is an engineer that deals with the planning, and infrastructures. Their work benefits the society as a whole.
Based on the above explanation, the answer is technical sales engineer.
Compression ring prevents pressurized refrigerant from blowing past the piston into the crankcase is the false statement.
Answer: Option A
<u>Explanation:</u>
Compression rings seal the combustion chamber from crankcase and then transfer heat to the cylinder from the piston. The piston rings are present in an internal combustion engine or steam engine with multi functions. The functions of piston rings are,
- Ensuring the combustion chamber is tightly sealed as to reduce the loss of gas to crankcase
.
- Promoting heat transfer from the piston to cylinder wall
.
- Controlling engine oil consumption
.
- Optimizing the proper quantity of oil between piston and cylinder wall.
The IRS and the U.S Department of the treasury declared that social security recipients are not required to file a simple tax return to receive stimulus payments under the CARES Act.
Explanation:
Due to the impact of corona virus problem, the CARES Act calls for stimulus payment to be sent to Americans based on their gross income.
The Social security recipients are not required to file a tax return and do not take action and they will receive the payments directly to their bank accounts.
The Automatic payments will begin by next week. The eligible taxpayers who filed tax returns for 2019 or 2018 and chose direct deposit for their refund will automatically receive a stimulus payment of $1,200 for individuals or $2,400 for married couples and $500 for each qualifying child.
Answer:
45.3 MN
Explanation:
The forging force at the end of the stroke is given by
F = Y.π.r².[1 + (2μr/3h)]
The final height, h is given as h = 100/2
h = 50 mm
Next, we find the final radius by applying the volume constancy law
volumes before deformation = volumes after deformation
π * 75² * 2 * 100 = π * r² * 2 * 50
75² * 2 = r²
r² = 11250
r = √11250
r = 106 mm
E = In(100/50)
E = 0.69
From the graph flow, we find that Y = 1000 MPa, and thus, we apply the formula
F = Y.π.r².[1 + (2μr/3h)]
F = 1000 * 3.142 * 0.106² * [1 + (2 * 0.2 * 0.106/ 3 * 0.05)]
F = 35.3 * [1 + 0.2826]
F = 35.3 * 1.2826
F = 45.3 MN
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).