Multiple Choice
CLASS Employee {
//Variables
String LastName;
String FirstName;
Real HourlyRate;
Integer HoursWorked;
String Job;
Date HireDate;
Real Monthly_Salary;
//Methods
String GetLastName() ;
String GetFirstName() ;
String GetJob() ;
Real GetSalary() ;}
The class Clerk is a subclass of the class Employee
CLASS Clerk: Employee {
//Variables
Real HourlyRate;
Integer HoursWorked;
//Methods
Real GetSalary() ;}
The class Salesperson is a subclass of the class Employee
CLASS Salesperson: Employee {
//Variables
Real Base_Salary;
Real Commission_rate
Real Sales;
//Methods
Real GetSalary() ;}
The class PartClerk is a subclass of the classes Clerk and Salesperson
CLASS PartClerk: Clerk, Salesperson {
//Variables
Real PercentClerk;
//Methods
Real GetPercentClerk() ;}
-If there are two clerks with identical data (same last name,first name,...) :
A) Only one object is created
B) An error occurs when the program tries to create a second object with the same data
C) The program appends a unique identifier at the end of LastName of the second employee
D) Two objects are created, which are differentiated by a unique system-generated identifier
Correct Answer:

Verified
Correct Answer:
Verified
Q57: Which of the following statements does not
Q58: There is only one row with value
Q59: An implicit method of a user-defined type
Q60: In the object relational approach,complex data such
Q61: In SQL:1999,functions and procedures can overcome some
Q63: In object database middleware approach,SQL queries are
Q64: In object-oriented programming,the ability of an object
Q65: To request the execution of a method,a(n)_
Q66: A relational DBMS that has been extended
Q67: An architecture that uses a dedicated server