1 micro gram of Strontium-90 has an activity of
0.0000053 terabecquerels (TBq),
Explanation:
Given information denotes that .,one gram of Strontium-90 has an activity of 5.3 terabecquerels (TBq)
the activity of 1 micro gram is
1 gram = 1,000,000 micro gram has activities of 5.3 terabecquerels
therefore 1 micro gram has the activity of (5.3 ÷ 1,000,000 = 0.0000053 )
= 
Hence ., 1 micro gram of Strontium-90 has an activity of
0.0000053 terabecquerels (TBq),
Answer:
distance = 22.57 ft
superelevation rate = 2%
Explanation:
given data
radius = 2,300-ft
lanes width = 12-ft
no of lane = 2
design speed = 65-mph
solution
we get here sufficient sight distance SSD that is express as
SSD = 1.47 ut +
..............1
here u is speed and t is reaction time i.e 2.5 second and a is here deceleration rate i.e 11.2 ft/s² and g is gravitational force i.e 32.2 ft/s² and G is gradient i.e 0 here
so put here value and we get
SSD = 1.47 × 65 ×2.5 +
solve it we get
SSD = 644 ft
so here minimum distance clear from the inside edge of the inside lane is
Ms = Rv ( 1 -
) .....................2
here Rv is = R - one lane width
Rv = 2300 - 6 = 2294 ft
put value in equation 2 we get
Ms = 2294 ( 1 -
)
solve it we get
Ms = 22.57 ft
and
superelevation rate for the curve will be here as
R =
..................3
here f is coefficient of friction that is 0.10
put here value and we get e
2300 = 
solve it we get
e = 2%
Answer:
<u><em>To answer this question we assumed that the area units and the thickness units are given in inches.</em></u>
The number of atoms of lead required is 1.73x10²³.
Explanation:
To find the number of atoms of lead we need to find first the volume of the plate:

<u>Where</u>:
A: is the surface area = 160
t: is the thickness = 0.002
<u><em>Assuming that the units given above are in inches we proceed to calculate the volume: </em></u>
Now, using the density we can find the mass:

Finally, with the Avogadros number (
) and with the atomic mass (A) we can find the number of atoms (N):
Hence, the number of atoms of lead required is 1.73x10²³.
I hope it helps you!
Answer:
/* C Program to rotate matrix by 90 degrees */
#include<stdio.h>
int main()
{
int matrix[100][100];
int m,n,i,j;
printf("Enter row and columns of matrix: ");
scanf("%d%d",&m,&n);
/* Enter m*n array elements */
printf("Enter matrix elements: \n");
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
scanf("%d",&matrix[i][j]);
}
}
/* matrix after the 90 degrees rotation */
printf("Matrix after 90 degrees roration \n");
for(i=0;i<n;i++)
{
for(j=m-1;j>=0;j--)
{
printf("%d ",matrix[j][i]);
}
printf("\n");
}
return 0;
}
Answer:
Students learn about the fundamental concepts important to fluid power, which includes both pneumatic (gas) and hydraulic (liquid) systems. Both systems contain four basic components: reservoir/receiver, pump/compressor, valve, cylinder.
Explanation: