7.5 is the answer for this questio
Answer:
i think 1 or 3
Step-by-step explanation:
Answer:
x=4. Verified, Not wrong.
Step-by-step explanation:
24=9x+4-4x
24 = 5x+4
20-4
5x=20
(divide)
x=4
Answer:
5, 10, 15
Step-by-step explanation:
the increase in the sequence is 5 so since it starts from 0 which you can find out because 25 is the 5th sequence and that means that +2*5 =25 . x=0
0+ 5 = sequence 1
0+ 5+5 = seq 2
0+5+5+5= seq 3
Using pseudocode:
printArray(arr[], integers)
DECLARE integers
integers = SizeOf(arr)
FOR i = 1 to integers // loop from 1 to the number of elements in arr[]
print(i)
print('')
i = i + 1
ENDFOR
END