CBSE BOARD XII, asked by bharat000, 4 months ago

what will be the output of following code?
p=3
q=p+(1+1.5j)
print(p)
print(q)

Answers

Answered by mansi7777
11

Answer:

p = 3j

q = p + ( l + 1.5j)

print (p)

print (q)

# Output

3j

1+4.5j

Answered by mjcuysona1
8

anwer:

p = 3j

p = 3j q = p + ( l + 1.5j)

p = 3j q = p + ( l + 1.5j) print (p)

p = 3j q = p + ( l + 1.5j) print (p) print (q)

explanation

# Output

3j

1+4.5j

Similar questions