Answer: A fly wheel having a mass of 30kg was allowed to swing as pendulum about a knife edge at inner side of the rim as shown in figure.
Explanation:
Answer:
Explained
Explanation:
Cutting tools:
1. Cutting tools can either be single point or multi point.
2. Cutting tools can have variety of material depending on use like ceramics, diamonds, metals, CBN, etc.
3.Cutting tools have definite shapes and geometry.
Abrasive machining tools
1. Abrasive tools are always multi point tools.
2. Abrasive tools composed of abrasives bounded in medium of resin or metal.
3. They do not have definite geometry of shape
Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main ()
{
// Variable declaration
string name;
int numQuestions;
int numCorrect;
double percentage;
//Prompt to enter student's first and last name
cout<<"Enter student's first and last name";
cin>>name; // this line accepts input for variable name
cout<<"Number of question on test"; //Prompt to enter number of questions on test
cin>> numQuestions; //This line accepts Input for Variable numQuestions
cout<<"Number of answers student got correct: "; // Prompt to enter number of correct answers
cin>>numCorrect; //Enter number of correct answers
percentage = numCorrect * 100 / numQuestions; // calculate percentage
cout<<name<<" "<<percentage<<"%"; // print
return 0;
}
Explanation:
The code above calculates the percentage of a student's score in a certain test.
The code is extracted from the Question and completed after extraction.
It's written in C++ programming language
Answer: Incoherent question
Explanation: This is an act of plagiarism at subjecting the tutor to unnecessary stress at answering the purported question.