1.
Q11: Click on the method calls of Scanner objects in the following code
Scanner input = new Scanner(System.in); System.out.print("Enter Your Full Name: "); String fullName = input.nextLine(); System.out.print("Enter Your Course Name: "); String courseName = input.nextLine();