Explanation:
Specific cutting energy:
It the ratio of power required to cut the material to metal removal rate of material.If we take the force required to cut the material is F and velocity of cutting tool is V then cutting power will be the product of force and the cutting tool velocity.
Power P = F x V
Lets take the metal removal rate =MRR
Then the specific energy will be

If we consider that metal removal rate and cutting tool velocity is constant then when we increases the cutting force then specific energy will also increase.
Answer:
- using System;
- public class Program
- {
- public static void Main()
- {
- Console.WriteLine("Enter number of students: ");
- int num = Convert.ToInt32(Console.ReadLine());
- string [] firstName = new string[num];
- string [] lastName = new string[num];
-
- for(int i=0 ; i < num; i++){
- Console.WriteLine("Enter first name: ");
- firstName[i] = Console.ReadLine();
-
- Console.WriteLine("Enter last name: ");
- lastName[i] = Console.ReadLine();
- }
-
- for(int j=0; j < num; j++){
- Console.WriteLine(lastName[j] + "," + firstName[j]);
- }
- }
- }
Explanation:
Firstly, prompt user to enter number of student to be stored (Line 6- 7). Next, create two array, firstName and lastName with num size (Line 8-9).
Create a for-loop to repeat for num times and prompt user to enter first name and last name and then store them in the firstName and lastName array, respectively (Line 11 - 17).
Create another for loop to traverse through the lastName and firstName array and display the last name and first name by following the format given in the question (Line 19 - 21).
Answer:
Machine 2 has a higher process capability index, it would be best considered for purchase.
Explanation:
Process capability index: Cpk= Min [(mean-L spec)/3sd; (U spec-mean)/3sd]
For machine 1, mean= 48mm and L spec= 46 and U spec= 50, Standard deviation sd= 0.7
Cpk= [0.952;0.952]= 0.952
For machine 2, mean= 47 and L spec= 46 and U spec= 50, Standard deviation sd= 0.3
Cpk= [1.111;3.333]= 1.111
It is clearly observed from the calculations above that the Cpk value of machine 2 is higher than that of machine 1.
Since machine 2 has a higher process capability index, it would be best considered for purchase.