Answer:
See explaination
Explanation:
In recent times and in the past, so many companies have been dealt with or bankrupted by disaster.
This disasters are in the form of floods, earthquake and tsunami. This has led to many companies across world to have faced problem. As Japan is particularly vulnerable to natural disaster because of its climate and topography let me take example of japan .The tsunami that struck Japan in March this year which has lead to a debt of worth nearly $8 billion due to failed businesses. A total of 341 firms in japan with a combined 6,376 employees has got affected by this disaster.
One of company that hit hard by these disaster is Toyota. Toyota is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. Actually due to flood in thailand toyota has faced a big loss. As flood hit thailand the parts of vehicle which is produced in thailand has stopped . It leads to interruption in the supply chain of some Thailand made components.
This lead to suspension of production as thai made component was unavailable.It has been reported until the situation of thailand will be good toyota plants in Indiana, Kentucky and Ontario, Canada, will be shut down . And production rate at plant in North America will get slow down .This flood leads to a loss of 37500 vehicles .Due to this reason toyota was forced to open its plants in Southeast asian country just to enhance the production rate.Sales of vehicle has also got reduced in thailand . Hence toyota faced a total loss of 1.6 billion dollar.
In Nigeria, due to the insurgency of the Boko Haram, many companies have entirely stopped operations in some regions, this harsh realities leads to massive loss of revenue for such companies.
Answer:
true
Explanation:
shear strain is define as the ratio of change in deformation to the original length perpendicular to the axes of member due to shear stress.
ε = deformation/original length
strain is a unit less quantity but shear stain is generally expressed in radians but it can also be expressed in degree.
Answer:
COP(heat pump) = 2.66
COP(Theoretical maximum) = 14.65
Explanation:
Given:
Q(h) = 200 KW
W = 75 KW
Temperature (T1) = 293 K
Temperature (T2) = 273 K
Find:
COP(heat pump)
COP(Theoretical maximum)
Computation:
COP(heat pump) = Q(h) / W
COP(heat pump) = 200 / 75
COP(heat pump) = 2.66
COP(Theoretical maximum) = T1 / (T1 - T2)
COP(Theoretical maximum) = 293 / (293 - 273)
COP(Theoretical maximum) = 293 / 20
COP(Theoretical maximum) = 14.65
Answer:
the elevation at point X is 2152.72 ft
Explanation:
given data
elev = 2156.77 ft
BS = 2.67 ft
FS = 6.72 ft
solution
first we get here height of instrument that is
H.I = elev + BS ..............1
put here value
H.I = 2156.77 ft + 2.67 ft
H.I = 2159.44 ft
and
Elevation at point (x) will be
point (x) = H.I - FS .............2
point (x) = 2159.44 ft - 6.72 ft
point (x) = 2152.72 ft
Answer:
Check the explanation
Explanation:
Points to consider:
We need to take the input from the user
We need to find the manhatan distance and euclidian using the formula
(x1, y1) and (x2, y2) are the two points
Manhattan:

Euclidian Distance:

Code
#include<stdio.h>
#include<math.h>
struct Point{
int x, y;
};
int manhattan(Point A, Point B){
return abs(A.x - B.x) + abs(A.y- B.y);
}
float euclidean(Point A, Point B){
return sqrt(pow(A.x - B.x, 2) + pow(A.y - B.y, 2));
}
int main(){
struct Point A, B;
printf("Enter x and Y for first point: ");
int x, y;
scanf("%d%d", &x, &y);
A.x = x;
A.y = y;
printf("Enter x and Y for second point: ");
scanf("%d%d", &x, &y);
B.x = x;
B.y = y;
printf("Manhattan Distance: %d\n", manhattan(A, B));
printf("Euclidian Distance: %f\n", euclidean(A, B));
}
Sample output