Answer:
a. 0.28
Explanation:
Given that
porosity =30%
hydraulic gradient = 0.0014
hydraulic conductivity = 6.9 x 10⁻4 m/s
We know that average linear velocity given as



The velocity in m/d ( 1 m/s =86400 m/d)
v= 0.27 m/d
So the nearest answer is 'a'.
a. 0.28
Answer:
- using System;
- public class Program
- {
- public static void Main()
- {
- Console.WriteLine("Enter number of students: ");
- int num = Convert.ToInt32(Console.ReadLine());
- string [] firstName = new string[num];
- string [] lastName = new string[num];
-
- for(int i=0 ; i < num; i++){
- Console.WriteLine("Enter first name: ");
- firstName[i] = Console.ReadLine();
-
- Console.WriteLine("Enter last name: ");
- lastName[i] = Console.ReadLine();
- }
-
- for(int j=0; j < num; j++){
- Console.WriteLine(lastName[j] + "," + firstName[j]);
- }
- }
- }
Explanation:
Firstly, prompt user to enter number of student to be stored (Line 6- 7). Next, create two array, firstName and lastName with num size (Line 8-9).
Create a for-loop to repeat for num times and prompt user to enter first name and last name and then store them in the firstName and lastName array, respectively (Line 11 - 17).
Create another for loop to traverse through the lastName and firstName array and display the last name and first name by following the format given in the question (Line 19 - 21).
Answer:
5320.6 Pascal
Explanation:
Manometer is a pressure measuring device use to measure gas pressure .
Pressure difference in Manometer is a function of density,gravity and the height difference of the liquid.
Pressure difference = density x acceleration due to gravity x difference in height of liquid
Density of liquid = specific gravity of object x density of water.
Density of water = 997 kg/m^3
Specific gravity of liquid = 1.7
Density of liquid = 997 x 1.7 =1694.9kg/m^3
g= 9.81 m/s^2
h =320mm = 0.320m
Pressure difference = 1694.9 x 9.81 x 0.320 = 5320.6 Pascal
Answer:
The options a)- A blast furnace is used and d)-Coke is used to produce the heat are FALSE.
Explanation:
Aluminium is a chemical element and the most abundant metal present in the Earth's crust. An aluminium ore is called bauxite. Aluminium is extracted from its ore by the process of electrolysis, called the Hall–Héroult process. The extraction of aluminium is an expensive process as it requires large amount of electricity. The bauxite is purified to produce aluminium oxide. Then, aluminium is extracted from the aluminium oxide.
<u>Therefore, the refining of aluminum from its ore does not involve the use of a blast furnace and coke to produce heat.</u>
<u />