Which of the following describes only the general characteristics of an object?

a. initialization
b. abstraction
c. detailed specification
d. initiation
e. None of these


b. abstraction

Computer Science & Information Technology

You might also like to view...

Given the following function definition

void shift(int& a, int&b) { a=b; b=a; } What is the output after the following function call? int first=0, second=10; shift(first, second); cout << first <<" "<< second << endl; a. 0 10 b. 10 0 c. 0 0 d. 10 10

Computer Science & Information Technology

The Data Link Layer of the OSI model is

a. responsible for transmission of bits b. responsible for routing c. responsible for isolating the lower layers from the upper layers d. responsible for checking for errors

Computer Science & Information Technology

A(n) __________ is generated when a displacement is greater than a segment length.

a) missing-segment fault b) general protection fault c) segment-overflow exception d) segment-protection exception

Computer Science & Information Technology

________ are reentrant interrupt handlers.

a) Softirqs b) Tasklets c) top half interrupt handlers d) none of the above

Computer Science & Information Technology