Select the best way to determine your RAM allocation.

A. Monitor RAM usage in performance monitor and calculate an average of RAM used over 10 random periods.
B. List all programs you would run simultaneously and the amount of RAM each needs and add together.
C. Divide the number of used memory slots by the number of total memory slots.
D. Count the number of available slots on the motherboard.


Ans: B. List all programs you would run simultaneously and the amount of RAM each needs and add together.

Computer Science & Information Technology

You might also like to view...

List and briefly describe four ways you can better protect your privacy and security.

What will be an ideal response?

Computer Science & Information Technology

________ software is used to create, edit, and format text-based documents

Fill in the blank(s) with correct word

Computer Science & Information Technology

Consider the following definition of a recursive method.public static int recFunc(int num){      if (num >= 10)           return 10;      else           return num * recFunc(num + 1);}What is the output of the following statement?System.out.println(recFunc(10));

A. 10 B. 110 C. This statement results in infinite recursion. D. None of these

Computer Science & Information Technology

To save time formatting charts, you can reuse a chart that you created and saved as a custom chart ________

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology