Computer Science, asked by jaankekyakaroge, 5 months ago

Give the output of the following when num1 = 4,

num2 = 3, num3 = 2

a) num1 += num2 + num3

b) print (num1)

c) num1 = num1 ** (num2 + num3)

d) print (num1)

e) num1 **= num2 + c

f) num1 = '5' + '5'

g) print(num1)

h) print(4.00/(2.0+2.0))

i) num1 = 2+9*((3*12)-8)/10

j) print(num1)​

Answers

Answered by Arjya3
1

Explanation:

a) num1=num1+num2+num3,i.e 4+3+2

b) 9

c) 4*(3+2)

d) 20

e) 4*(20+3)=92

f) '5'+'5'

g) 55

h) 0

i) 2+9*((3*12)-8/)10

j) 27.2

Hope it will help you❤❤❤❤

Similar questions