Computer Science, asked by nikhil715, 8 months ago

what will be the output of the code?​

Attachments:

Answers

Answered by aaryansarat02
0

Here you go

7 ,4,16 this is in python

please Mark as brainlest

Answered by Anonymous
1

Hey Buddy

Here's The Answer

----------------------------------------

CODE :

a, b = 3, 4

c, a = b*4, a+4

print ( a, b, c ).

By first line

=> a = 3

=> b = 4

By second line

=> c = b*4 => c = 4*4

=> c = 16

a = a + 4 => a = 3 + 4

=> a = 7

by third line

OUTPUT

7 4 16

Hope It Helps.

Similar questions