Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

iEnergizer Interview Questions
Questions Answers Views Company eMail

What are your short-range and long-range goals and how do you expect to achieve them?

17 58961

Tell me abt ur self

42 59490

how to improve communication skill ?

47 69670

After completing your graduation u were not working for a year. What were u doing during that period?

5 15052

how u describe urself? tell us about urself?

18 34171

tell me something about yourself?

42 142729

Being a MCA graduate why you are looking for a call center job?

25 73380

introduce urself?

38 52795

Favourite Song that inspired u and explain? Favourite Advt in TV and explain? Is fitness important in day to day life?

2190

Tell me a memmorable event in ur life.

13 28150

tell me the most memorable day of ur life and why is it so?

49 716064

If you'll be given a super power what it would be? and why?

2 11373

why should i join call center

36 39435

what is the maximum age limit of any bpo sector

17 59842

How would you describe your personality?

2244

Post New iEnergizer Interview Questions




Un-Answered Questions

How do you randomize using excel?

327


How do you introduce line break for a ui element in any layout?

141


draw the block diagram of fire alarm?

4984


How many types of dba are there?

275


What is the role of document manager in oracle purchasing?

494






How to load excel data sheet to oracle database

582


What is the effect of gravity at the center of a planet?

86


Explain the use of compress option in exp command.

546


What is hidden attribute in a feature?

426


How will you do redo and undo in textbox control?

562


Why do my scrollbars go to row 500 -- my data ends in cell e50?

317


Define latency in sap hana? : hana sql script

70


Difference between window.onload and onDocumentReady?

538


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

2901


Is costing based copa document different from the new universal document?

302