1. What is the purpose of test completion criterion?
2. An array is declared with length 5 in JAVA. However the array is trying access 6 th element in a loop. Should this exception is checked during compilation?
3. Which of the below steps to launch a Selenium web driver is correct?
5. Jack is doing the testing of an application. He has found a minor defect during testing and verbally communicated to developer. He does not document the defect as it is small in nature. This is okay.
6. There is an array of integer values 12,14,56,34,23,9. Can binary be used on this array?
7. Given the following types of tools, which tools would be typically used by the developers, and which by an independent system test team?
a. static analysis
b. performance testing
c. test management
d. dynamic analysis
9. Below is a scenario to handle for integer variable A. What is the better way to handle the scenario?
Value of A is 5, print Five
Value of A is 10, print Ten
Value of A is 0, print Zero
Value of A 2 , print Two
11. Choose the right picture for Left Outer Join.
12. What is the right order?
13. An application is built for iOS. Which browser tester should test the application with priority?
14. In prioritizing what to test, the most important objective is to?
15. Consider the following statements about the early test designs
- early test design can prevent fault multiplication
- faults found between early test designs are more expensive to fix
- early test designs can find faults
- early test design can cause changes to the requirements
- early test design normally takes more effort
16. John is testing a client project that requires to use email-id. Should John use his personal email for the testing?
17. A program validates a numeric field as follows
values less than 10 are are rejected, values between 10 to 21 are accepted, values greater than or equal to 22 are rejected, which of the following inputs values cover all of the equivalence partitions?
18. A test design technique is?
19. Should one use live or production data for testing to use the real data?
20. If an exception is handled in a program, should it continue the rest of the execution or terminate?
21. Consider the following statements
a) 100% statement coverage guarantees 100% branch coverage
b) 100% branch coverage guarantees 100% statement coverage
c) 100% branch coverage guarantees 100% decision coverage
d) 100% decision coverage guarantees 100% branch coverage
e) 100% statement coverage guarantees 100% decision coverage
22. Order numbers on a stock control system can range between 10000 and 99999 inclusive. Which of the following inputs might be a result of designing test for only VALID equivalence classes and VALID boundaries?
23. Test Scenario and Test Cases must have one to many mapping.
24. When should testing be stopped?
25. One scenario is defined as if the age of a person is 18 and more he should be eligible to work and if he is over 60 he cannot be eligible for work. What would be the boundary value checking one should do?
26. There are two variables A=10, B-20. Can I swap the values of the two variables without using third variable?