Answer:
Correct option: B. 90%
Explanation:
The confidence interval is given by:
![CI = [\bar{x} - z\sigma_{\bar{x}} , \bar{x}+z\sigma_{\bar{x}} ]](https://tex.z-dn.net/?f=CI%20%3D%20%5B%5Cbar%7Bx%7D%20-%20z%5Csigma_%7B%5Cbar%7Bx%7D%7D%20%2C%20%5Cbar%7Bx%7D%2Bz%5Csigma_%7B%5Cbar%7Bx%7D%7D%20%5D)
If
is 190, we can find the value of
:



Now we need to find the value of
:


So the value of z is 1.71.
Looking at the z-table, the z value that gives a z-score of 1.71 is 0.0436
This value will occur in both sides of the normal curve, so the confidence level is:

The nearest CI in the options is 90%, so the correct option is B.
Answer:
#include <iostream>
#include <string>
using namespace std;
bool isPalindrome(string str)
{
int length = str.length();
for (int i = 0; i < length / 2; i++)
{
if (tolower(str[i]) != tolower(str[length - 1 - i]))
return false;
}
return true;
}
int main()
{
string s[6] = {"madam", "abba", "22", "67876", "444244", "trymeuemyrt"};
int i;
for(i=0; i<6; i++)
{
//Testing function
if(isPalindrome(s[i]))
{
cout << "\n " << s[i] << " is a palindrome... \n";
}
else
{
cout << "\n " << s[i] << " is not a palindrome... \n";
}
}
return 0;
}
Answer:
What is the difference Plastic vs elastic deformation
Explanation:
The elastic deformation occurs when a low stress is apply over a metal or metal structure, in this process, the stress' deformation is temporary and it's recover after the stress is removed. In other words, this DOES NOT affects the atoms separation.
The plastic deformation occurs when the stress apply over the metal or metal structure is sufficient to deform the atomic structure making the atoms split, this is a crystal separation on a limited amount of atoms' bonds.
A. I believe, lmk if I’m right
Explanation:
Conduction:
Heat transfer in the conduction occurs due to movement of molecule or we can say that due to movement of electrons in the two end of same the body. Generally, phenomenon of conduction happens in the case of solid . In conduction heat transfer takes places due to direct contact of two bodies.
Convection:
In convection heat transfer of fluid takes place due to density difference .In simple words we can say that heat transfer occur due to motion of fluid.