Answer:
b)false
Explanation:
Rolling is a process in which work piece passes through rolls to produce desired out put of the work piece.Rolling is a metal forming process.
We know that friction force is responsible for motion of work piece between rolls.If friction force is so small at the entrance side then work piece will not enter in the forming zone and forming process will not occurs.So the friction force should be high at the entrance side and low at the exit side.
So given statement is wrong.
Answer:
a) 
b) 
Explanation:
From the question we are told that:
Cast-iron block Dimension:
Length
Width 
Feed
Depth 
Diameter 
Number of cutting teeth 
Rotation speed 
Generally the equation for Approach is mathematically given by



Therefore
Effective length is given as



a)
Generally the equation for Machine Time is mathematically given by

Where



Therefore


b)
Generally the equation for Material Removal Rate. is mathematically given by



Answer: hello some parts of your question is missing attached below is the missing information
The radiator of a car is a type of heat exchanger. Hot fluid coming from the car engine, called the coolant, flows through aluminum radiator tubes of thickness d that release heat to the outside air by conduction. The average temperature gradient between the coolant and the outside air is about 130 K/mm . The term ΔT/d is called the temperature gradient which is the temperature difference ΔT between coolant inside and the air outside per unit thickness of tube
answer : Total surface area = 3/2 * area of old radiator
Explanation:
we will use this relation
K = 
change in T = ΔT
therefore New Area ( A ) = 3/2 * area of old radiator
Given that the thermal conductivity is the same in the new and old radiators
Answer:
A wheelbarrow, a bottle opener, and an oar are examples of second class levers
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.