Which of the following is not true about SkyDrive?

A) Files can be added to SkyDrive by creating a new document through one of the Office Web Apps.
B) When a user sends a friend a file using an instant messaging program or sends a file to another user on a file sharing network, they are performing an upload.
C) SkyDrive users get a 50-GB file storage quota by default, which is a massive amount of storage, especially if you are just storing documents and spreadsheets.
D) If a user were to store documents of around 25 KB each on SkyDrive, that user would be able to keep 1 million documents on his SkyDrive.

C

Computer Science & Information Technology

You might also like to view...

The ____ specifier provides an intermediate level of access, between public and private.

A. protected B. static C. abstract D. strict

Computer Science & Information Technology

How many times will this for loop execute? (Note: i is an int.)

```for(i = 100; i > 0; --i) ``` A. 0, the loop will not execute B. 99 C. 100 D. The loop is not written correctly. It would not compile.

Computer Science & Information Technology