Answer:
Area of Circle = 78.5398
Surface Area of Sphere = 1.2566 x 10^3 = 1256.6 ft
Volume of Sphere = 33.5103 ft
Explanation:
Please find below the written MatLab script used to solve the problem. I had to define r in each case to solve for the Area of the circle, the surface area and the volume of the Sphere.
r=5; % define r as 5
a=pi*r^2;% calculate the area of the circle
AreaOfCircle=a
r=10; % define r and 10 ft
sa=4*pi*r^2; %Calculate the surface area of the sphere
SphereSurfaceArea=sa
r=2;% define r as 2 ft
vs=(4/3)*pi*r^3;% Calculate the volume of the sphere
VolumeShere=vs
Answer:
Which sentence highlights the best way of site planning?
A group of construction planners are in a discussion over the most suitable plot to construct new buildings. Steven suggests that they should choose the barren stretch of land in the city and construct cluster buildings. James points out that the wetlands will provide them more area for construction. Riley advises that they should not worry about keeping large open spaces while planning building construction.
Explanation:
Answer:
import java.util.Scanner;
public class FindMatchValue {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
final int NUM_VALS = 4;
int[] userValues = new int[NUM_VALS];
int i;
int matchValue;
int numMatches = -99; // Assign numMatches with 0 before your for loop
matchValue = scnr.nextInt();
for (i = 0; i < userValues.length; ++i) {
userValues[i] = scnr.nextInt();
}
/* Your solution goes here */
numMatches = 0;
for (i = 0; i < userValues.length; ++i) {
if(userValues[i] == matchValue) {
numMatches++;
}
}
System.out.println("matchValue: " + matchValue + ", numMatches: " + numMatches);
}
}
Answer:
See attachments for step by step explanation towards getting answer.
Explanation:
Given that;
College Engineering 10+5 pts
When -iron is subjected to an atmosphere of hydrogen gas, the concentration of hydrogen in the iron, CH (in weight percent), is a function of hydrogen pressure, (in MPa), and absolute pH2temperature (T) according to(5.14)Furthermore, the values of D0 and Qd for this diffusion system are 1.4 10-7 m2/s and 13,400 J/mol, respectively. Consider a thin iron membrane 1 mm thick that is at 250C. Compute the diffusion flux through this membrane if the hydrogen pressure on one side of the membrane is 0.15 MPa (1.48 atm), and on the other side 7.5 MPa (74 atm).
See attachlent for complete solving.
Answer:
im not sure but kermeen looks like he has a good answer u can give him brainilest
Explanation: