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

What is interaction semantics used in embedded systems?

949

Why does pre-emptive multi-threading used to solve the central controller problem?

829

What are the different types of customizations that is used with the “volatile” keyword?

852

What is the main function of multiplexed address/data bus?

857

What is the need for an infinite loop in embedded systems?

853

How does the interrupt architecture works?

893

What are the functional requirements that are used in the embedded systems?

889

Differentiate between mutexes vs semaphores.

910

Write a program to show the functionality of power-save super loop.

1078

How to create a child process in linux?

1057

Why do we need virtual device drivers when we have physical device drivers?

885

What is the function of watchdog timer in embedded system?

869

How are macros different from inline functions?

890

What are the differences between analytical and computational modeling?

907

Explain interrupt latency and how can we decrease it?

814


Post New Embedded Systems AllOther Questions

Un-Answered Questions { Embedded Systems AllOther }

Can a volatile be constant? Like

850


Show me a portfolio of all the applications you worked on, and tell me how you contributed to design them.

830


How are macros different from functions?

775


What are the differences between analytical and computational modeling?

907


Explain me what is endianness of a system and how do different systems communicate with each other?

803


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

3361


Whether we can use semaphore or mutex or spinlock in interrupt context in linux kernel?

842


Explain what is interrupt latency? How can you reduce it?

859


Mention what are buses used for communication in embedded system?

860


Why is java used in embedded systems?

854


Why is java mostly used in embedded systems?

968


What software languages have you used to design, develop, and debug software application interfaces?

875


What is pass by value and pass by reference? How are structure passed as arguments?

892


What is the significance of watchdog timer in embedded systems?

824


What's your experience with technical documentation?

859