Define a class named MobilePhone with the attributes brand name, model, color and price. Define 3 constructors - the first one is the default constructor, the second one initializes all data members...



WRITE A JAVA PROGRAM



(SEE ATTACHED PHOTO FOR THE PROBLEM AND EXAMPLE)


Define a class named MobilePhone with the attributes brand name, model, color and price.<br>Define 3 constructors - the first one is the default constructor, the second one initializes all<br>data members and the third one gives an initial value to the brand name Apple, model iPhone<br>XR and price to 54250 while allowing color to be initialized by the user. Also, write a display<br>method that prints in this manner:<br>Brand Samsung<br>Model S10<br>Color. Black<br>Price: 53300.0<br>Write a method updatePrice that updates the price of the mobile phone. The method accepts a<br>price. If the value of the price is negative the price must be deducted with the value. But if<br>positive price must be added with the value. It will not allow update of price if will result to a<br>negative value for price.<br>For example:<br>Test<br>Result<br>Mobile Phone phone new Mobile Phone (

Extracted text: Define a class named MobilePhone with the attributes brand name, model, color and price. Define 3 constructors - the first one is the default constructor, the second one initializes all data members and the third one gives an initial value to the brand name Apple, model iPhone XR and price to 54250 while allowing color to be initialized by the user. Also, write a display method that prints in this manner: Brand Samsung Model S10 Color. Black Price: 53300.0 Write a method updatePrice that updates the price of the mobile phone. The method accepts a price. If the value of the price is negative the price must be deducted with the value. But if positive price must be added with the value. It will not allow update of price if will result to a negative value for price. For example: Test Result Mobile Phone phone new Mobile Phone ("Samsung", "S10", "Black", 53300.00): Brand: Sam phone.display(): Model: 510 Color: Bla Price: 533 MobilePhone phone = new MobileFhone (): phone.updateFrice (1200) : phone.display(): Brand: nul Model: mul Color: nul Price: 120
For example:<br>Result<br>lePhone phone - new MobilePhone (

Extracted text: For example: Result lePhone phone - new MobilePhone ("Samsung", "S10", "Black", 53300.00); Brand: Samsung Model: S10 ie.display(); Color: Black Price: 53300.0 lePhone phone - new MobilePhone (); e.updatePrice (1200); Brand: null Model: null e.display(): Color: null Price: 1200.0

Jun 05, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here