Answer: No
Explanation:
Length= 2cm= 20mm
Now meter stick can read to nearest millimeter.
It is given that length is to be measured with a precision of 1% of 20mm= 1/100 * 20= 0.2mm
Since the least count is 1mm of meter stick and precision required is less than that. So, meter stick cannot be used for this, travelling microscope can be used for this as it can read to 0.1mm.
“Thinking about pleasant things to pass the time” would not promote safety in the shop because it would be taking the focus away from important tasks, which in turn decreases safety.
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:
resistance = 2.52 ohms
Explanation:
from the formula
V =IR
Voltage = (current)(resistance)
Resistance =
R=
R= 2.52 ohms