Q5. Identify whether the following code can result in an error or not. Specify the exact statement that is in error and mention the type of error.
int a, b;
Scanner input = new Scanner(System.in);
System.out.println("Enter value of a:");
a = input.nextInt();
System.out.println("Enter value of b:");
b = input.nextInt();
System.out.println(a % b);