// Object oriented programing
// java
please answer it correct & full. take your time,, no rush please.
Design and code a class vehicle that has the following properties:
1- Date of construction
2-Brand (GM, VW)
3-number of doors
4-number seats
5-horsePower
provide all constructors, accessors and mutators
toString and display
Design a class Bicycle that inherits from Vehicle with parameters of your choice (adequate constructors)
Write a tester to test both classes and most methods in them.