JAVA Operators
What will be the output?public class Test{ public static void main(String args[]){ int a = 42; double b = 42.25; System.out.print((a%10)+" "+(b%10)); }}

2 2.5
42 42.5
Compilation Error
2 4.225
4.2 4.225

ANSWER DOWNLOAD EXAMIANS APP