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

UTI Interview Questions
Questions Answers Views Company eMail

If you are appointed as Bank Officer, what steps you can take to mobilize your bank into surplus ?

3 9290

What are the good qualities for a Probationary Officer ?

18 120679

Can you say some examples about Bank mergers ?

5 8729

What is the difference between internet and intranet ?

5 12158

Can you tell us some drastic changes in Banking Industry in India for the last 10 years ?

2 6095

Define about Micro Economics & Macro Economics ?

3 10161

Tell us about types of market in India ?

8 18830

What the difference between capital goods and infrastructure.

2 9428

What it means of Disinvestment ? In your opinion it is right or wrong

4 9596

Define SEBI and how does it works ?

12 46851

What is the abbreviation of SMILE

12 30457

What does mean the word ?NPA? in Banking Sector

31 112810

What is the abbreviation of ?CIBIL?

6 15074

Why May 17th is called Black Monday in Indian Economy?

3 11322

Recently one Bank has obtained permission to start operations in Afghanistan as well as in Dubai and Shanghai

2 8660

Post New UTI Interview Questions




Un-Answered Questions

How can we add criteria to a sql query?

179


What is the biggest difference between the internet of things and sensor businesses?

1


Is windows a hardware or software?

485


How to pass an argument to a function?

549


Explain the difference between baseband and broadband transmission?

115






How to write css for all anchor tag which have href="#" link?

297


how does the rpg element work?

711


Explain the function of the cics translator?

606


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


What are different types of resources?

530


. which tag i need to use manually to bind columns in a datagrid ?

1611


What is general methodology?

565


When you prepare Profit and loss A/C either you will get profit or loss but not both.Then why we are saying it as profit AND loss A/C,why cannot we say it is as Profit OR loss account?

1474


Can you use this() and super() both in a constructor?

520


What is degree of Relationship type?

537