CACS204 Object Oriented Programming in Java

Object Oriented Programming in JavaTU Board 2026

Design a Java application for a simple Online Shopping System using object oriented principles. Your program should: a. Create a class 'Product' with attributes productId, name, price, and quantity.…

10

Design a Java application for a simple Online Shopping System using object-oriented principles. Your program should: a. Create a class 'Product' with attributes productId, name, price, and quantity. Include a constructor, getters/setters, and a display() method. b. Create a subclass 'ElectronicProduct' that extends 'Product' and adds a warrantyPeriod attribute. Override the display() method. c. Use an ArrayList to store at least 3 Product/ElectronicProduct objects and display all product details. d. Create and handle a user-defined exception 'InvalidPriceException' if a product is created with a negative price.

A worked answer is on its wayMeanwhile, read the Object Oriented Programming in Java notes for this topic.

Discussion

Loading…

More Object Oriented Programming in Java questions

All Object Oriented Programming in Java old questions