12 to 14=2
14 to 18=4
18 to 26=8
26 to 42=16
The difference between each number doubles each time.
Therefore the next 2 numbers should be 74 and 138.
16x2=32, 42+32=74
32x2=64, 74+64=138
Answer:
12
Step-by-step explanation:
The difference in feet is equal to 2 so divide 24 by 2
Answer:
The work done is - 200 μJ.
Step-by-step explanation:
The potential difference between two points M and N is UMN = 100 V. A charge q = -2μC moves from M to N, the work of the electric force is:
Potential difference, V = 100 V
Charge, q = - 2 μC
The potential difference is defined as the amount of work done in bringing a unit positive test charge from one point to another in the electric field.
So, W = q V
W = - 2 μC x 100 V = - 200 μJ
<span>This is an java command program.
String 1 is stands for str1= '' forest '' accepted within quote marks.
String 2 is stands for str1= '' school'' accepted within quote marks
the command compareto will cause the output will display as shown below :
str1.compareto(str2); when run this command
we will get the output like this ;
forest
school
==================================================
the model program is like this;
{
String str1 = " forest " ;
String str2 = "school ";
System.out.println();
System.out.println("String 1: " + str1);
System.out.println("String 2: " + str2);</span>