Answer: you can watch a video on how to solve this question on you tube
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:
5.6 mm
Explanation:
Given that:
A cylindrical tank is required to contain a:
Gage Pressure P = 560 kPa
Allowable normal stress
= 150 MPa = 150000 Kpa.
The inner diameter of the tank = 3 m
In a closed cylinder there exist both the circumferential stress and the longitudinal stress.
Circumferential stress 
Making thickness t the subject; we have


t = 0.0056 m
t = 5.6 mm
For longitudinal stress.



t = 0.0028 mm
t = 2.8 mm
From the above circumferential stress and longitudinal stress; the stress with the higher value will be considered ; which is circumferential stress and it's minimum value with the maximum thickness = 5.6 mm
Answer: Option D, piezoelectric pressure guage
Explanation: Quartz crystal possess a very useful quality in science as they can generate small charges when pressure is applied to them or when they are hit. This property can be harnessed to construct a piezoelectric pressure gauge which would be used to measure and indicate changes in pressure, the quartz crystal releases little voltage each time there is an applied pressure . This device would be able to sense changes in pressure as there would voltage proportional to the applied pressure.