Answer:
the order higher is 3p79g5t88=yv5379
 
        
             
        
        
        
Answer:
Heater power = 425 watts
Explanation:
Detailed explanation and calculation is shown in the image below 
 
        
             
        
        
        
Answer:
class TriangleNumbers
{
 public static void main (String[] args)
 {
  for (int number = 1; number <= 10; ++number) {
  	int sum = 1;
  	System.out.print("1");
  	for (int summed = 2; summed <= number; ++summed) {
    sum += summed;
    System.out.print(" + " + Integer.toString(summed));
  	}
  	System.out.print(" = " + Integer.toString(sum) + '\n');
  }
 }
}
Explanation:
We need to run the code for each of the 10 lines. Each time we sum  numbers from 1 to n. We start with 1, then add numbers from 2 to n (and print the operation). At the end, we always print the equals sign, the sum and a newline character.
 
        
             
        
        
        
Answer:
   Conductor
Explanation:
Current is carried by a conductor.
__
The purpose of a dielectric and/or insulator is to prevent current flow. An electrostatic field may set up the conditions for current flow, but it carries no current itself.