Computer Science, asked by komalagrawal15092004, 2 months ago

What is the problem with following code fragments

a. x="marks"+100

print(x)

b. a=5

b=a+500

a="marks" c=a/2 print(c)​

Answers

Answered by Anonymous
1

Explanation:

a = 3 print (a) b = 4 print (b) s = a + b print (s) # Different indentation level for the same block of code ii) name = "Prejith" ...

Similar questions