A data type consisting of data members and operations on those members which can be used by a programmer without knowing the implementation details of the data type is called

a. an abstract definition type
b. an available data type
c. an abstract data type
d. a primitive data type

c. an abstract data type

Computer Science & Information Technology

You might also like to view...

A _________________ is a linked list in which the elements are placed in order.

A. sorted linked list B. ordered linked list C. sorted list D. ordered list

Computer Science & Information Technology

The statements int x = 1; int y; y = x++;

a. Assign y the value 2; b. Change the value of x to 2. c. Assign y the value 0; d. Assign y the value 1; e. The ++ is a postfix operator.

Computer Science & Information Technology