Question: Given the following code, what will be the value of finalAmount when it is displayed? public class Order f private int orderNum private double orderAmount
Given the following code, what will be the value of finalAmount when it is displayed? public class Order f private int orderNum private double orderAmount private double orderDiscount public Order(int orderNumber, double orderAmt, double orderDisc) t orderNum-orderNumber orderAmount-orderAmt, orderDiscount-orderDisc public double getOrderAmountO t return orderAmount public double getOrderDiscO ( return orderDiscount public class CustomerOrder f public static void main(Stringll args) ( Order order new Order( 1234, 580.00, 0.1); double final Amount = order. getOrderAmountO-order getOrderAmountO * order getOrderDiscO: System out printf("Final order annourt-S96,.2fn", finalAmount)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
