Computer Science, asked by Reetujangra9158, 10 months ago

Evaluate the following expressions,if the value of the variables are p=7,q=9,r=11 p*(q++%4)*(++r)

Answers

Answered by Anonymous
3

Answer:

p=7, q=9, r=11

p* (q++ %4) * (++r)

p × ( (q + 1 ) / 100 × 4) × (r + 1)

7 × ((9 + 1)/100 × 4) × (11 + 1)

7 × ( 0.1 × 4) × 12

7 × 0.4 × 12

= 33.6

Similar questions