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

FIC Interview Questions
Questions Answers Views Company eMail

How to conduct Regression Testing Manually?

9 14790

BPO means?

21 101286

Actually by using severity u should know which one u need to solve so what is the need of priority?

11 11950

How will you automate a test case?How will u find a IPconfig of an appln or a machine?

1 4329

what is difference between abstraction and interface?

8 10724

What is an idle thread?

2 28336

Where did you find this job?

2238

Who is in USA?

3 6427

what is the need to write testcases??? cant u test ur application with SRS?? y u have to write testcase document??

4 6321

what is lifecycle of a buG??? give an example of high severioty and low priority bug???

3 6281

what is the main difference between client server and webserver???

4 13897

what is clinet side validation and server validation??

2 5753

tell about build process???how do u get abuild?? what u l do when u get a build??

2 5759

what is functionality testing?? what is system testing?? does system testing involves functionality testiting??

5 10281

what are the different types of browser compatability u will test ?

7 13243

Post New FIC Interview Questions




Un-Answered Questions

Define cross join in sql server joins?

587


the cordinates of A,b,c are respectively (2,3) ,(4,4) AND (0,-2). If abcd is a parallelgram. The coordinates of D are

510


Name the app sate which it reaches briefly on its way to being suspended in iOS operating system?

482


What is middleware? What is the functionality of web server?

587


Why is xslt used?

463






What is a long in c#?

450


Mention some of the set-backs of sap?

527


What is the difference between servlet and jsp?

594


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 happens in conversion stage in job processing?

724


What is a with(nolock)?

574


Why do I get an error (cs1006) when trying to declare a method without specifying a return type?

541


What is jinja in django?

199


Is port 80 open on my network?

608


What are the data controls available in asp.net?

505