Answer:
450,000m = 450km = 4.5E5
32,600,000W = 32.6MW = 3.26E7
59,700,000,000cal = 59.7Gcal = 5.97E10
0.000000083s = 83ns = 8.3E-8
35,000Ω = 35kΩ = 3.5E4
Explanation:
Giga = 1,000,000,000
Mega = 1,000,000
kilo = 1,000
unit = 1
deci = .1
centi = .01
milli = .001
micro = .000001
nano = .0000000001
pico = .000000000001
You should be able to look at these and convert between them in seconds if you want to pursue anything in engineering.
Answer:
The shear plane angle and shear strain are 28.21° and 2.155 respectively.
Explanation:
(a)
Orthogonal cutting is the cutting process in which cutting direction or cutting velocity is perpendicular to the cutting edge of the part surface.
Given:
Rake angle is 12°.
Chip thickness before cut is 0.32 mm.
Chip thickness is 0.65 mm.
Calculation:
Step1
Chip reduction ratio is calculated as follows:
r = 0.4923
Step2
Shear angle is calculated as follows:
Here, is shear plane angle, r is chip reduction ratio and is rake angle.
Substitute all the values in the above equation as follows:
Thus, the shear plane angle is 28.21°.
(b)
Step3
Shears train is calculated as follows:
.
Thus, the shear strain rate is 2.155.
Answer:
3 sec
If you are driving a 30-foot vehicle at 55 mph, how many seconds of following distance should you allow? 30ft truck. = 3 sec. Since the truck is over 40 mph.
Explanation:
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).