Computer Science, asked by rajeshram22670, 4 months ago

What will be the value of p after the execution of the following statement:
int p = Math.abs(Math.max(-91,-97));​

Answers

Answered by anindyaadhikari13
6

Question:-

➡ Write the value of p after execution of following statements.

Solution:-

➡ p=Math.abs(Math.max(-91,-97))

➡ p=Math.abs(-91)

➡ p=91

Answer:-

➡ The final value of p after execution is 91.

Answered by Oreki
2

After Execution:

p = 91

Similar questions