Software Testing Fundamentals and Insurance Domain Testing
Covers software testing concepts including test planning, review processes, test management, boundary value analysis, code coverage, and regression testing, with specific focus on insurance domain testing scenarios.
Questions
Auto 5th car policies can be created in Q&I
- True
- False
Policy transfer option from one region to other region is available only in Mainframe.
- True
- False
Auto Recreational Vehicle policies can be created in Q&I
- True
- False
Earthquake LOB is available for all states.
- True
- False
Earthquake policies can be created through Q&I
- True
- False
During Endorsements, The system allows us to change the agent number.
- True
- False
In Q&I we can say that the testing is complete & provide sign off if we complete testing in RC region.
- True
- False
How many test cases would be required to cover all the decisions in following program?READ A READ B IF A>= 10 THEN PRINT A; ELSEIF B>5 THEN PRINT B IS SMALL; ELSEIF A>B THEN PRINT A IS BIGGER THEN B; ELSE IF B>A THEN PRINT B; ELSE PRINT NULL ;END IF; END IF; END IF; END IF;
- 8
- 5
- 7
- 6
Postal rates for 'light letters' are 25p upto 10g. 35p upto 15g plus an extra 10p for each additional 25g upto 100g. Which test inputs (in grams), would be selected using EQP?
- 8,42,82,102
- 4,15,65,92,159
- 10,50,75,100
- 5,20,40,60,80
A program validates a numeric field as follows: values less than 10 are rejected, values between 10 and 21 are accepted, values greater than or equal to 22 are rejected. Which of the following covers the MOST boundary values?
- 9,10,11,22
- 9,10,21,22
- 10,11,21,22
- 10,11,20,21
Which of the following statements is true about a software verification and validation program? I. It strives to ensure that quality is built into software. II. It provides management with insights into the state of a software project. III. It ensures that alpha, beta, and system tests are performed. IV. It is executed in parallel with software development activities.
- I, II & III
- II, III & IV
- I, II & IV
- I, III & IV
Given the following code, which is true about the minimum number of test cases required for full statement and branch coverage: Read P Read Q IF P+Q > 100 THEN Print “Large” ENDIF If P > 50 THEN Print “P Large” ENDIF
- 1 test for statement coverage, 3 for branch coverage
- 1 test for statement coverage, 2 for branch coverage
- 1 test for statement coverage, 1 for branch coverage
- 2 tests for statement coverage, 3 for branch coverage
- 2 tests for statement coverage, 2 for branch coverage
The selection of test cases for regression testing
- Requires knowledge on the bug fixes and how it affect the system
- Includes the area of frequent defects
- Includes the area which has undergone many/recent code changes
- All of the above
Complete statement and branch coverage means:
- That you have tested every statement in the program.
- That you have tested every statement and every branch in the program.
- That you have tested every IF statement in the program.
- That you have tested every combination of values of IF statements in the program
In a system designed to work out the tax to be paid: An employee has £4000 of salary tax free. The next £1500 is taxed at 10%.The next £28000 is taxed at 22%.Any further amount is taxed at 40%.To the nearest whole pound, which of these is a valid Boundary Value Analysis test case?
- £1500
- £32001
- £33501
- £28000
What is the main difference between a walkthrough and an inspection?
- An inspection is lead by the author, whilst a walkthrough is lead by a trained moderator
- An inspection has a trained leader, whilst a walkthrough has no leader
- Authors are not present during inspections, whilst they are during walkthroughs
- A walkthrough is lead by the author, whilst an inspection is lead by a trained moderator
Given the following sets of test management terms (v-z), and activity descriptions (1-5), which one of the following best pairs the two sets? v – test control w – test monitoring x - test estimation y - incident management z - configuration control 1 - calculation of required test resources 2 - maintenance of record of test results 3 - re-allocation of resources when tests overrun 4 - report on deviation from test plan 5 - tracking of anomalous test results
- v-3,w-2,x-1,y-5,z-4
- v-2,w-5,x-1,y-4,z-3
- v-3,w-4,x-1,y-5,z-2
- v-2,w-1,x-4,y-3,z-5
Which expression best matches the following characteristics of the review processes: 1. led by the author 2. undocumented 3. no management participation 4. led by a moderator or leader 5. uses entry and exit criteria s) inspection t) peer review u) informal review v) walkthrough
- s = 4 and 5, t = 3, u = 2, v = 1
- s = 4, t = 3, u = 2 and 5, v = 1
- s = 1 and 5, t = 3, u = 2, v = 4
- s = 4 and 5, t = 1, u= 2, v = 3
From a Testing perspective, what are the MAIN purposes of Configuration Management?: i) Identifying the version of software under test. ii) Controlling the version of testware items. iii) Developing new testware items. iv) Tracking changes to testware items. v) Analysing the need for new testware items.
- ii, iv and v.
- ii, iii and iv.i.
- i, ii and iv.
- i, iii and v.
Which of the following is a MAJOR task of test planning?
- Scheduling test analysis and design tasks.
- Initiating corrective actions.
- Monitoring progress and test coverage.
- Measuring and analyzing results.