Math.sqrt:This term refers to a method in Java's Math class that calculates the square root of a given number and returns it as a double value.
Math.random: This term refers to a method in Java's Math class that generates random numbers between 0.0 (inclusive) and 1.0 (exclusive). It helps simulate chance or randomness in programs.
Math.abs: This term refers to a method in Java's Math class that returns the absolute value of its argument, disregarding any negative sign. Useful for finding distances or magnitudes.