The operating system model consists of

a: kernel layer, service layer, and user interface layer
b: hardware layer, and software layer
c: multi tasking, time sharing, and multi user
d: system layer, utility layer, and application layer
e: none of the above


a: kernel layer, service layer, and user interface layer

Computer Science & Information Technology

You might also like to view...

What is the output of the following program.?

``` #include using namespace std; struct ShoeType { char style; double price; }; int main() { ShoeType shoe1, shoe2; shoe1.style = 'P'; shoe1.price = 98.98; cout << shoe1.style << " $" << shoe1.price << endl; shoe2 = shoe1; //Put shoe2 on sale! shoe2.price = shoe1.price/2; cout << shoe2.style << " $" << shoe2.price << endl; } ```

Computer Science & Information Technology

The ________ is shown if you chose summary options in the Report Wizard

A) Page Footer B) Page Header C) Report Header D) Report Footer

Computer Science & Information Technology

A term that describes what occurs when a user enters, edits, or deletes data; also occurs when a user opens, uses, or closes a form or report.

What will be an ideal response?

Computer Science & Information Technology

Which HTML element defines the title of a document?

What will be an ideal response?

Computer Science & Information Technology