x86

  Home  Computer Hardware  x86


“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”



28 X86 Questions And Answers

3⟩ What is stack?

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.

 179 views

4⟩ It was calculated that 75 men could complete a piece of work in 20 days. When work was scheduled to commence, it was found necessary to send 25 men to another project. How much longer will it take to complete the work?

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.

 234 views

6⟩ What are the blocking and nonblocking assignments in Verilog and which is preferred in Sequential circuits?

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.

 219 views

7⟩ Is the address bus unidirectional?

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.

 190 views

8⟩ Define HCMOS?

High-density n- type Complimentary Metal Oxide Silicon field effect transistor.

 175 views

11⟩ Is the data bus is Bi-directional?

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.

 188 views

13⟩ What is the difference between microprocessor and microcontroller?

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.

 200 views

14⟩ What is meant by LATCH?

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.

 187 views

15⟩ What are the static and dynamic hazards in logic circuits?

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.

 182 views

17⟩ What is interrupt?

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).

 189 views

19⟩ Difference between static and dynamic RAM?

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.

 181 views

20⟩ What is cache memory?

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.

 193 views