answersLogoWhite

0


Best Answer

A+ "A guide to hardware" by Jean Andrews, pg240. It says if a density is 16x64, the size of the module is 16x(64/8) =16x8=128MB

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: If memory modules density is given as 16 x 64 what is the size of the module?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Computer Science

In software engineering field What is Fan-in and Fan-out with reference to program structure?

Fan-in and Fan-out metrics are structural metrics which measure inter-module complexities. Fan-in: the number of modules that call a given module Fan-out: the numbers of modules that called by a given module


Can a computer have 60 GB of RAM in it?

Yes, it can. However, most systems will prefer memory in powers of two, and are thus more likely to support 64GB than 60GB. Most current consumer computers support less memory, e.g. 32 or 16GB. The memory limit is determined by the motherboard and system BIOS; you will need to check with the specific system's documentation to determine the limit for the given system. Note that not all operating systems are capable of handling memory of this size.


What are the concepts of a computer?

To perform a given task an appropriate program consisting of a list of instructions is stored in the memory. Individual instructions are brought from the memory into the processor, which executes the specified operations. Data to be stored are also stored in the memory.Examples: - Add LOCA, R0This instruction adds the operand at memory location LOCA, to operand in register R0 & places the sum into register.This instruction requires the performance of several steps,First the instruction is fetched from the memory into the processor.The operand at LOCA is fetched and added to the contents of R0Finally the resulting sum is stored in the register R0The preceding add instruction combines a memory access operation with an ALU Operations. In some other type of computers, these two types of operations are performed by separate instructions for performance reasons.Load LOCA, R1 Add R1, R0 Transfers between the memory and the processor are started by sending the address of the memory location to be accessed to the memory unit and issuing the appropriate control signals. The data are then transferred to or from the memory.


How is the quality of pellets identified?

There are industry standards which set quality criteria for wood pellets. They include not only the calorific value but also the density, water content, amount of ash, length and diameter,abrasion resistance and the defined capacity (i.e. the number of pellets in a given volume of space).


Define consistency Of Advantage Of Computer?

In computer science, consistency models are used in distributed systems like distributed shared memory systems or distributed data stores (such as a filesystems, databases, optimistic replication systems or Web caching). The system supports a given model if operations on memory follow specific rules.I hope this helps!

Related questions

Why projects are divided into modules?

Projects are divided into modules to make them easy. A module can be given to a team for faster work.


In software engineering field What is Fan-in and Fan-out with reference to program structure?

Fan-in and Fan-out metrics are structural metrics which measure inter-module complexities. Fan-in: the number of modules that call a given module Fan-out: the numbers of modules that called by a given module


What type of accounting software use in hypermarket?

A Point OF Sale ERP with integrated Inventory & Accounts Modules if needed the full module structure will be given manusemails@gmail.com


What is the use of an input out put module.?

There are multiple uses for an input out put module. Many sound systems, radios, DVD players, VCRs, computers, and TVs, use input out put modules. The input out put module is used to provide the image and sound and transmit each to the given system.


What does CL2 in RAM mean?

CL refers to CAS Latency or Column Address Strobe Latency to give it its full title. Basically the figure indicates the performance of the RAM module, the lower the figure the faster the RAM. In Synchronous DRAM this value is given in clock cycles, with Asynchronous DRAM is is given in nanoseconds. Memory modules contain many memory chips. Each of these has memory portions arranged in rows and columns in a rectangular fashion - a bit like individual pigeon holes, each hole contains a portion of memory holding a small amount of data. In particular the CAS Latency value is the time it takes data in any given portion of the memory chips to become available to the modules output - how quickly the memory module gives up its data to the motherboard interface if you like. There are 4 main measurements in evaluating memory performance, CAS latency is generally used as the standard measurement of a memory modules performance but this is not the full story. Row Address to Column Address delay (the time it takes to read the first piece of data), Row Precharge Time, and Row Active Time all indicate different aspects of the memories performance. It's like using the top speed of a car as the only measurement of its performance, a fast top speed doesn't mean a quick 0 - 60? In general terms these are all referred to the memories "timings", lower values are always better..


How do you find density if mass and density are given?

Strictly speaking if the density is given then you don't need to find it.


Is the Eagle a space craft?

Eagle was the lunar module of Apollo 11 that landed on the moon for the first moon landing. All of the moon landings had a lunar module which could separate from the main craft and land on the moon. It could then take off again and dock with the main craft. The different lunar modules were given different names.


How do you explain the concept of linking and relocation?

Explain the concept of Linking and Relocation. in microprocessor and architectureLinking and RelocationLinking and RelocationIn constructing a program some program modules may be put in the same sourcemodule and assembled together; others may be in different source modules and assembled separately. If they are assembled separately, then the main module, which has the first instruction to be executed, must be terminated by an END statement with the entry point specified, and each of the other modules must be terminated by an END statement with no operand. In any event, the resulting object modules, some of which may be grouped into libraries, must be linked together to form a load module before the program can be executed. In addition to outputting the load module, normally the linker prints a memory map that indicates where the linked object modules will be loaded into memory. After the load module has been created it is loaded into the memory of the computer by the loader and execution begins. Although the I/O can be performed by modules within the program, normally the I/O is done by I/O drivers that are part of the operating system. All that appears in the user's program are references to the I/O drivers that cause the operating system to execute them.The general process for creating and executing a program is illustrated in Fig 5.1. The process for a particular system may not correspond exactly to the one diagrammed in the figure, but the general concepts are the same. The arrowsindicate that corrections may be made after anyone of the major stages.Fig. 5.1: Creation and Execution of a programSegment CombinationIn addition to the linker commands, the ASM-86 assembler provides a means ofregulating the way segments in different object modules are organized by the linker. Sometimes segments with the same name are concatenated and sometimes they are overlaid. Just how the segments with the same name are joined together is determined by modifiers attached to the SEGMENT directives. A SEGMENT directive may have the formSegment name SEGMENT Combine-typewhere the combine-type indicates how the segment is to be located within the load module. Segments that have different names cannot be combined and segments with the same name but no combine-type will cause a linker error. The possible combine-types are:PUBLIC-If the segments in different object modules have the same name and the combine-type PUBLIC, then they are concatenated into a single segment in the load module. The ordering in the concatenation is specified by the linker command.COMMON-If the segments in different object modules have the same name and the combine-type is COMMON, then they are overlaid so that they have the same beginning address. The length of the common segment is that of the longest segment being overlaid.STACK-Ifsegments in different object modules have the same name and the combine-type STACK, then they become one segment whose length is the sum of the lengths of the individually specified segments. In effect, they are combined to form one large stack.AT-The AT combine-type is followed by an expression that evaluates to a constant which is to be the segment address. It allows the user to specify the exact location of the segment in memory..MEMORY-This combine-type causes the segment to be placed at the last of the load module. If more than one segment with the MEMORY combine type is being linked, only the first one will be treated as having the MEMORY combine-type; the others will be overlaid as if they had COMMON combine types.Access to External IdentifiersClearly, object modules that are being linked together must be able to refer to each other. That is, there must be a way for a module to reference at least some of the variables and/or labels in the other modules. If an identifier is defined in an object module, then it is said to be a local (or internal) identifier relative to the module, and if it is not defined in the module but is defined in one of the other modules being linked, then It is referred to as an external (or global) identifier relative to the module.For single-object module programs all identifiers that are referenced must be locally defined or an assembler error will occur. For multiple-module programs, the assembler must be informed in advance of any externally defined identifiers that appear in a module so that it will not treat them as being undefined. Also, in order to permit other object modules to reference some of the identifiers in a given module, the given module must include a list of the identifiers to which it will allow access. Therefore, each module may contain two lists, one containing the external identifiers it references and one containing the locally defined identifiers that can be referred to by other modules. These two lists are implemented by the EXTRN and PUBLIC directives, which have the forms:EXTRN Identifier:Type, . . . , Identifier:TypeandPUBLIC Identifier, . . ., Identifierwhere the identifiers are the variables and labels being declared as external or as being available to other modules. Because the assembler must know the type of all external identifiers before it can generate the proper machine code, a type specifier must be associated with each identifier in an EXTRN statement. For a variable the type may be BYTE, WORD, or DWORD and for a label it may be NEAR or FAR. In the statementINC VAR1if VAR1 is external and is associated with a word, then the module containing the statement must also contain a directive such asEXTRN . . VAR1 :WORD.. . .and the module in which VARl is defined must contain a statement of the formPUBLIC .. ..VAR1….One of the primary tasks of the linker is to verify that every identifier appearing in an EXTRN statement is matched by one in a PUBLIC statement. If this is not the case, then there will be an undefined external reference and a linker error will occur. Fig. 5.2 shows three modules and how the matching is done by the linker while joining them together.Fig. 5.2: Illustration of the matching verified by the linkerAs we have seen, there are two parts to every address, an offset and a segment address. The offsets for the local identifiers can be and are inserted by the assembler, but the offsets for the external identifiers and all segment addresses must be inserted by the linking process. The offsets associated with all external references can be assigned once all of the object modules have been found and their external symbol tables have been examined. The assignment of the segment addresses is called relocation and is done after the king process has determined exactly where each segment is to be put in memory..


What is the unit of volume if mass and density are given?

The answer depends on the units in which the mass and density are given.


7.3 diesel glow plug circut over heating?

to stop glow plug circuit from over heating, you need to replace the glow plug control module these modules cycle on and off at a given time interval these are also not expensive and are easy to change


Finding mass when given density given examlpes?

Density is mass per volume. Take the volume and multiply it by the density. Make sure the units used are the same.


How do you find the mass when the voulme and density is given?

Density = mass/volumeMass = (density) x (volume)Volume = mass/density