#4 -L2 For the given program, how many times will the printl…

#4 -L2 For the given program, how many times will the println method be executed?   public class ShippingController {     //——————————————     public static void main(String[] args){         printShippingCost(8);        printShippingCost(18);        printShippingCost(25);            }//end main        //——————————————     public static void printShippingCost(double weight) {         if((weight > 0.0) && (weight 5.0) && (weight 10.0) && (weight

#11  – L2 Which condition XXXX will prompt the user to enter…

#11  – L2 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