1.Testing work starts once a)once requirement are complete b)once test cases are complete c)once coding is complete d)begining of requirement 2)For white box testing a)the tester is completely unconcerned abt the internal behavior of the program b)the tester is concerned with finding circumstances in which the program doesnot behave according to code standards c)test data is derived from market requirements 3)stress testing is a measure of one of the following a)application response time b)concurrent load an application can handle c)transactions per minute that can be handled d)virtual load at which the system will fail 4)UAT means a)testing performed on a single stand alone module b)testing after changes have been made to ensure that no unwanted changes were introduced c)testinf to ensure that the system meets the needs of the organization& the end user 5)software quality metrics will help u to a)keep account on the software quality of an application b)analyse and improve the deficiencies of an application c)both of the above d)none 6)Application that has GUI must be tested for usability a)for any kind of UI applications b)more necessary for web based applications c)only if the user is going to use the UI d)only if the user pays for it 7)the program according requirements expects the uppercase letters from A to Z.Analyze the following inputs and choose one that can cause the failure with greater probability a)@,[ b)1,0 c)B,W d)[,] 8)A system test that forces the software to fail in a variety of ways and verifies that softwware is able to continue execution without interruption.This definiton in nearest to a)Recovery testing b)Stress testing c)both of the above d)none 9)Automated testing is necessary when a)testing has to be done very quickly b)number of resources are very less c)most of the test cases are similar in anture d)all of the above 10)which of the following tests is performed early in a software testing process a)monkey testing b)unit testing c)system testing d)none 11)the testing technique that requires devising test cases to demonstrate that each program function is operational is called a)black box testing b)glass box testing c)grey box testing d)white box testing 12)what a UML diagram is useful for black box testing a)class diagram b)object diagram c)use case diagram d)sequence diagram 13)what kind of tools would you suggest to use for the automation of regression tests? a)capture and playback b)static analysis tools c)simulators d)debugging tools
3 123631.At the recent web developres bowling match,two ganes were played.Kiev beat stuart in both games;also Richard beat John in both games.The winner in game1 second in game2.Richard won game2 and John beat stuart in game1.No player got the same placing twice.Can you determine who finished where in each game?
2 6612there are 3 jars of different sizes.one jar holds 8 litres of milk,the other 2 jars of 5 litres and 3 jars are empty.There is no measuring level or marks in all the jars.Juggle between these 3 jars and get 2 jars containing 4litres each at the end.
26 87738At a recent painting competition,Jonny's rendition of a constable was not last.priya only just managed to avoid last place and came third.the lady who paintd a monkey was very successfull and took first place>Mary beat the lady who painted the lady the temple and the lady who painted the flower beat saching.can you determine who painted what and who won
2 6621During a recent school reunion,four men were discussing their starting salaries back in 1962.The salaries in question were 8,10,12 and 14 thousand pounds per year.of course the MP earned the most.Alan earned more thean brain and the doctor earnd more than Derek,the vet.charles could not remember what he started on.Brain,the lawyer,didnot start on 10,000pounds nor did Derek.can you determine who has which job and their starting salaries?
1 6662wat will be your testing approach for this product from project start to finish(product is landline phone)
1 3790Post New QA Interview Questions
Is securestring supported in windows phone?
What is cache lookup and islookup. what is it used for?
Does Blue Prism provides open platform for automation?
What is activatedroute in routes?
How to calculate closing stock? I have opening stock of 72 lacs (average costing without tax) and purchase of 49 lacs (with tax) and sales of 101 lacs (without tax). What is my closing stock then???? Should i add tax in sales? Where all should tax be included and where all should tax NOT be included? Right now i calculated => 72(no tax)+49(with tax)-101(no tax) = 20 lacs. IS this correct?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
How to create a custom errorhandler?
What does fast preprocessor keyword indicate?
What is crossing?
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
How do I undo f9?
If you are replicating from r/3 back end and some thing gets stuck in the queue in r/3, what will you do?
What is the application of hardness date in environmental engineering practice?
What is Polymorphism, overloading, overriding and virtual?
What are problems with small files and hdfs?