Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Consider the following method 1.double calculateBill(int usage){ 2. double bill = 0; 3. if (usage > 0){ 4. bill = 40; 5. } 6. if

Consider the following method 1.double calculateBill(int usage){ 2. double bill = 0; 3. if (usage > 0){ 4. bill = 40; 5. } 6. if (usage > 100){ 7. if (usage <= 200){ 8. bill += (usage100) * 0.5; 9. } 10. else{ 11. bill += 50+(usage-200) * 0.1; 12. if (bill >= 100){ 13. bill = bill * 0.9; 14. } 15 } 16. return bill; 17. } Select all the statements that are true Question 3 options: (1,4) is a DU pair for "usage" The use of "bill" in line 13 is a p-use The use of "usage" in line 8 is a c-use (4,8) is a DU pair for "bill" (12,13) is a DU pair for "bill"

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Management Databases And Organizations

Authors: Richard T. Watson

6th Edition

1943153035, 978-1943153039

More Books

Students also viewed these Databases questions