The visual part of the application with which users interact is known as the ____________ .

a) event b) platform
c) GUI d) library

c) GUI

Computer Science & Information Technology

You might also like to view...

What you learn about one relational database can be transferred to other relational databases

Indicate whether the statement is true or false

Computer Science & Information Technology

What is the output of the following code?

int x = 10, y = 4; do { x = x – 2; y = y + 4; cout << x << “ “; } while (y <= 16); x = x + 1; cout << x << “ “ << y; a) 8 6 4 2 3 20 b) 8 6 4 5 16 c) 10 8 6 4 5 20 d) none of the above

Computer Science & Information Technology