Answer:
Option A, B and D
Explanation:
Jack can easily convince boss if he focus around two major aspects of the company
a) Revenue enhancement - Jack must outline the benefits of his research that can be used to improvise customer offerings and hence can be further used to devise more energy-efficient options to customer
b) Reduction in mistakes - Issues such as poor implementation can be avoided with better approach and understanding.
Hence, option A, B and D are correct
Answer:
Explanation:
Given data in question
mean stress = 50 MPa
amplitude stress = 225 MPa
to find out
maximum stress, stress ratio, magnitude of the stress range.
solution
we will find first maximum stress and minimum stress
and stress will be sum of (maximum +minimum stress) / 2
so for stress 50 MPa and 225 MPa
=
+
/ 2
50 =
+
/ 2 ...........1
and
225 =
+
/ 2 ...........2
from eqution 1 and 2 we get maximum and minimum stress
= 275 MPa ............3
and
= -175 MPa ............4
In 2nd part we stress ratio is will compute by ratio of equation 3 and 4
we get ratio =
/
ratio = -175 / 227
ratio = -0.64
now in 3rd part magnitude will calculate by subtracting maximum stress - minimum stress i.e.
magnitude =
-
magnitude = 275 - (-175) = 450 MPa
Answer:
h = 287.1 m
Explanation:
the density of mercury \rho =13570 kg/m3
the atmospheric pressure at the top of the building is

the atmospheric pressure at bottom


we have also

1.18*9.81*h = (100.4 -97.08)*10^3
h = 287.1 m
Answer:
englishhhh pleasee
Explanation:
we dont understand sorry....
Answer:
#include <iostream>
using namespace std;
void PrintPopcornTime(int bagOunces) {
if(bagOunces < 3){
cout << "Too small";
cout << endl;
}
else if(bagOunces > 10){
cout << "Too large";
cout << endl;
}
else{
cout << (6 * bagOunces) << " seconds" << endl;
}
}
int main() {
PrintPopcornTime(7);
return 0;
}
Explanation:
Using C++ to write the program. In line 1 we define the header "#include <iostream>" that defines the standard input/output stream objects. In line 2 "using namespace std" gives me the ability to use classes or functions, From lines 5 to 17 we define the function "PrintPopcornTime(), with int parameter bagOunces" Line 19 we can then call the function using 7 as the argument "PrintPopcornTime(7);" to get the expected output.