1⟩ Can ROM be used as stack?
ROM cannot be used as stack because it is not possible to write to ROM.
“x86 Interview Questions and Answers will guide us now that x86 refers to a family of instruction set architectures based on the Intel 8086. x86 architecture is a variable instruction length, primarily two-address CISC design with emphasis on backward compatibility. The instruction set is not typical CISC however, but basically an extended and orthogonalized version of the simple eight bit 8008, 8080, and 8085 architectures. Learn more about x86 with x86 Interview Questions with Answers guide”
ROM cannot be used as stack because it is not possible to write to ROM.
and gate
Stack is a portion of RAM used for saving the content of Program Counter and general purpose registers.
LIFO stacks, also known as "push down" stacks, are the conceptually simplest way of saving information in a temporary storage location for such common computer operations as mathematical expression evaluation and recursive subroutine calling.
30 days.Explanation:Before:One day work = 1 / 20One man?s one day work = 1 / ( 20 * 75)Now:No. f workers = 50One day work = 50 * 1 / ( 20 * 75)The total no. of days required to complete the work = (75 * 20) / 50 = 30.
For D Latch:always@(enable)q<=d;
For D flip flop:always@(posedge clock)q<=d;
A blocking assignment is one in which the statements are executed sequentially, i.e. first statement is executed and variable is assigned a value then second is executed and so on. A non blocking assignment is one in which statements occurs concurrently. Only nonblocking assignments should be used in sequential circuit.
e.g
initial
begin
a=b; //blocking
c<=a; //nonblocking
d=c; //blocking
end
In this example firstly the value of b is assigned to a and this value is assigned to c only after execution of first statement. The second and the third statements are executed simultaneously, i.e. value a is assigned to c and previous value if c is assigned to d.
The address bus is unidirectional because the address information is always given by the Micro Processor to address a memory location of an input / output devices.
High-density n- type Complimentary Metal Oxide Silicon field effect transistor.
The processing speed depends on DATA BUS WIDTH.
RST 6.5 & RST 5.5 are level-triggering interrupts.
The data bus is Bi-directional because the same bus is used for transfer of data between Micro Processor and memory or input / output devices in both the direction.
It has limitations on the size of data. Most Microprocessor does not support floating-point operations.
In Microprocessor more op-codes, few bit handling instructions. But in Microcontroller: fewer op-codes, more bit handling Instructions, and also it is defined as a device that includes micro processor, memory, & input / output signal lines on a single chip.
the basic architectural difference is that microcontroller has an programmable memory while it is not the case with microprocessors.
Latch is a D- type flip-flop used as a temporary storage device controlled by a timing signal, which can store 0 or 1. The primary function of a Latch is data storage. It is used in output devices such as LED, to hold the data for display.
To Store monitor programs.
If for a short period of time circuits goes to some different logic level then it is supposed to have then it is called static hazard.e.g. If the final logic value of output of a given circuit becomes one even if it is supposed to be zero then it is called Static-0 Hazard and vice versa. Dynamic Hazard is the one in which the circuit output goes to some other logic level more than once then finally settling down to some appropriate level.
In primary storage device the storage capacity is limited. It has a volatile memory. In secondary storage device the storage capacity is larger. It is a nonvolatile memory. Primary devices are: RAM / ROM. Secondary devices are: Floppy disc / Hard disk.
Interrupt is a signal send by external device to the processor so as to request the processor to perform a particular work.
A signal informing a program that an event has occurred. When a program receives an interrupt signal, it takes a specified action (which can be to ignore the signal).
Cache Memory is scratch pad of computer.
Static RAM: No refreshing, 6 to 8 MOS transistors are required to form one memory cell, Information stored as voltage level in a flip flop. Dynamic RAM: Refreshed periodically, 3 to 4 transistors are required to form one memory cell, Information is stored as a charge in the gate to substrate capacitance.
Cache memory is a small high-speed memory. It is used for temporary storage of data & information between the main memory and the CPU (center processing unit). The cache memory is only in RAM.
Cache memory is random access memory (RAM) that a computer microprocessor can access more quickly than it can access regular RAM. As the microprocessor processes data, it looks first in the cache memory and if it finds the data there.