In the mid-1980s, Microsoft developed the ________ operating system based on a graphical user interface with buttons, textboxes, menus and other graphical elements.

a) Unix
b) Macintosh
c) Linux
d) Windows

d) Windows

Computer Science & Information Technology

You might also like to view...

Show two equivalent ways to set the count member in the ListNode variable to which head points.

1. Given the structure definition: ``` const int STRING_SIZE = 20; struct ListNode { char item[STRING_SIZE]; int count; ListNode * link; }; ListNode *head = new ListNode; ```

Computer Science & Information Technology

What will the output look like?

``` #include using namespace std; int main() { double x; cout<<"\nNumber of bytes is "<

Computer Science & Information Technology