Answer:
Explanation:
ADT for an 2-D array:
struct array{
int arr[10];
}arrmain[10];
An application that stores an array with 1000 rows and 1000 columns, where less than 10,000 of the array values are non-zero. The two different implementations for such arrays that would be more space efficient than a standard two-dimensional array implementation requiring one million positions are :
1) struct array{
int *p;
}arr[1000];
2) struct array{
int *p;
}arr[1000];
Answer:
The volume up to cylindrical portion is approx 32355 liters.
Explanation:
The tank is shown in the attached figure below
The volume of the whole tank is is sum of the following volumes
1) Hemisphere top
Volume of hemispherical top of radius 'r' is

2) Cylindrical Middle section
Volume of cylindrical middle portion of radius 'r' and height 'h'

3) Conical bottom
Volume of conical bottom of radius'r' and angle
is

Applying the given values we obtain the volume of the container up to cylinder is
Hence the capacity in liters is 
Answer:
a) 294.34 days
b) Δh = 25.361 cm
Explanation:
Given data:
Thickness of clay layer = 18 ft
initial pressure = 0.75 ton/ft^2
final pressure = 1.5 ton/ft^2
Δp = 0.75 ton/ft^2
eo = 1.12
e1 = 0.98
k = 4.3 * 10^-7 cm/sec
A ) determine how long it will take to reach 70% consolidation
attached below is the detailed solution
T( time in days ) = 294.34 days
B) determine settlement at 70%
attached below is the detailed solution
Δh = 25.361 cm
Check them to see if the cylinder is running rich or lean. This can be determined by looking at the electrodes on the plugs
Hope this helps.