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

Describe a software development life cycle that you've managed.

874

What kinds of problems can you hit with locking model? And a lockless model?

866

What is something substantive that you've done to improve as a developer in your career?

824

Explain the concept of separation of concerns and it's pros and cons.

874

How does a 3 tier application differ from a 2 tier one?

912

If you've integrated new software in an existing system, tell us how you evaluated and identified the requirements for this new technology.

998

What's the difference between locking and lockless (optimistic and pessimistic) concurrency models?

1001

How might a task-based model differ from a threaded model?

849

Describe, in as much detail as you think is relevant, as deeply as you can, what happens when I type "cnn.com" into a browser and press "go".

813

If a system goes blank, how do you debug it?

2021

Explain the differences between stateless and stateful systems, and impacts of state on parallelism.

1033

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

924

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

836

What's risc architecture?

907

Tell me about some of your hobby projects that you've written in your off time.

925


Post New Embedded Systems AllOther Questions

Un-Answered Questions { Embedded Systems AllOther }

Tell me what are the 4 types of inheritance relationship?

844


What is the difference between a web server, web farm and web garden? How would your web application need to change for each?

940


What does DMA address will deal with?

975


What is interaction semantics used in embedded systems?

992


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

895


What is digital signal controller ?

908


Scope of static variables?

954


What are the uses of the keyword volatile?

1068


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

3447


What's the difference between locking and lockless (optimistic and pessimistic) concurrency models?

1001


Program to print the 32 number in form of binary, Hexa and ASCI.

2797


Please explain what is interrupt latency? How can you reduce it?

942


What are the most common errors you've found in embedded systems?

898


What is spin lock?

899


PROVIDE ME NOTES ON EMBEDDED TCHNLOGY

2845