A store applies a 15 percent service charge on all items with a price of at least$150. No service charge is otherwise applicable. Which of the following DOES NOTcorrectly compute the service charge?Select one:a.double serviceCharge = 0;if (cost >= 150){serviceCharge = 0.15 * cost;}b.double serviceCharge = 0.15 * cost;if (cost <= 150){serviceCharge = 0;}c.double serviceCharge;if (cost < 150){serviceCharge = 0;}else{serviceCharge = 0.15 * cost;}d.double serviceCharge = 15;if (cost >= 150){serviceCharge = 0.15 * cost;}else{serviceCharge = 0;}