Computer Science, asked by pawanimehra2006, 2 months ago

40. Which statement will print the multiplication table of 5?
(1 Point)

for i in range (5,51,5)

for i in range (5,50,2)

for i in range (5,10,50)

for i in range (10, 50, 5)​

Answers

Answered by AltamasFazal
0

Answer:

correct answer is :

for i in range (5,51,5)

Explanation:

This is the correct answer because the starting number is 5 means number will start from 5 and end at 50 . 1 number is subtracted by default, so 51 means 50. and the last number 5 means skipping 5 number.

please follow me

please mark me as brainliest

Answered by manishapatel8158
2

For i in range(5,51,5)

is the answer dear

Similar questions