Write a program for XXX Phones, a provider of cellular phoneservice. Prompt a user for maximum monthly values for talk minutesused, text messages sent, and gigabytes of data used, and thenrecommend the best plan for the customer’s needs. A customer whoneeds fewer than 400 minutes of talk and no text or data shouldaccept Plan A at $29 per month. A customer who needs fewer than 400minutes of talk and any text messages should accept Plan B at $35per month. A customer who needs 400 or more minutes of talk and nodata should accept either Plan C for up to 100 text messages at $45per month or Plan D for 100 text messages or more at $50 per month.A customer who needs any data should accept Plan E for up to 2gigabytes at $59 or Plan F for 2 gigabytes or more at $65. Save thefile as CellPhoneService.java
Again, Don’t forget to create the application/projectCellPhoneServiceTest.java Class that has the mainmethod and an object to use the CellPhoneServiceclass.