The "____" relationship relates subclasses to superclasses.

A. is a
B. has a
C. extended
D. implemented

Answer: A

Computer Science & Information Technology

You might also like to view...

To change the width of a cell, you must increase the width of the entire column.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Which of the following declares an array to contain the weekly sales of a group of salespeople for a year?

(use the constant intNumSalesmen for the number of salesmen and 52 for the number of weeks) a. Dim decWeeklySalesTotal(intNumSalesmen - 1, 52 - 1) as Decimal b. Dim decWeeklySalesTotal(intNumSalesmen - 1, 52) as Decimal c. Dim decWeeklySalesTotal(intNumSalesmen - 1, 52 - 1) d. Dim decWeeklySalesTotal(intNumSalesmen, 52) as Decimal

Computer Science & Information Technology