New Embedded Systems Interview Questions :: ALLInterview.com http://www.allinterview.com New Embedded Systems Interview Questions en-us What is Difference between CAN and GMLAN http://www.allinterview.com/showanswers/68640.html What is the difference detween ISR & function call http://www.allinterview.com/showanswers/63620.html in isr there is no return value but in function call there is return value 7. What are tri-state devices and why they are essential in a bus or http://www.allinterview.com/showanswers/60960.html In a multiplexed bus system, many devices are connected to a common bus. If 2 or more devices attempt to use the bus at the same time , then data will be lost. Thus only one one device must be allowed to use the bus at a time. O e method is t can we create a table with out primary key? http://www.allinterview.com/showanswers/59851.html yes we can create.. what do you mean by embedded system? http://www.allinterview.com/showanswers/59406.html It's a combination of software and hardware Which are embedded by Kiel compiler.It 1s a device that do a specific task. write an assembly code which can call function in a loop with al valu http://www.allinterview.com/showanswers/35357.html xor ax, ax loop1: call foo inc al cmp ax, 10 jb loop1 Design a circuit to detect when 3 and only 3 bits are set out of 8 b http://www.allinterview.com/showanswers/20744.html Add the digits and check the sum. It would imply a 3-bit adder (max. value = 8 can be represented with three bits) and compare the result to 011. Design a circuit for A + abs(B) = C, where A and B are 4 bits wide a http://www.allinterview.com/showanswers/20743.html make a 4-bit adder/subtractor ( which can perform A+B and A- B depending on value of bit say SUB..ie if SUB is 1 it will perform A+B ) now give A and B as inputs and make MSB of B as SUB bit. suppose A=0110(6),B=1110(-2);so result will be A-B i Explain the working of a binary counter? http://www.allinterview.com/showanswers/20128.html binary counter with the number of bits available. initiallly counter is set to zero. then bits are checked against logic 1 or 0,if they are either logic 1 or 0,then counter is incremented. Explain RC circuit?s charging and discharging? http://www.allinterview.com/showanswers/20127.html Charging a Capacitor: The voltage across the capacitor is not instantaneously equal to that of the voltage across the battery when the switch is closed. The voltage on the capacitor builds up as more and more charges flows onto the capacitor Design any FSM in VHDL or Verilog? http://www.allinterview.com/showanswers/20126.html -----By RAHUL SINGHAL---- ----This is the code of a FSM that implements a toll booth - ----controller LIBRARY IEEE; USE IEEE.STD_LOGIC_1164.ALL; ----using all functions of specific package--- ENTITY tollbooth2 IS PORT (Clock,car_s,RE How do you detect a sequence of "1101" arriving serially fr http://www.allinterview.com/showanswers/20125.html try finite state machine logic it will definitely give the output How do you detect if two 8-bit signals are same? http://www.allinterview.com/showanswers/20124.html By using XNOR gate if the signals are same then only the output will be one otherwise not. Design a Transmission Gate based XOR. Now, how do you convert it to X http://www.allinterview.com/showanswers/20123.html put one bubble in front of xor gate.... Draw a Transmission Gate-based D-Latch? http://www.allinterview.com/showanswers/20122.html