Following program is the example of. Print(“a”) For x in range(1,5,1): Print(x) Print(“b”) Print(“c”) a. For loop b. While loop c. Both of these d. None of these
Answers
Answered by
0
Explanation:
answer is : c Both Of These...
Because Print (x) and Print (a) are not a variables in programming language....
So that position of print (a) is x in range (1,5,1)
Similar questions