The weight of the specimen in SSD condition is 373.3 cc
<u>Explanation</u>:
a) Apparent specific gravity = 
Where,
A = mass of oven dried test sample in air = 1034 g
B = saturated surface test sample in air = 1048.9 g
C = apparent mass of saturated test sample in water = 975.6 g
apparent specific gravity =
= 
Apparent specific gravity = 2.88
b) Bulk specific gravity 

= 2.76
c) Bulk specific gravity (SSD):


= 2.80
d) Absorption% :


Absorption = 1.44 %
e) Bulk Volume :


= 
YAll don’t tell my cousin I’m hacking her school resources because I got a 0 in a test and she got a 100
Answer:
// Program is written in Java Programming Language
// Comments are used for explanatory purpose
import java.util.*;
public class FlipCoin
{
public static void main(String[] args)
{
// Declare Scanner
Scanner input = new Scanner (System.in);
int flips;
// Prompt to enter number of toss or flips
System.out.print("Number of Flips: ");
flips = input.nextInt();
if (flips > 0)
{
HeadsOrTails();
}
}
}
public static String HeadsOrTails(Random rand)
{
// Simulate the coin tosses.
for (int count = 0; count < flips; count++)
{
rand = new Random();
if (rand.nextInt(2) == 0) {
System.out.println("Tails"); }
else {
System.out.println("Heads"); }
rand = 0;
}
}