Answer:
ANSI A sized paper is commonly referred to as Letter and ANSI B as Ledger or Tabloid.
Explanation:
Answer:
The Full details of the answer is attached.
Answer:
No I don't think NASA is a waste of time. I don't think its a waste of time because NASA is exploring what is beyond Earth and its important to know about Space.
Explanation:
Answer:
<u>the thickness required would be 12 inch HMA and granular base layer of 6 inches</u>
Explanation:
structural number = 4.5
stone base course material coefficient = 0.13
hma material layer coefficient = 0.40
drainage coefficient = 0.90
we will use layered analysis procedure to get thickness
D1 >= sN1/a1
when we cross multiply,
sN1 = a1D1 >=sN1
D2 >= -sN2-sN1/a2m2
sN2* + sN1* >= sN2
D3 >= sN3-(sN1*+sN2*)/a2m2
where a1,a2,a3 = layer coefficient
d1 d2 d3 = actual thickness
m2,m3 = coefficient of base
a1 = 0.4
a1 = 0.13
sN = 4.5
m2 = 0.9
D1 >= sN1/a1 = 4.5/0.4
= 11.25
thickness of surface = 12 inches
a1D1 = 0.4x12 = 4.8
we have value of sN2 = 5.5
(5.5 -4.8)/(0.13*0.9)
= 0.7/0.117
= 5.9829 inches
approximately 6 inches
so the pavement will have 12inch HMA surface and 6 inches granular base layer.
Answer:
Explanation:
import java.util.Scanner;
public class NestedLoops {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
int numRows;
int numColumns;
int currentRow;
int currentColumn;
char currentColumnLetter;
numRows = scnr.nextInt();
numColumns = scnr.nextInt();
for (currentRow = 0; currentRow < numRows; currentRow++) {
currentColumnLetter = 'A';
for (currentColumn = 0; currentColumn < numColumns; currentColumn++) {
System.out.print(currentRow + 1);
System.out.print(currentColumnLetter + " ");
currentColumnLetter++;
}
}
System.out.println("");
}
}
2
3
1A 1B 1C 2A 2B 2C
thanks