What is the result of running this code?public class Values {integer a = Integer.valueOf("1");public static void main(String[] nums) {integer a = Integer.valueOf("2");integer b = Integer.valueOf("3");System.out.println(a + b);}}
What will be the output of the following code snippet?a = 2.19b = 3.999999c = -3.30print(int(a), floor(b), ceil(c), fabs(c))