Explanation:
Step1
Strength is the maximum stress induces in the material under applied load condition. More the strength more will be ability to sustain load. Strength can be measured from tensile test. It has same unit as stress. Generally ductile material has more strength as compare to brittle material.
Step2
Hardness is the resistance to scratch on the material under given load condition. More the hardness more will be the resistance towards scratching of material. Hardness can be measured by Rockwell or Birnell hardness test. This property of metal is opposite to the strength.
Step3
Toughness is the ability to absorb energy under given loading condition up to its fracture point. It is a type of strain energy that is stored in the metal. Generally ductile metal has more toughness as compare to brittle.
Answer:
From the question, we have two variables
1. userNum1
2. userNum2
And we are to print "userNum1 is negative" if userNum1 is less than 0.
Then Assign userNum2 with 2 if userNum2 is greater than 10.
Otherwise, print "userNum2 is less or equal 10.".
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
// Program starts here
#include<iostream>
using namespace std;
int main ()
{
// Declare variables
int userNum1, userNum2;
// Accept input for these variables
cin>>userNum1, userNum2;
// Condition 1
if(userNum1 < 0)
{
cout<<"userNum1 is negative"<<'\n';
}
// Condition 2
if(userNum2 > 10)
{
userNum2 = 2;
}
// If condition is less than 10
else
{
cout<<"userNum2 is less or equal to 10"<<\n;
}
return 0;
}
// End of Program.
This is a very very difficult one for me, let me get back to you with the proper answer.
The statement that summarizes the data is that the population data should be collected over a much lingers period of time in order rot draw a valid conclusion.
<h3>What is data?</h3>
It should be noted that data simply means the facts or statistics that are put together to get more information about a particular issue.
In this case, the statement that summarizes the data is that the population data should be collected over a much lingers period of time in order rot draw a valid conclusion.
Learn more about data on:
brainly.com/question/4219149
#SPJ1