package questions; public class MathPrgm { public static void main(String[] args) { System.out.println(Math.max(5,9)); System.out.println(Math.min(5,9)); System.out.println(Math.sqrt(121)); System.out.println(Math.random()); System.out.println(Math.random() * 101); //this will give random number in between 0 to 100 } }