Answer:
Sequence will be 2, 14, 98, 686.
Step-by-step explanation:
Since we know in an geometric sequence the terms are in the form are
in which
a = first term
r = common ratio
n = number of term
Now from this expression we can all terms of the sequence
in which a = 2 and common ratio r = 7
The sequence will be

Or 2, 14, 98, 686
So the answer is 2, 14, 98, 686.
34% of 150 is 51.
I hope this helps.
Answer:
16 fits but not evenly
Step-by-step explanation:
16 times 3 equals 48 and 17 times 3 equal is 51 so someone didnt go 3 times.
A + 3A = 120
4A = 120
A = 30
B = 90
Answer:
nElements = 0;
for (int i = 0; i < a2d.length; i++)
nElements += a2d[i].length;
isRectangular = true;
for (int i = 1; i < a2d.length && isRectangular; i++)
if (a2d[i].length != a2d[0].length)
isRectangular = false;
Step-by-step explanation:
2 dimensional array is created and initialize element with 0. and the taking loop for 2 dimensional array .such as
n Elements = 0;
for (int i = 0; i < a2d.length; i++)
n Elements += a2d[i].length;
A boolean variable isRectangular and 2 dimensional array has been created if rectangle is true the take a2d.length and isRectangular less than i and intiliaze i with 1 then increment the i .It will give true value.
If rectangular is false then apply if statement and see if a2d[i] is not equal to a2d[0]
if (a2d[i].length != a2d[0].length)
isRectangular = false;