Which condition XXXX will prompt the user to enter a value l…
Which condition XXXX will prompt the user to enter a value less than 15, until a value that is less than 15 is actually input? int enteredValue;Scanner scanner = new Scanner(System.in); do { System.out.println(“Enter a number less than 15:”); enteredValue = scanner.nextInt(); } while XXXX