Q34. find the data type of p, int p = Math.abs(Math.max(91,-123)) .
Answers
Answered by
0
Answer:
int p = Math.abs(Math.max(91,-123));
you have declared the datatype as int and during the calculation no implicit type casting is going to happen,so the datatype of p is int
Explanation:
Answered by
0
Answer:
int p = Math.abs(Math.max(-91, -97);
Similar questions
Math,
3 months ago
Science,
3 months ago
Science,
7 months ago
Social Sciences,
7 months ago
Social Sciences,
11 months ago
Physics,
11 months ago
Chemistry,
11 months ago