9514 1404 393
Answer:
13/80
Explanation:
The product is ...
(1 3/10)×(1/8) = (13/10)×(1/8) = (13×1)/(10×8) = 13/80
Usually the first digit of the vin id’s the country it was built. So technician A would be correct. That’s usually how it is. Hope this helps. Please let me know if this is incorrect
Explanation:
For true Strain:
step 1:
E true = Ln(1 + 0.5 ) = 0.40
Step 2:
E true = Ln(1 + 0.33 ) = 0.29
By single step process:
E true = Ln(1 + 1 ) = 0.69
total strain of step process = 0.40 + 0.29 = 0.69 units
SO TRUE STRAIN IS ADDITIVE.
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:
Here are 2 sense i cant find 4
Explanation:
Levers are used to multiply force, In other words, using a lever gives you greater force or power than the effort you put in.
In a lever, if the distance from the effort to the fulcrum is longer than the distance from the load to the fulcrum, this gives a greater mechanical advantage.