answersLogoWhite

0

Registers represent the number of memory locations. A 2K memory chip has 2x1024=2048 memory locations. Hence there are 2048 registers in a 2K memory.

User Avatar

Wiki User

11y ago

What else can I help you with?

Continue Learning about Engineering

What is the starting salary of a chemical engineer in Bangladesh?

2k


What is the colour of 2k ohms 2 percent tolerance resistor?

red 2, black 0, red 102, red 2%. 20 x 102 with 2% tol.


What ohms should you have your ohm meter set on for the coil and magneto on your 1998cr125?

For testing the coil and magneto on a 1998 CR125, you should set your ohmmeter to the resistance scale, typically around 200 ohms or 2k ohms, depending on your meter's settings. This range is suitable for measuring the resistance of the ignition coil and magneto. Consult the service manual for specific resistance values to ensure accurate diagnosis. Always ensure the bike is off and disconnected from the battery before testing.


Relationship between bulk modulus and poissons ratio?

K=E/(3*(1-2v)) K: Bulk modulus E: young modulus v: poison's ratio on the other hand: delta V/V=(1-2v)*delta L/L relative change in Volume equals to: (1-2v) * relative change in length.


How do you calculate the time complexity of selection sort?

Suppose (for simplicity) that n = 2k for some entire k. Let T(n) the time used to sort n elements. As we can perform separation and merging in linear time, it takes cn time to perform these two steps, for some constant c. So, T(n) = 2T(n/2) + cn. In the same way: T(n/2) = 2T(n/4) + cn/2, so T(n) = 4T(n/4) + 2cn. Going in this way ... T(n) = 2mT(n/2m) + mcn, and T(n) = 2kT(n/2k) + kcn = nT(1) + cnlog2n = O(n log n). Remember, as n=2k k = log2n! The general case requires a bit more work, but it takes O(n log n) time anyway.