Answer:
D.
Explanation:
In automated welding, defined as “welding with equipment that requires only occasional or no observation of the weld, and no manual adjustment of the equipment controls,” the welder's involvement is limited to activating the machine to initiate the welding cycle and observing the weld on an intermittent basis.
Answer and Explanation:
Commutator are used in DC machine commutator is mainly used for the reversing the direction of the current .It is connected to the armature of the DC generator or motor
ADVANTAGE OF COMMUTATOR The main advantage of the commutator in DC motor is to keep keep the direction of the toque always in the same direction by changing the current direction
DISADVANTAGE OF COMMUTATOR : The main disadvantage is due to the friction between the commutator and brushes there is a friction loss.
Answer:
Relative density = 0.545
Degree of saturation = 24.77%
Explanation:
Data provided in the question:
Water content, w = 5%
Bulk unit weight = 18.0 kN/m³
Void ratio in the densest state,
= 0.51
Void ratio in the loosest state,
= 0.87
Now,
Dry density, 

= 17.14 kN/m³
Also,

here, G = Specific gravity = 2.7 for sand

or
e = 0.545
Relative density = 
= 
= 0.902
Also,
Se = wG
here,
S is the degree of saturation
therefore,
S(0.545) = (0.05)()2.7
or
S = 0.2477
or
S = 0.2477 × 100% = 24.77%
Answer: C.) John Herschel
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;
}
}