Multiple Choice
Assuming that the user inputs a value of 25000 for the pay and 10 for the bonus rate in the following code snippet, what is the output?
Public static void main(String[] args)
{
Scanner in = new Scanner(System.in) ;
System.out.print("Enter the pay: ") ;
Double pay = in.nextDouble() ;
System.out.print("Enter the bonus rate: ") ;
Double bonus = in.nextDouble() ;
System.out.println("The new pay is " +
(pay + pay * (bonus / 100.0) ) ) ;
}
A) The new pay is 25000
B) The new pay is 25100
C) The new pay is 27500
D) The new pay is 30000
Correct Answer:

Verified
Correct Answer:
Verified
Q11: Assuming that the user inputs "Joe" at
Q12: What is the result of the following
Q14: What is the result of the following
Q55: Which statement is true?<br>A)Variables cannot be assigned
Q57: What is wrong with the following code
Q59: Which one of the following statements can
Q106: What is the output of this code
Q110: Which of the following statements is correct
Q121: The problem solving process emphasizes a "first,
Q123: Which one of the following statements can