embedded systems

Basic Embedded systems interview questions for preparation

Aug 21 • General • 25251 Views • 13 Comments on Basic Embedded systems interview questions for preparation

Introduction:

embedded systems

embedded systems

An Embedded systems is a machine framework with a dedicated capacity inside a bigger mechanical or electrical framework, frequently with real time-computing constraints. It is implanted as a feature of a complete gadget often including equipment and mechanical parts. By contrast, an universally useful machine, for example, a (PC), is intended to be adaptable and to meet an extensive variety of end-client needs. Embedded systems control numerous gadgets in common use today. here are for you the common embedded systems interview questions.

Advanced Embedded systems are frequently focused around micro controllers (i.e. Cpus with incorporated memory or fringe interfaces) however ordinary microprocessors (utilizing outside chips for memory and fringe interface circuits) are still normal, particularly in more complex systems. In either case, the processor(s) utilized may be sorts running from rather broadly useful to exceptionally had some expertise in certain class of reckonings, or even specially crafted for the application nearby. A typical standard class of committed processors is the computerized indicator processor (DSP).

Here are for you the best and common embedded systems interview questions:

1. What is lst file?

• This file is also called as list file.
• It lists the op codes ,addresses and errors detected by the assembler.
• List file is produced only when indicated by the user.
• It can be accessed by an editor and displayed on monitor screen or printed.
• Programmer uses this file to find the syntax errors and later fix them.

2. How is a program executed’ bit by bit’ or’ byte by byte’?

EXAMPLE

 

ADDRESSOPCODEPROGRAM
1   0000ORG 0H
2   00007D25MOV R5,#25H
3   00027F34MOV R7,#34H
4   00042DADD A, R5
5   0005END

• A program is always executed byte by byte.
• Firstly,1st opcode 7D is fetched from location 0000 and then the value 25 is fetched from 0001 .
• 25 is then placed in the register R5 and program counter is incremented to point 0002.
• On execution of opcode 7F, value 34 is copied to register R7.
• Then addition of contents of R5 and accumulater takes place.
• Here all the opcodes are 8 bit forming a byte.

3. Explain DB.

• DB is called as define byte used as a directive in the assembler.
• It is used to define the 8 bit data in binary ,hexadecimal or decimal formats.
• It is the only directive that can be used to define ASCII strings larger than two characters.
• DB is also used to allocate memory in byte sized chunks.
• The assembler always converts the numbers lnto hexadecimal.

4. What is EQU?

• EQU is the equate assmbler directive used to define a constant without occupying a memory location.
• It associates a constant value with data label .
• Whenever the label appears in the program ,constant value is subsituted for label.
• Advantage: The constant value occuring at various positions in a program can be changed at once using this directive.
• Syntax: label EQU constant value

5. How are labels named in assembly language?

• Label name should be unique and must contain alphabetic letters in both uppercase and lowercase.
• 1st letter should always be an alphabetic letter.
• It can also use digits and special characters ?,.,@,_,$.
• Label should not be one of the reserved words in assembly language.
• These labels make the progam much easier to read and maintain.

6. Are all the bits of flag register used in 8051?

• The flag register also called as the program status word uses only 6 bits.
• The two unused bits are user defineable flags.
• Carry ,auxillary carry ,parity and overflow flags are the conditional flags used in it.
• PSW.1 is a user definable bit and PSW.5 can be used as general purpose bit.
• Rest all flags indicate some or the other condition of an arithmetic operation.

6. Which bit of the flag register is set when output overflows to the sign bit?

• The 2nd bit of the flag register is set when output flows to the sign bit.
• This flag is also called as the overflow flag.
• Here the output of the signed number operation is too large to be accomodated in 7 bits.
• For signed numbers the MSB is used to indicate the whether the number is positive or negative.
• It is only used to detect errors in signed number operations.

7. Which register bank is used if we use the following instructions
SETB  PSW.3      A
SETB  PSW.4       B

• Statement A sets 3rd bit of flag register.
• Statement B sets 4th bit of flag register.
• Therefore register bank 3 is initiated .
• It uses memory location 18H to 1FH.
• The register bank is also called as R3.

8. Issues related to stack and bank 1.

• Bank 1 uses the same RAM space as the stack.
• Stack pointer is incremented or decremented according to the push or pop instruction.
• If the stack pointer is decremented it uses locations 7,6,5… which belongs to register bank 0.
• If a given program uses R1 then stack is provided new memory location.
• The push instruction may also take stack to location 0 i.e.it will run out of space.

9. Explain JNC.

• It is a command used to jump if no carry occurs after an arithematic operation.
• It is called as jump if no carry( conditional jump instruction).
• Here the carry flag bit in PSW register is used to make decision.
• The processor looks at the carry flag to see if it is raised or not.
• If carry flag is 0 ,CPU fetches instructions from the address of the label.

 

10. Can port 0 be used as input output port?

• Yes, port 0 can be used as input output port.
• Port 0 is an open drain unlike ports 2,3,4.
• To use it as input or output the 10k ohm pull-up resisters are connected to it externally.
• To make port 0 as input port it must be programmed by writing 1 to all bits.
• Example:

MOV  A,#0FFH
MOV  P0,A

11. Which 2 ports combine to form the 16 bit address for external memory access?

• Port0 and port2 together form the 16 bit address for external memory.
• Port0 uses pins 32 to 39 of 8051 to give the lower address bits(AD0-AD7)
• Port2 uses pins 21 to 28 of 8051 to give the higher address bits(A8-A15)
• This 16 bit address is used to access external memory if attached.
• When connected to external memory they cannot be used as input output ports.

12. Can single bit of a port be accessed in 8051?

• Yes,8051 has the capability of accessing only single bit of a port.
• Here only single bit is accessed and rest are unaltered.
• SYNTAX: “SETB X. Y”.
• Here X is the port number and y is the desired bit.
• Example: SETB P1.2

Here the second bit of port 1 is set to 1.

13. Other than SETB ,CLR are there any single bit instructions ?

• There are total 6 single-bit instructions.
• CPL bit : complement the bit (bit= NOT bit).
• JB bit,target: Jump to target if bit equal to 1.
• JNB bit,target: Jump to target if bit is equal to 0.
• JCB bit,target: Jump to target if bit is equal to 1 and then clear bit.

These are the common Embedded systems interview questions. prepare yourself with the best embedded systems interview questions.

To get advanced interview questions for embedded systems and download pdf click here: Advanced interview question for embedded systems

Tell us Your Queries, Suggestions and Feedback

Your email address will not be published.

13 Responses to Basic Embedded systems interview questions for preparation

  1. ravala jaswitha says:

    what are interview question may be for embedded

  2. ravala jaswitha says:

    what are interview question may be for embedded

  3. ravala jaswitha says:

    what are interview question may be for embedded

  4. Nusrath says:

    Jobs for 0-1 year experience in Embedded systems with B.E

  5. Anonymous says:
  6. priya says:

    what is arm

  7. priya says:

    what is arm

  8. KARTHIKEYAN says:

    be in ece how to place in vlsi/ soc – design engineer(phyphysical design/ rtl design)

  9. kavya says:

    I want USB Embedded C code using PIC 18F4550 Mico-controller

  10. abhilash says:

    i need embedded c n cpp interview mostly asked questions in interviw

  11. udhayakumar says:

    i am udhaya kumar ,2 nd yr dept of electronics and instrumentation engg and i am interested in embedded systems
    how i should prepare for that

  12. NIRAJ SINGH RAUTHAN says:

    HOW TO GIVE ANSWERS OF THE TECHNICAL QUESTIONS,HR QUESTIONS,MR QUESTIONS

  13. s.selvapriya says:

    I am a B.E student and my department is electronics and communication engineering now I am studying final year and i want select for good company.please,clear my aptitude doubt and technical doubt my area of interest is embedded system and networking please send me a good reply…thank u sir/madam

« »