1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Zolol [24]
3 years ago
9

The nuclear reactions resulting from thermal neutron absorption in boron and cadmium are 10B5 + 1 n0 ï  7Li3 + 4He2 113Cd48 + 1

n0 ï  114Cd48 + γ[5 MeV] The microscopic thermal absorption cross sections for B-10 and Cd-113 are 3841 b and 20,600 b respectively. Which of these two materials would be the more effective radiation shield? Explain
Engineering
1 answer:
kirill115 [55]3 years ago
6 0

Solution :

The nuclear reaction for boron is given as :

$^{10}\textrm{B}_5 + ^{1}\textrm{n}_0 \rightarrow ^{7}\textrm{Li}_3 + ^{4}\textrm{He}_2$

And the reaction for Cadmium is :

$^{113}\textrm{Cd}_48 + ^{1}\textrm{n}_0 \rightarrow ^{114}\textrm{Cd}_48 + \gamma [5 \ \textrm{MeV}]$

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.

You might be interested in
Electricity is the flow of electrons from a negatively charged
TiliK225 [7]
Yes.

electric current refers to directional negative-to-positive electrons from one atom to the next. Liquid conductors and gas conductors, electric current refers to electrons and protons flow in the opposite direction.
6 0
1 year ago
An asphalt concrete mixture includes 94% aggregates by weight. The specific gravity of aggregate and asphalt are 2.7 and 1.0, re
riadik2000 [5.3K]

Answer:

The correct solution is "5.74%".

Explanation:

The given values are:

Gravity of aggregate,

G_{agg}=2.7

Gravity of asphalt,

G_{asp}=1.0

Asphalt concrete mixture,

W_{agg}=0.94 \ W_m

We know that,

W_{asp}=W_m-W_{agg}

        =0.06 \ W_m

Now,

The theoretical specific gravity of mix,

⇒ G_t=\frac{W_{agg}+W_{asp}}{\frac{W_{agg}}{G_{agg}} +\frac{W_{asp}}{G_{asp}} }

By putting the values, we get

         =\frac{0.94 \ Wm+0.06 \ Wm}{\frac{0.94 \ Wm}{2.7} +\frac{0.06 \ Wm}{1} }

         =2.45

hence,

The percentage of voids will be:

⇒  %V = \frac{G_t-G_m}{G_t}\times 100

           = \frac{2.45-2.317}{2.45}\times 100

           = \frac{0.133}{2.317}\times 100

           = 5.74 (%)  

8 0
3 years ago
1 // Lab 2 tryIt2A 2 #include 3 using namespace std; 4 5 int main() 6 { int x = 1, y = 3; 7 int X = 2, Y = 4; 8 9 cout <<
padilas [110]

Answer:

Here is the complete program:

#include <iostream>

 using namespace std;    

 int main()

 {  int x = 1, y = 3;  

 int X = 2, Y = 4;  

 cout << "tryIt 2A" <<endl;

   cout << x << y << endl;  

   cout << "x" << "y" << endl;  

   cout << X << " " << Y << endl;

   cout << 2 * x + y << endl;  

   cout << 2 * X + Y << endl;  

   //cout << x + 2*y << endl;  

   cout << "x = ";  

   cout << x;  

   cout << " y = ";  

   cout << y;        

   return 0;

   }

Explanation:

I will explain the code line by line in the comment with each line of code and the output of each cout statement.

  • int x = 1, y = 3;  

This statement assigns value 1 to integer variable x and 3 to int variable y

  • int X = 2, Y = 4;  

This statement assigns value 2 to integer variable X and 4 to int variable Y As C++ is a case sensitive language so variable x and y are different from variables X and Y.

  • cout << "tryIt 2A" <<endl;

This statement has cout which is used to display output on the screen. So the output displayed by this cout statement is:

tryIt2A

  • cout << x << y << endl;  

This statement will print the values stored in x and y variables. So output displayed by cout statement here is 1 and 3. As there is not space or next line specified in the statement so output displayed will look like this:

13

  • cout << "x" << "y" << endl;  

This statement will display x and y but these are not the variable x and y. They are enclosed in double quotation marks so they are treated as strings not variables so the output displayed is:

xy

  • cout << X << " " << Y << endl;

This statement will print the values stored in X and Y variables. So output displayed by cout statement here is 2 and 4. As there is  space " " specified in the statement so 2 and 4 are displayed with a space between them so the output displayed will look like this:

2 4

  • cout << 2 * x + y << endl;  

This statement has an arithmetic operation in which 2 is multiplied by the values stored in variable x and then the result is added by value of y. So  2*1 = 2 and 2 + 3 = 5. So the result produced by this cout statement is:

5

  • cout << 2 * X + Y << endl;  

This will work same as above cout statement but the only difference is that the values of capital X and Y variables are calculated here. So 2 * 2 = 4 and then 4 + 4 = 8. The result produced by this cout statement is:

8

  • //cout << x + 2*y << endl;  

This is a comment because before this statement // is written which is used for single line comment. So compiler ignores comments and will not compile this statement.

  •    cout << "x = ";  

This will display "x = " as it is not variable but it is treated as a line to be displayed on the screen. So cout statement displays:

x =

  • cout << x;

This will print the value stored in x variable as there are no double quotes around x so it is a variable which contains value 1. In the above statement there is no endl so the output of this cout statement is displayed with the output of previous cout statement. So the following line is displayed on screen:

x = 1

  • cout << " y = ";

This will display "y = " as it is not variable but it is treated as a line to be displayed on the screen. In the above statement there is no endl so the output of this cout statement is displayed with the output of previous cout statement. So the following line is displayed on screen

x = 1 y =

  • cout << y;    

This will print the value stored in y variable as there are no double quotes around y so it is a variable which contains value 3. In the above statement there is no endl so the output of this cout statement is displayed with the output of previous cout statement. So the following line is displayed on screen:

x = 1 y = 3

So the output of the entire program along with the program is attached as screenshot.

6 0
4 years ago
The absolute pressure in water at a depth of 9 m is read to be 185 kPa. Determine: a. The local atmospheric pressure b. The abso
ser-zykov [4K]

Answer:

a)Patm=135.95Kpa

b)Pabs=175.91Kpa

Explanation:

the absolute pressure is the sum of the water pressure plus the atmospheric pressure, which means that for point a we have the following equation

Pabs=Pw+Patm(1)

Where

Pabs=absolute pressure

Pw=Water pressure

Patm= atmospheric pressure

Water pressure is calculated with the following equation

Pw=γ.h(2)

where

γ=especific weight of water=9.81KN/M^3

H=depht

A)

Solving using ecuations 1 y 2

Patm=Pabs-Pw

Patm=185-9.81*5=135.95Kpa

B)

Solving using ecuations 1 y 2, and atmospheric pressure

Pabs=0.8x5x9.81+135.95=175.91Kpa

8 0
4 years ago
9.19 Generate Bode magnitude and phase plots (straight-line approximations) for the following voltage transfer functions. (a) H(
Norma-Jean [14]

Answer:

attached below

Explanation:

8 0
3 years ago
Other questions:
  • What are the basic types of heat exchangers?
    9·1 answer
  • What is the magnitude of the maximum stress that exists at the tip of an internal crack having a radius of curvature of 3.5 × 10
    9·1 answer
  • Water at 20 °C is flowing with velocity of 0.5 m/s between two parallel flat plates placed 1 cm apart. Determine the distances f
    5·1 answer
  • Marshall's ruling in Marbury v. Madison is a testament to his strategic political skills for which of the following reasons? Sel
    9·1 answer
  • How often might ergonomic training be offered in the workplace
    10·1 answer
  • Name the ferrous metal that most workshop tools are made from??
    12·2 answers
  • I will Brainliest
    7·2 answers
  • Which of the following identifies three advantages of PLM software?
    15·2 answers
  • How much horse power does a Lamborghini have
    6·2 answers
  • 4. A banking system provides users with several services:
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!