A static memory stores its data in: (1) Flip Flops (2) inductors (3) Capacitors (4) Resistors.

1 Answer

Answer :

A static memory stores its data in: Flip Flops.

Related questions

Description : The control unit of a microprocessor A) Stores data in the memory B) Accepts input data from keyboard C) Performs arithmetic/logic function D) None of above

Last Answer : Answer : D

Description : Primary memory stores A) Data alone B) Programs alone C) Results alone D) All of these

Last Answer : Answer : D

Description : Which memory stores large amount of data and the data can not be processed directly by the CPU? A. Secondary or Auxiliary Memory B. Primary or Main Memory C. Both (A) and (B) D. None of the Above

Last Answer : A. Secondary or Auxiliary Memory

Description : Primary Memory stores _______: a) Data b) Programs c) Results d) All of The Above e) None of The Above

Last Answer : d) All of The Above

Description : Primary memory stores --- 1) Data alone 2) Programs alone 3) Results alone 4) All of these

Last Answer : 4) All of these

Description : Which can stores past experiences or some data for short period time. A. Reactive machine B. Limited memory C. Theory of mind D. None of above

Last Answer : B. Limited memory 

Description : Memory that temporarily stores data and that can be erased or changed is known as  a) Cache Memory b) Read Only Memory c) Flash Memory d) Random Access Memory

Last Answer : Memory that temporarily stores data and that can be erased or changed is known as Random Access Memory

Description : Which is a semi conductor memory? A) Dynamic B) Static C) Bubble D) Both a & b

Last Answer : Answer : D

Description : Cache and main memory will not be able to hold their contents when the power is off. They are ________ A. Static B. Dynamic C. Non Volatile D. Volatile

Last Answer : D. Volatile

Description : What is the typical number of bits in a static memory location? A. 1 B. 2 C. 16 D. 8

Last Answer : D. 8

Description : A computer having writable control memory is known as_ a. Static micro programmable b. Dynamic micro programmable c. Botha & b d. None of these

Last Answer : b. Dynamic micro programmable

Description : During program execution content of main memory undergo changes and, but control memory has _ microprogram: a. Static b. Dynamic c. Compile time d. Fixed

Last Answer : d. Fixed

Description : is a semi conductor memory. 1) Dynamic 2) Static 3) Bubble 4) Both a & b

Last Answer : 4) Both a & b

Description : Cache and main memory will lose their contents when the power is off. They are-- 1) Dynamic 2) Faulty 3) Volatile 4) Static

Last Answer : 3) Volatile

Description : When are static variables loaded in memory ?

Last Answer : Ans. They are loaded at runtime when the respective Class is loaded.

Description : _________ is a semi conductor memory. 1 Dynamic 2 Static 3 Bubble 4 Both a & b

Last Answer : 4 Both a & b

Description : Cache and main memory will lose their contents when the power is off. They are-- 1 Dynamic 2 Faulty 3 Volatile 4 Static

Last Answer : 3 Volatile

Description : Which of the following is used for very high speed searching applications ? (1) Flash Memory (2) Content-addressable Memory (3) Dynamic Random Access Memory (4) Static Random Access Memory

Last Answer : Content-addressable Memory

Description : A memory unit stores 2^16 bytes in 32-bit words. How many address bits are necessary in order to retrieve a single word from this memory unit?

Last Answer : Each word is 4 bytes, which occupies 4 consecutive addresses at 16 bits each. The first 14 bits of these addresses will be the same, differing only in the two least significant bits. You only need to specify the first 14 bits, because there are only 2^14 words occupying those 2^16 bytes.

Description : Which of the following memory device stores information such as subscriber’s identification number in GSM? a) Register b) Flip flop c) SIM d) SMS

Last Answer : c) SIM

Description : Which of the following memories stores the most number of bits (A) a 5M×8 memory. (B) a 1M × 16 memory. (C) a 5M × 4 memory. (D) a 1M ×12 memory.

Last Answer : Ans: A 5Mx8 = 5 x 220 x 8 = 40M (max)

Description : The 8O85 assembly language instruction that stores the contents of H and L registers into the memory locations 2050H and 2051H, respectively, is: A) SPHL 2050H B) SPHL 2051H C) SHLD 2050H D) STAX 2050H

Last Answer : The 8O85 assembly language instruction that stores the contents of H and L registers into the memory locations 2050H and 2051H, respectively, is: SHLD 2050H

Description : Calculate coefficient of viscous damper, if the system is critically damped. Consider the following data: 1. Mass of spring mass damper system = 350 kg 2. Static deflection = 2 x 10 -3 m 3. Natural frequency of the system = 60 rad/sec ... /m B. 80 x 10 3 N-s/m C. 42 x 10 3 N-s/m D. None of the above

Last Answer : C. 42 x 10 3 N-s/m

Description : Calculate coefficient of viscous damper, if the system is critically damped. Consider the following data: 1. Mass of spring mass damper system = 350 kg 2. Static deflection = 2 x 10 -3 m 3. Natural frequency of the system = 60 rad/sec ... /m b. 80 x 10 3 N-s/m c. 42 x 10 3 N-s/m d. None of the above

Last Answer : c. 42 x 10 3 N-s/m

Description : Distance Vector Routing is a……... routing algorithm, it consists of a data structure called a ……… A. Static , routing table B. Dynamic, look-up table C. Dynamic, routing table D. Static, look-up table

Last Answer : C. Dynamic, routing table

Description : In dictionary techniques for data compaction, which approach of building dictionary is used for the prior knowledge of probability of the frequently occurring patterns? a. Static Dictionary b. Adaptive Dictionary c. both a and b d. None of the above

Last Answer : a. Static Dictionary

Description : During a merger and acquisition transaction, the ability to find and use good comparable data for a valuation is relatively ____________. a) easy because each successful company within an industry ... depth, product diversity and access to lines of credit seldom match the company being valued

Last Answer : d) difficult because size differential, management depth, product diversity and access to lines of credit seldom match the company being valued

Description : Describe use of static data member.

Last Answer : Use of static data member: Static data member (variable) is used to maintain values common to the entire class. Only one copy of static member is created for the entire class and is shared by all the objects of that class. Its lifetime is the entire program.

Description : Describe use of static data member in C++ with example.

Last Answer : Use of static data member: 1. Static data member is used to maintain values common to the entire class. 2. It is initialized to zero when the first object of its class is created. 3. Only one copy of that member is ... (); test t3; t3.getdata(); test::showcount(); getch(); }

Description : State characteristic of static data member. Explain why static data member must be defined outside the class. 

Last Answer : Characteristics of static data members: 1. It is initialized to zero when the first object of its class is created. No other initialization is permitted. 2. Only one copy of that member is created ... member(s) it is necessary to make static members global and re-declared outside of the class.

Description : List characteristics of static data member and static member function.

Last Answer : Characteristics of static member variable are: i) It is initialized to zero when the first object of its class is created. No other initialization is permitted. ii) Only one copy of that ... the class name with a scope resolution operator instead of object name as follows: class_name::function_name;

Description : With regard to a word processing software, the process of combining static information in a publication together with variable information in a data source to create one merged publication is calle d( A) Electronic mail (B) Data sourcing (C) Mail merge (D) Spam mail

Last Answer : (C) Mail merge 

Description : List at least two examples that show how static electricity can be generated.

Last Answer : Examples of how static electricity can be generated include combing your hair, walking across a carpeted room, or sliding two pieces of plastic across each other.

Description : Define following term: (i) Precision (ii) Drift (iii) Static error (iv) Dead zone

Last Answer : (i) Precision: It is the measure of consistency or repeatability of measurements.   OR The closeness with which the individual measurements are departed or distributed about the average of number ... variable to which instrument does not respond. It is mainly due to friction in the instrument.

Description : State the static and dynamic characteristics of instruments. 

Last Answer : Static characteristics: i. Accuracy ii. Sensitivity iii. Reproducibility iv. Drift v.Static error vi. Dead zone vii. Repeatability viii. Precision ix Linearity  Dynamic characteristics: i. Speed of response ii. Measuring lag iii. Fidelity iv. Dynamic error

Description : Static electricity is produced by _____.

Last Answer : Static electricity is produced by friction

Description : In a static over-current relay, inverse time characteristics are obtained by   (a) A differentiating circuit (b) An integrating circuit (c) A transistor amplifier (d) A transistor switch

Last Answer : B

Last Answer : In motor circuit static frequency changers are used for speed regulation.

Description : I think has something to do with UPS?

Last Answer : Static switches are power semiconductor devices which can be turn on and turn off means which have conducting and non conducting states. Static switches are better than mechanical switches because they are faster and compact but static switches are costlier than mechanical switches.

Last Answer : Because Transformer do not have any moving part hence transformer is called static device.