Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started