answersLogoWhite

0

Hey, I forgot to mention that the whole information is that it is a:

ASUS P8Z77-V Pro LGA1155 Z77 DDR3 SLI 3PCI-E16 2PCI-E1 2PCI SATA3 DisplayPort USB3.0 Motherboard

and I wanted to know if I could add

Corsair CML16GX3M4A1600C9B Vengeance Low Profile Blue 16GB 4X4GB DDR3-1600 CL9-9-9-24 Memory Kit

Is it possible to use or do I need smaller GB or an extension Thanks

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Engineering

Memory address register is used to store?

memory addres register is used hold data addresses that refer to the data portion of the memory(by umar farooq.pk) memory addres register is used hold data addresses that refer to the data portion of the memory(by umar farooq.pk)


Why flip flop is called as a basic memory cell?

A flip-flop is called a basic memory cell because its logic operation has the hold mode.


What is the function of cache memory?

Cache memory is used to hold a copy of the data from the most frequently accessed memory locations to minimise calculation time. For example, a CPU's cache will hold this data so that it doesn't have to call data from the RAM for every calculation it makes, and merely draws from its local cache.


What are the functions of DRAM memory?

Main memory is the storage that is directly available to the CPU of a computer and is made3 up of RAM and ROM. RAM's (Random Access Memory) purpose is to hold the data and instructions temporarily which the CPU will process. ROM's (Read Only Memory) function is to hold data necessary for starting up the computer permanently , whose contents cannot be changed by the user.


How the new keyword allocates memory?

The new keyword in programming languages like C++ and Java allocates memory on the heap for an object or data structure. When new is called, it requests a block of memory sufficient to hold the specified type, initializes that memory (if applicable), and returns a pointer or reference to the newly allocated memory. This memory remains allocated until it is explicitly deallocated using delete in C++ or is automatically reclaimed by the garbage collector in languages like Java. Proper memory management is crucial to avoid memory leaks and ensure efficient use of resources.