Write the difference between maximum and minimum with example
Answers
Answered by
0
In mathematics, the maximum and minimum of a function are the largest and smallest value that the function takes at a given point.
Example: 2 is maxumum no. whereas 1 is minimum no.
Answered by
0
Example:Math.min(-17,-19)
Answer will be -19 because in integer(-) the highest number is minimum
Math.min(6.3,2.1)
Answer will be 2.1
Math.max(5,9)
Answer will be the maximum value that is 9
Math.max(-6.0,-18.2)
Answer will be -6.0
Hope it helps
Similar questions