1. If m and n are int type variables, what will be the result of the expression m%n when m=-14 and n=-3?A) 4B) 2C) -2D) -42. Consider the following codeif(number>=0) if(number>0) system.out.println("Number is positive");else system.out.println("Number is negative");What will be the output if number is equal to 0?A) Number is negativeB) Number is positiveC) Both A and BD) None of the above3. Consider the following code:char c='a';switch (c){ case 'a'; system.out.println("A"); case 'b'; system.out.println("B"); default; system.out.println("C");} For this code, which of the following statement is true?A) Output will be AB) Output will be A followed by BC) Output will be A, followed by B, and then followed by CD) Code is illegal and therefore will not compile4....