GeekInterview.com
Series: Subject: Topic:

Micro Processor Interview Questions

Showing Questions 1 - 20 of 41 Questions
First | Prev | | Next | Last Page
Sort by: 
 | 

Implementation of de-queue

Asked By: haroon helali | Asked On: Apr 2nd, 2013

Please help me to do this program ; thanks ..... write down a complete programming code for implementing de-queue?

Push and pop on dequeue

Asked By: haroon helali | Asked On: Apr 2nd, 2013

Please help me how to do this ???? write down a algorithms for push as well as pop on dequeue?

The stack uses which policy out of the following-- lifo, fifo, round robin or none of these ?

Asked By: Interview Candidate | Asked On: Sep 2nd, 2005

Answered by: raji on: Mar 13th, 2013

Stack uses LIFO. Example for LIFO is collection of coins arranged one by one.

Answered by: subash on: Sep 11th, 2012

The operation is dependent upon the microprocessor and the stack operation is simplified as first in last out(filo)

Equivalent gray code representation of ac2h.?

Asked By: Interview Candidate | Asked On: Jul 16th, 2005

Answered by: ashok on: Jan 18th, 2013

D7CH.

Answered by: aadhi on: May 31st, 2006

ANS: FA3H:: msb remains same. retst is obtained by xoring the consecutive bits.

The vector address of rst 7.5 in 8085 processor is _______.?

Asked By: Interview Candidate | Asked On: Jul 17th, 2005

Answered by: Neeshu Agarwal on: Dec 24th, 2012

RST 7.5 - Maskable - Vector - 003C (H) - Edge triggered RST 6.5 - Maskable - Vector - 0034 (H) - Level triggered RST 5.5 - Maskable - Vector - 002C (...

Answered by: Nilesh Trimbake on: Oct 5th, 2011

Multiply by 8 and then convert to HexaDecimal

What is the function of ale in 8085 ?

Asked By: Interview Candidate | Asked On: Aug 23rd, 2005

Answered by: swetha on: Dec 12th, 2012

LIFO

Answered by: arvinth ram on: Aug 8th, 2012

Address latch enable is used for combining lower order address byte to higher order address byte

Simplify the expression ab + a( b + C ) + b ( b + C )?

Asked By: Interview Candidate | Asked On: Jun 1st, 2005

Answered by: Jenitaa Adel Queen on: Dec 4th, 2012

AB+AB+AC+BB+BC
AB+AC+B+BC
AB+AC+B(1+C)
AB+AC+B
AB+B+AC
B(A+1)+AC
B+AC

Answered by: sudhakar venkatraman on: Nov 11th, 2012

Perfect ans:

B+AC

A voice signal sample is stored as one byte. Frequency range is 16 hz to 20 hz. What is the memory size required to store 4 minutes voice signal?

Asked By: Interview Candidate | Asked On: Aug 23rd, 2005

Answered by: adi on: Sep 30th, 2012

bt practically i required 1.07 mb to record 1.31 min speech,
any1 kno its calculation?

Answered by: adityajain on: Nov 21st, 2009

Voice signal is sampled at 8000 samples per second. (Human voice is in the range of 300Hz-3400Hz, and according to nyquist sampling rate we take it more than double the rate).

For a 4  min. voice signal, we have

Memory = 4*60*8000 Bytes = 1875KB = 1.83 MB.

A nand gate becomes ___ gate when used with negative logic ?

Asked By: Interview Candidate | Asked On: Aug 25th, 2005

Answered by: SUBASH on: Sep 11th, 2012

NOR gate

Answered by: seemak on: Apr 9th, 2010

It is OR gate.

Difference between physical address & logical address

Asked By: harsh1509 | Asked On: Apr 14th, 2012

What is the difference between physical address & logical address during memory addressing or accessing?

Answered by: revathy on: May 27th, 2012

physical address :: is the real address stored in the system itself and this 48 bit flat address works in layer1 of osi model... logical address:: is the 32bit address assigned to each system in a ne...

Answered by: Sankar on: May 14th, 2012

Physical address stored temporary in database But logical address it can store data in database in permanently.

How do 80386 switches from real mode to protected mode?

Asked By: Bhargavi7 | Asked On: Nov 23rd, 2011

Answered by: jaideepchoudhary on: Mar 25th, 2012

Real mode is the mode where the base instruction set of 8086 microprocessor family can be executed , whereas in the Protected mode ,the instruction set with new and advanced instructions of the microp...

What is the advantage of cmos over nmos ?

Asked By: Interview Candidate | Asked On: Aug 31st, 2005

Answered by: sumit on: Jan 27th, 2012

The most important advantage of CMOS is the very low static power consumption in compare technology.

Answered by: shikha bansal on: Jan 3rd, 2012

CMOS provides more noise margin than NMOS.

Algorithm

Asked By: zoya | Asked On: Oct 22nd, 2011

Design an iterative algorithm to traverse a binary tree represented in two dimensional matrix.

How much time does a serial link of 64 kbps take to transmit a picture with 540 pixels.?

Asked By: Interview Candidate | Asked On: Aug 23rd, 2005

Answered by: Prakash on: Oct 21st, 2011

for gray 1 pixel = 1 byte.
for color 1 pixel = 3 byte;
64kbps =64 kilo bit per sec;
64kbps= 64/8 kilo byte per sec= 8000 byte per sec;
so 540 gray pixels, time=540/8000=0.067sec;
for color 540 pixels, time= 540*3/8000=0.202 sec;

Answered by: vengat86 on: Aug 18th, 2009

In transmission its considered as download and upload

so, we have 64kbps 

Divide by 8 to get the download speed so its 8kbps ie 8192 bits per sec

Now consider the image its 540Bytes convert into bits its 540*1024 = 552960

So divide both 552960 / 8192 = 67.5 sec

i.e., 1 min 7 secs


Avr

Asked By: Chinmaya Mishra | Asked On: Oct 20th, 2011

Why does processor mode in cpsr in avr have 5 bits although we have 7 modes which we can define in 3 bits ?

What is parity generation ?

Asked By: Interview Candidate | Asked On: Jun 1st, 2005

Answered by: Atul on: Oct 18th, 2011

In digital communications, an extra bit is sometimes appended to the message to make the logic high bit count even or odd. This extra bit is know as parity bit and used for error detection.

Reference :- http://www.fullchipdesign.com/parity_generation_checking.htm

Answered by: sherina on: Sep 18th, 2011

Parity bits are extra signals which are added to a data word to enable error checking. There are two types of Parity - even and odd.

What is the memory space required if two unsigned 8 bit numbers are multiplied ?

Asked By: Interview Candidate | Asked On: Aug 19th, 2005

Answered by: raval vikram on: Sep 16th, 2011

16 bit

Answered by: karam_sodhi@yahoo.com on: Sep 11th, 2011

-128 to +127

Give the output when the input of a d-flip flop is tied to the output through the xor gate.?

Asked By: Interview Candidate | Asked On: Apr 10th, 2005

Answered by: Maharasi.V on: Aug 13th, 2010

If the input is 0, previous state is maintained and if the input is 1, toggling operation occurs.

Answered by: Arun Segaran on: Nov 2nd, 2007

It becomes a T-flip flop

An active high input s-r latch has a 1 on the s input and a 0 on the r input. What state is the latch in?

Asked By: Interview Candidate | Asked On: Jun 1st, 2005

Answered by: muthumlk on: Aug 4th, 2010

For an SR latch, if S is in ON state, the latch is set. So the o/p is 1 and the latch is in ON state.

Answered by: Gopi on: Jun 1st, 2005

Latch state is in high state( ouput Q = 1).

Determine the logic gate to implement the following terms--abc, a+b+c?

Asked By: Interview Candidate | Asked On: Jun 1st, 2005

Answered by: nikhil4nigam on: Jul 31st, 2010

Since NAND and NOR are the universal gates, hence the logics can be implemented simply by using NAND or NOR gate.

Answered by: pushpalathakrishnan on: Jul 29th, 2010

Using OR gate, if any one of the inputs A, B and C are 1 the output of OR gate is 1. In case of AND gate, the output of AND gate is 1 only if all the three inputs A,B and C are all set to 1.

First | Prev | | Next | Last Page

 

 

Ads

Connect

twitter fb Linkedin GPlus RSS

Ads

Interview Question

 Ask Interview Question?

 

Latest Questions

Ads

Interview & Career Tips

Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.