Question: 1
Select the correct statement related to test techniques;
I . Software program should be running to perform dynamic analysis
II . Software program should be running to perform static analysis III.
Control flow analysis is part of dynamic analysis
IV . Data flow analysis is part of static analysis
Question: 2
You and two junior testers have been assigned to a new project qualification by your manager. Development of the code started two weeks ago and now you are invited to attend a code review meeting by development manager. Meeting agenda is to cover following items.
# Verify code compliance to coding standards
# Verify comment usage frequency
# Review number of function calls
# Review logical decision points in the application
What is the purpose of this meeting?
Question: 3
Integrated Solutions Inc. is a software testing company with 20 testers. One of their clients provided a software release and requested to test the software within 2 weeks. The client did not provide any specifications of the software or any documentation. However, Integrated Solutions Inc. testers have tested similar releases from the same client in the past. As a Senior Software Tester, what is your best approach?
Question: 4
A software company developed a software application for a Life Insurance Company. The testers of the software company were given the release to test. The software application calculates the annual life insurance cost based on customers' age. Life insurance cost is as follows per year;
# Age 18 or less: US $ 300
# Age over 18 or less than 70: US $ 500
# Person has to be at least 1 year old to purchase insurance
If a customer enters any other age, the software prints an error message. The Application accepts only positive integer values (no decimals). Given above scenario, how many valid test cases at minimum can you derive using equivalence partitioning?
Question: 5
A software company developed a software application for a Life Insurance Company. The testers of the software company were given the release to test. The software application calculates the annual life insurance cost based on customers' age. Life insurance cost is as follows per year;
# Age 18 or less: US $ 300
# Age over 18 or less than 70: US $ 500
# Person has to be at least 1 year old to purchase insurance
If a customer enters any other age, the software prints an error message. The Application accepts only positive integer values (no decimals).
How many boundary value test cases can you derive for the life insurance application?