Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Embedded Systems AllOther Interview Questions
Questions Answers Views Company eMail

In 8085 microprocessor READY signal does.which of the following is incorrect statements [a]It is input to the microprocessor [b] It sequences the instructions

Wipro,

4 11578

Design a circuit for A + abs(B) = C, where A and B are 4 bits wide and 2?s complement representation

Qualcomm,

1 8691

Design a circuit to detect when 3 and only 3 bits are set out of 8 bits.(eg. o0101100)

Qualcomm, RIM,

13 27088

What is Difference between CAN and GMLAN

GM General Motors,

2 19290

whether the mulitasking and multiprocessing are same or not.

10 12791

Is tasklets or workqueues or softirqs are scheduled by the scheduler?

2 11474

wat are the different rtos available? wat is the difference beetween RTOS ans OS

LG Soft,

8 18454

What is mutex precisely used for?

2 7772

hi i want to learn embedded system course. can anyone tel me which training center is best in chennai to learn embedded system? plz help me

1 4932

what is plc system

3 7059

IS 8085 an embedded system?

4 15301

what is the command/instruction in ARM that does not do anything or does not execute any instruction ? (except NOP instruction)

Bosch,

3025

what is difference between micro processor & micro controller ?

Bosch,

8 13691

what is Page Fault or Page thrashing ?

Broadcom,

3 13651

Can we use semaphore or mutex or spin lock in interrupt context in linux kernel ?

Broadcom,

3 20313


Post New Embedded Systems AllOther Questions

Un-Answered Questions { Embedded Systems AllOther }

What are the advantages and disadvantages of embedded system?

908


What is the difference between "set" logic, and "procedural" logic. When would you use each one and why?

745


This program is in verilog and need help to get it working correctly. This is the code i have so far. Please help. Simple testbench would be great. Thanks\ 'define vend_a_drink {D,dispense,collect} = {IDLE,2'b11}; module drink_machine(nickel_in, dime_in, quarter_in, collect, nickel_out, dime_out, dispense, reset, clk) ; parameter IDLE=0,FIVE=1,TEN=2,TWENTY_FIVE=3, FIFTEEN=4,THIRTY=5,TWENTY=6,OWE_DIME=7; input nickel_in, dime_in, quarter_in, reset, clk; output collect, nickel_out, dime_out, dispense; reg collect, nickel_out, dime_out, dispense; reg [2:0] D, Q; /* state */ // synopsys state_vector Q always @ ( nickel_in or dime_in or quarter_in or reset ) begin nickel_out = 0; dime_out = 0; dispense = 0; collect = 0; if ( reset ) D = IDLE; else begin D = Q; case ( Q ) IDLE: if (nickel_in) D = FIVE; else if (dime_in) D = TEN; else if (quarter_in) D = TWENTY_FIVE; FIVE: if(nickel_in) D = TEN; else if (dime_in) D = FIFTEEN; else if (quarter_in) D = THIRTY; TEN: if (nickel_in) D = FIFTEEN; else if (dime_in) D = TWENTY; else if (quarter_in) 'vend_a_drink; TWENTY_FIVE: if( nickel_in) D = THIRTY; else if (dime_in) 'vend_a_drink; else if (quarter_in) begin 'vend_a_drink; nickel_out = 1; dime_out = 1; end FIFTEEN: if (nickel_in) D = TWENTY; else if (dime_in) D = TWENTY_FIVE; else if (quarter_in) begin 'vend_a_drink; nickel_out = 1; end THIRTY: if (nickel_in) 'vend_a_drink; else if (dime_in) begin 'vend_a_drink; nickel_out = 1; end else if (quarter_in) begin 'vend_a_drink; dime_out = 1; D = OWE_DIME; end TWENTY: if (nickel_in) D = TWENTY_FIVE; else if (dime_in) D = THIRTY; else if (quarter_in) begin 'vend_a_drink; dime_out = 1; end OWE_DIME: begin dime_out = 1; D = IDLE; end endcase end end always @ (posedge clk ) begin Q = D; end endmodule

3284


What buses are used for communication in embedded system?

788


What are the different types of buses used by the embedded systems?

861


What is digital signal controller ?

814


Give an example of troubleshooting on embedded targets. Explain the process step-by-step.

1239


Tell us what is the need for an infinite loop in embedded systems?

807


Tell me what is the purpose of using critical sections?

756


Tell me when one must use recursion function? Mention what happens when recursion functions are declared inline?

848


What is the significance of watchdog timer in es?

778


What is continuous integration? Have you used it and why is it important?

756


How can you stop your dba from making off with a list of your users’ passwords?

935


What are the components of embedded system?

896


Significance of watchdog timer in embedded systems.

851