Which of the following is true of Windows 7?

A. with respect to security, more user intervention is required than with Vista
B. hardware requirements are less than for Vista
C. Starter Edition is only available in a 32-bit version
D. Home Basic Edition has full Aero desktop support

Answer: C

Computer Science & Information Technology

You might also like to view...

The syntax of the Call statement is ____.

A. Call procedureName([argumentList]) B. Call procedureName{[parameterList]} C. Call procedureName([argumentList], dataType) D. Call procedureName([argumentList]) As dataType

Computer Science & Information Technology

Given the function prototype:

```double WildCard(char f[]);``` which answer correctly calls the WildCard function? A. float z; char face[10]; z = WildCard(face); B. double z; char face[10]; z = WildCard(face); C. double z; string face; face = WildCard(z); D. int z; int face[10]; face = WildCard(z);

Computer Science & Information Technology