Question: Java question What would be the value of bonus after the following executed? int bonus, sales = 85000: char dept = 'S': if (sales >
What would be the value of bonus after the following executed? int bonus, sales = 85000: char dept = 'S': if (sales > 100000) {if (dept == 'R') bonus = 2000: else bonus = 1500;} else if (sales > 75000) {if (dept == 'R') bonus = 1250: else bonus = 1000;} else bonus = 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
