Computer Science, asked by jaya8467, 6 months ago

What will be the output produced by following code fragment(s)?
first = 2
second = 3
third = first * second
print (first, second, third)
first = first + second + third
third = second * first
print (first, second, third)​

Answers

Answered by veermanav
2

Answer:

2,3,6 11,3,33 //this is the output

Explanation:

You should use println if you wanted to print the line and then get the cursor transfer to next line

Similar questions