Answer:
All will be Explained below.
Explanation:
1) Under which Condition can a soil be chemically Stabilize.
Answer
a). Plasticity Index :A soil with a high value of plasticity Index is not good for various engineering projects. The introduction of line helps in reducing plasticity due cation exchange reaction.Pozzolanic reaction over time reduces plasticity and increase index strength due to the formation of calcium - silicate hydrate.
Answer:
Contaminated sharps should not be bent, recapped or removed.
Explanation:
Contaminated sharps are defined as "any contaminated object that can penetrate the skin including, but not limited to, needles, scalpels, broken glass, broken capillary tubes and exposed ends of dental wires".
Answer:
Following are the description on the chain surveying:
Explanation:
The checking which is also called a beginning of the test is indeed a line uniting the summit of a triangular with other fixed locations from both sides of a triangle. To verify the overall precision of a framework, the check-line is measured. When assessed mostly on the ground, every length of an examination line should match its height. It also is called a proof line that connects the top of the triangle with any fixed location in the contrary direction. It is utilized for verifying the preciseness of a work.
Explanation:
def checklist(a_list, a_value):// def //used to name a function, the //arguments being passed into the //functions are a_list and a_value
if a_value in list://if statement to
//check if it's in the list or not
print("")//print statement to do
//nothing
else://else statement for if the
//a_value is in a_list
a_list.append(a_value)//this adds
//the value to the list