Answer:
Following are the responses to the given question:
Explanation:
Answer:
Following are the proving to this question:
Explanation:
using the energy equation for entry and exit value
:
where
L.H.S = R.H.S
Answer:
The radius 4 is maximum in convex surface
Solution :
The nuclear reaction for boron is given as :
And the reaction for Cadmium is :
We know that it is easier that to shield or stop an alpha particle (i.e. He nucli) as they can be stopped or obstructed by only a few centimetres of the material. However, the gamma rays ( γ ) can penetrate through the material to a greater distance. Therefore, we can choose the first one.
Answer:
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main() {
string name[5];
int age[5];
int i,j;
for ( i = 0; i<=4; i++ ) {
cout << "Please enter student's name:";
cin >> name[i];
cout << "Please enter student's age:";
cin >> age[i];
}
for (i=0;i<=4;i++){
cout<<"Age of "<< name[i]<<" is "<<age[i]<<endl;
}
}
Output of above program is displayed in figure attached.