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.

20 Questions Published

Questions

Question 1 True/False

Auto 5th car policies can be created in Q&I

  1. True
  2. False
Question 2 True/False

Policy transfer option from one region to other region is available only in Mainframe.

  1. True
  2. False
Question 3 True/False

Auto Recreational Vehicle policies can be created in Q&I

  1. True
  2. False
Question 4 True/False

Earthquake LOB is available for all states.

  1. True
  2. False
Question 5 True/False

Earthquake policies can be created through Q&I

  1. True
  2. False
Question 6 True/False

During Endorsements, The system allows us to change the agent number.

  1. True
  2. False
Question 7 True/False

In Q&I we can say that the testing is complete & provide sign off if we complete testing in RC region.

  1. True
  2. False
Question 8 Multiple Choice (Single Answer)

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;

  1. 8
  2. 5
  3. 7
  4. 6
Question 9 Multiple Choice (Single Answer)

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?

  1. 8,42,82,102
  2. 4,15,65,92,159
  3. 10,50,75,100
  4. 5,20,40,60,80
Question 10 Multiple Choice (Single Answer)

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?

  1. 9,10,11,22
  2. 9,10,21,22
  3. 10,11,21,22
  4. 10,11,20,21
Question 11 Multiple Choice (Single Answer)

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.

  1. I, II & III
  2. II, III & IV
  3. I, II & IV
  4. I, III & IV
Question 12 Multiple Choice (Single Answer)

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. 1 test for statement coverage, 3 for branch coverage
  2. 1 test for statement coverage, 2 for branch coverage
  3. 1 test for statement coverage, 1 for branch coverage
  4. 2 tests for statement coverage, 3 for branch coverage
  5. 2 tests for statement coverage, 2 for branch coverage
Question 13 Multiple Choice (Single Answer)

The selection of test cases for regression testing

  1. Requires knowledge on the bug fixes and how it affect the system
  2. Includes the area of frequent defects
  3. Includes the area which has undergone many/recent code changes
  4. All of the above
Question 14 Multiple Choice (Single Answer)

Complete statement and branch coverage means:

  1. That you have tested every statement in the program.
  2. That you have tested every statement and every branch in the program.
  3. That you have tested every IF statement in the program.
  4. That you have tested every combination of values of IF statements in the program
Question 15 Multiple Choice (Single Answer)

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?

  1. £1500
  2. £32001
  3. £33501
  4. £28000
Question 16 Multiple Choice (Single Answer)

What is the main difference between a walkthrough and an inspection?

  1. An inspection is lead by the author, whilst a walkthrough is lead by a trained moderator
  2. An inspection has a trained leader, whilst a walkthrough has no leader
  3. Authors are not present during inspections, whilst they are during walkthroughs
  4. A walkthrough is lead by the author, whilst an inspection is lead by a trained moderator
Question 17 Multiple Choice (Single Answer)

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

  1. v-3,w-2,x-1,y-5,z-4
  2. v-2,w-5,x-1,y-4,z-3
  3. v-3,w-4,x-1,y-5,z-2
  4. v-2,w-1,x-4,y-3,z-5
Question 18 Multiple Choice (Single Answer)

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

  1. s = 4 and 5, t = 3, u = 2, v = 1
  2. s = 4, t = 3, u = 2 and 5, v = 1
  3. s = 1 and 5, t = 3, u = 2, v = 4
  4. s = 4 and 5, t = 1, u= 2, v = 3
Question 19 Multiple Choice (Single Answer)

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.

  1. ii, iv and v.
  2. ii, iii and iv.i.
  3. i, ii and iv.
  4. i, iii and v.
Question 20 Multiple Choice (Single Answer)

Which of the following is a MAJOR task of test planning?

  1. Scheduling test analysis and design tasks.
  2. Initiating corrective actions.
  3. Monitoring progress and test coverage.
  4. Measuring and analyzing results.