If a database have to be maintained using OOP, to store the details of each employee in a company, which would be the best choice among the following?

🎲 Try a Random Question  |  Total Questions in Quiz: 74  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Object Oriented Programming Practice Test: Classes — practice the complete quiz, review flashcards, or try a random question.

Quiz on abstract class, template class, base class, derived class and class usage. In object-oriented programming (OOP), a class is a template that defines the methods and variables for a specific type of object. A class is a blueprint for creating objects, providing initial values for state (member variables), and implementations of behavior (member functions or methods).  A class can have subclasses that inherit some or all of the class's characteristics. The class becomes the superclass for each subclass.  For example, a cat object may have attributes like breed, age, and fur color. A... Show more

If a database have to be maintained using OOP, to store the details of each employee in a company, which would be the best choice among the following?