Computer Science, asked by neethumohan548, 3 months ago

Assign the given values to variables names shown....
x=29.0 ; y=13 ; z=2; p=0.5; q= 12.79; I= 13; j=29.0; k=y-11.
x/y
x//4
y-i+p
y**z

Answers

Answered by anindyaadhikari13
1

Answer:-

Given,

x=29.0,y=13,z=2,p=0.5,q=12.79,l=13,j=29.0,k=y-11

  1. x/y = 29.0/13=2.230769230769231
  2. x//4=29/4=7.0(floor division)
  3. y-l+p=13-13+0.5=0.5
  4. y**z=13^2=169

Similar questions