Question: The key word new creates a new variable in memory creates a new class creates a new Java byte code file creates an object in

The key word new creates a new variable in memory creates a new class creates a new Java byte code file creates an object in memory What would be the value of discountRate after the following statements are executed? double discountRate: char custType = 'B': switch (cust Type) { case 'A': discountRate = 08: break: case 'B': discountRate = 06: case 'C': discountRate = 04: default: discountRate = 0.0: } 0.08 0 06 0 04 0.0 Which Scanner class method reads a String? readString() nextString() getString() nextLine() What would be the value of bonus after the following statements are 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: 2000 1500 1250 1000
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
