Which of the following is the default directory for User Profiles in Windows 7?
A. C:\Profiles\
B. C:\User Profiles\
C. C:\Users\Profiles\
D. C:\Users\
Answer: D. C:\Users\
Computer Science & Information Technology
You might also like to view...
How can you change the way a bin will display its contents when you double click it in the Project panel?
What will be an ideal response?
Computer Science & Information Technology
Assume that we have a Random object referenced by a variable called generator. Which of the following lines will generate a random number in the range 5-20 and store it in the int variable randNum?
a)``` randNum = generator.nextInt(15) + 5; ``` b)``` randNum = generator.nextInt(15) + 6; ``` c)``` randNum = generator.nextInt(16) + 5; ``` d)``` randNum = generator.nextInt(16) + 6; ``` e) none of the above
Computer Science & Information Technology