Answer Posted / sevak.yatrik777
If we go by quality standards the sizing of software testing
effort has to be done before the tester(s) start writing the
test cases for the purpose. The estimate will clearly draw
out of the functional specifications signed off between the
customer and vendor. Without sizing the Testing manager can
never create a testing plan based on which he will decide
the number of days and persons required to write test cases,
perform testing, draw out the testing results, submit the
result report to development team and get the reported bugs
resolved. The plan will comprise of time-line and no. of
persons required for each of this phase in the sequence
mentioned above.
To calculate a reasonable testing time-line estimate based
on functional specifications there are certain guidelines
that need to be followed: the person who is planning has to
have ample business and testing knowledge. Unless (s)he has
the right business knowledge (s)he will not be able to
select the right persons for writing test cases, or able to
guide them on the critical business rules and processes
written in the software to hit upon. In that case the best
of the test cases will lack the complete coverage and
accuracy in testing. The software may lack bug-proofing at
the end and customer will be the sole sufferer. Ultimately
it is going to effect the software, and the organization
that built it.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Explain how can I open a file so that other programs can update it at the same time?
Explain bit masking in c?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What are register variables in c?
What is masking?
How does free() know explain how much memory to release?
Subtract Two Number Without Using Subtraction Operator
How can you avoid including a header more than once?
How can I get back to the interactive keyboard if stdin is redirected?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
What does the c preprocessor do?
Is using exit() the same as using return?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.