1.How to estimate test effort?2.How to test server without client?3.If their is less time for testing How do test plan the application?4.Adhoc Testing?5.What is sysops Testing?6.Detetmine server stability through load/performance testing?7.tomake attributes test engineers?8.If change the code how do you dynamic changes?9.write a TSL script for addition of 2 no.s?10.What isthe name of the class in WR where declare inarray in a function?

Showing Answers 1 - 2 of 2 Answers

Test effort is measured by matrices.
1. product: To check how many KLOC(Kilo lines of code) has been written.
2. quantity: To Check how the Person Month(PM) i.e., how much one person work for 1 week.
3. productivity: (Bugs found by tester)/(Bugs found by tester + bugs found by user)

  Was this answer useful?  Yes

3. if there is less time for testing u have to go for functionality testing4. Adhoc Testing means , sometimes test engineers conduct adhoc testing on predetermined ideas When there is lack data to overcome this problem they conduct adhoc testing9. TSL script for Addition 2 no.sThere many ways to this operation such as using a userdefined function, using excel sheets(data driven testing)As TSL is like as C language. U can write as follows a = 10;b = 20;c = a + b;printf("%d", c);this will print result in a separate window(or)using Excel sheet also we can add multiple numbersfollow the steps for datadriver wizard teststeps are:tools--DataDriver Wizard---Click Next---Click Next---Check Show data table now(if u want)--- Click Finishu can see data table by navigating if u have selected it Tools---Datatable then enter the values in A and B columns in excel sheet After ddt_set_row in for loopwrite the following statementsa = ddt_val(table, "A");b = ddt_val(table, "B");c= a+b;ddt_set_val(table, "C", c);ddt_save(table);

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions