After lockdown, the government decided to support customers by halving the customer’s electricity bills. a) Write a JAVA program to request for customer’s name, previous and current meter reading (in kwh). Your program should categorize customers into domestic, commercial and industrial based on the quantity of electricity consumed. The categorization should follow: 1. Domestic when less than or equal to 100KWh is consumed 2. Commercial: when more than 100Kwh but less than or equal to 200 Kwh is used 3. Industrial: when more than 200 Kwh is used b) Define a method called Calculator to compute the amount to be paid based on the following consumption pattern, for: 1. Domestic customers, 0.3 GHC per kwh for the first 60kwh and 0.5 GHC for the rest 2. Industrial customers, 0.5 GHC per kwh for the first 120kwh and 0.75 GHC for the rest 3. Commercial customers, 0.9 GHC for the first 201 kwh and 1.5 GHC for the rest. After computing the amount to be paid in “b” above, your program should compute an addition 2% (for rural electrification and street light) based on the amount to be paid and add to the amount to be paid and classify it as total amount to be paid. Your program should then display the result. Your result should include the customer’s name, quantity of electricity consumed, category and total amount to be paid. Explain the logic behind your code
After lockdown, the government decided to support customers by halving the customer’s electricity bills.
a)
Write a JAVA program to request for customer’s name, previous and current meter reading (in kwh). Your program should categorize customers into domestic, commercial and industrial based on the quantity of electricity consumed. The categorization should follow:
1. Domestic when less than or equal to 100KWh is consumed
2. Commercial: when more than 100Kwh but less than or equal to
200 Kwh is used
3. Industrial: when more than 200 Kwh is used
b) Define a method called Calculator to compute the amount to be paid based on the following consumption pattern, for:
1. Domestic customers, 0.3 GHC per kwh for the first 60kwh and 0.5 GHC for the rest
2. Industrial customers, 0.5 GHC per kwh for the first 120kwh and 0.75 GHC for the rest
3. Commercial customers, 0.9 GHC for the first 201 kwh and 1.5 GHC for the rest.
After computing the amount to be paid in “b” above, your program should compute an addition 2% (for rural electrification and street light) based on the amount to be paid and add to the amount to be paid and classify it as total amount to be paid. Your program should then display the result. Your result should include the customer’s name, quantity of electricity consumed, category and total amount to be paid. Explain the logic behind your code
Step by step
Solved in 4 steps with 3 images