Regarding VNC (Virtual Network Computing or Virtual Network Connection), what statement is accurate?

a. VNC is faster than Remote Desktop, and requires less network bandwidth.
b. VNC is open source, allowing companies to develop their own software based on VNC.
c. VNC uses the Remote Desktop Protocol (RDP).
d. VNC is a standard developed by Microsoft and used by Windows Remote Desktop.

ANSWER: b

Computer Science & Information Technology

You might also like to view...

Match the following Google-related buttons with their description:

I. Google Search button A. takes you directly to the first Web page of your search II. I'm Feeling Lucky search button B. takes you to a Web site previously stored in your browser III. Favorites button C. takes you to an area to log in using your email and password IV. Google Sign in button D. activates the search process V. Create site button E. launches a newly created Google site

Computer Science & Information Technology

In the code shown here, what is the correct array declaration for the array used in FillArray?

```int FindAverage(float numbers[][25]); int main() { //declarations go here int total; total = FillArray(numbers);``` A. int numbers[25]; B. int numbers[25][25]; C. float numbers[25][25]; D. float numbers[25];

Computer Science & Information Technology