Home ยป Programming Language (coding)

Programming Language (coding)

In this Category students will find study materials on Programming/ Coding topics. Python, C, C++, Java etc. various programming languages will be discussed here.

Study the following program:

i = 1: 
while True: 
      if i%3 == 0: 
          break 
      print(i)

Answer & Solution:

Correct Option: Option D.

Answer: Invalid syntax

Discussion