1. What is the difference between the negative and positive testing?Negative testing uses incorrect and invalid data to validate applications, whereas positive testing uses correct data and is usually called the “happy path”.

2. At which testing stage the actual results are compared to the expected results? Test analysis.

3. Test Conditions are derived from : Specification documents.

4. Which of the following technique is a NOT a black box technique? Linear Code Sequence and Jump

5. The test plan documentation should contain all the following, except: Test cases

6. Given the following sample of a pseudo code, which of the following test cases will ensure that statement 6 is executed? male rabbits = 1, female rabbits = 1, breed = Yes

7. The diagram below represents the following paths through the code: 5

8. Given the following state transition diagram, which of the test cases below will cover the following series of state transitions? SS -> S1 -> S2 -> S1 -> S2 -> ES ABEBF

9. Given the following decision table, which of the following test cases and expected results is VALID? 23-year-old in insurance class A Premium is 90 and excess is 2,500

10. The amount of water flowing into a tank doubles every minute. The tank is full in an hour. When is the tank half full? 45

11. The average of 20 numbers is 0. Of them, at most, how many numbers may be greater than zero? 0

12. A two-digit number is such that the product of the digits is 8. When 18 is added to the number, then the digits are reversed. The number is: 24

13. A family consists of two grandparents, two parents and three grandchildren. The average age of the grandparents is 67 years, that of the parents is 35 and that of the grandchildren is 6 years. What is the average age of the family? None of these

14. If one third of one fourth of a number is 15, then three tenths of that number is 54

15. Imagine you need to test the input field for a month that accepts numbers as input values (for example, 1 for January). Which would be proper values to fully test this field using the Boundary Value Analysis technique? [0, 1, 2, 11, 12, 13]

16. Choose the correct algorithm to determine whether a year is a leap year. Assume the existence of the integer variable “year” that contains some numeric value. Assume that % symbol is the MOD modifier (determines the non-real part of the division).

17. You have three arrays of random numbers. Create a program... <>

18. Do you have any program written by yourself?What does it do? ... <>