ISTQB Advanced Level Test Analyst and Technical Test Analyst Exam-Sample Paper-Q 31 to 40
Q. 31: A development house (DH) uses the V model for its projects. It delivers systems to the energy industry. In response to consumer demands, DH has been asked to create an online system for consumers to switch energy suppliers easily. There |
are already offerings in the marketplace for this service, but DH thinks it can provide a service which is easier to use. It will request more detailed information on homes and occupant lifestyles in order to accurately predict likely bills per quarter, and will update users if a cheaper tariff becomes available. For this new service, the specifications have been defined, code has been created, and system testing is about to start. Which of the following would form part of the entry criteria into unit testing (which will be followed by integration testing)? I. 100 per cent decision coverage of all tariff calculations. II. Signed-off program specification. III. Signed-off technical specification. IV. 100 per cent program specification coverage. V. Compiled code. A. I, III and V Explanation in favor of the correct Answer: Option I, ‘100 per cent decision coverage’, would form part of the exit criteria out of unit testing, not the entry criteria. Option II, ‘a signed-off program specification’, is valid as an entry criterion into unit testing (although very rare in the real world!). Option III, ‘a signed-off technical specification’, would apply at integration testing. Option IV, ‘100 per cent coverage of the program specification’, would form part of the exit criteria out of unit testing. Option V, ‘complied code’, should be a given, but is relevant as an entry criterion into unit testing. For getting the correct answer browse down to the end of this page <<<<<< =================== >>>>>> Q. 32: A local council employs its own IT staff; there are 40, most of whom have been with the council for over 10 years. The council uses the Agile development methodology. Each project has between five and nine team members, all of whom work very closely together. At the start of each iteration, the requirements are loosely defined. These are then built, tested and refined. The IT Department has been asked to upgrade the council website to include: # Information on recycling targets; # Amounts recycled per month; and # Energy usage in the recycling effort. The project will be undertaken in three iterations, one for each requirement defined above. Which two of the following methods of test estimation would be most appropriate in this situation? I. Making use of a work breakdown structure. II. Taking 30 per cent of the total iteration time. III. Calculating the time required using test point analysis. IV. Gaining consensus from the team. A. I and II Option I, ‘a work-breakdown structure’, could be used here because we have experienced staff and requirements definitions (albeit loosely defined at first). Option II, ‘taking a random percentage of development time’, is not ideal because we do have experience. The scenario does not suggest that the iteration time is known upfront, and in iterative development is likely to change. Option III, ‘using test point analysis’, is very time-consuming and requires fully defined specifications. The scenario states that these will evolve. Option IV, ‘gaining consensus’, is useful since the team does work closely together. For getting the correct answer browse down to the end of this page <<<<<< =================== >>>>>> Sample Questions in context of CTAL Syllabus Chapter 4: Test Techniques Q. 33: Which of the following are "white-box" test techniques? I. Decision Testing A. I, II true.III, IV false <<<<<< =================== >>>>>> Q. 34: According to the ISTQB Syllabus, which of the following are test techniques? I. Experienced based A. III is true. I, II, IV false <<<<<< =================== >>>>>> Q. 35: Software Testers in a software development company installed the new release on test systems and started the testing phase. Testers verified the new functionality, performed necessary security testing and completed planned regression tests. During the last week of testing, testers noticed that the memory utilization was more than 95% on two of the test servers (out of 4 servers). This behavior was not observed during the first weeks of the testing phase. As a test analyst, what would you do? A. Ignore the problem because other two servers are okay (memory utilization is normal) B. Report the problem to the developer immediately and create a defect report because it could be a problem related to memory leak. C. Reboot the system so that memory utilization will come back to normal. Not report it as a problem. D. Create a defect report and reboot the system to correct the memory problem. <<<<<< =================== >>>>>> Q. 36: 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 A. I, II true. III, IV false <<<<<< =================== >>>>>> Q. 37: 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? A. Perform a Static Analysis of the code with the intention of finding bugs early. B. Explain the testers how the program should work. C. Get an agreement to release the partially completed software to the testing department. D. Explain the complexity of the code. <<<<<< =================== >>>>>> Q. 38: 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? A. Test the product using "Defect and Experienced Based" techniques like error guessing, exploratory and attacks. B. Request for more time. C. Explain the client why you cannot test the software. D. Test only performance of the software. <<<<<< =================== >>>>>> Q. 39: 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? A. 4 Explanation in favor of the correct Answer: Equivalence partitioning test technique helps to identify the minimum number of black box test cases by providing reasonably good test coverage. In this scenario following shows the equivalence partitions: ------------ I -------------- I -------------- I ----------- Age: 1 18 70 Invalid I valid I valid I Invalid So there are 2 invalid partitions (age less than 1, age more than 70) and 2 valid partitions (age 1-18, 19 - 70). Since the application is accepting only positive integers, we can ignore the age less than 1 (first invalid partition). Hence there are 2 valid partitions and you can create 1 test case from each group to cover this scenario. <<<<<< =================== >>>>>> Q. 40: 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? A. 9 Explanation in favor of the correct Answer: Boundary Value (BV) Analysis helps to find test cases at the boundary of each input In this scenario following shows the equivalence partitions: ------------ I -------------- I -------------- I ----------- Age: 1 18 70 Invalid I valid I valid I Invalid BV tests: 0,1, 2, 17, 18, 19, 69, 70, 71 |
Number | Title | Author | Date | Votes | Views |
Notice |
CTFL (Certified Tester Foundation Level) Syllabus 4.0
admin
|
2024.09.15
|
Votes 0
|
Views 9902842
|
admin | 2024.09.15 | 0 | 9902842 |
Notice |
ISTQB Foundation - Certified Tester (2018) : Official Sample Exam Set 2 with Answer (4)
Testersbest
|
2019.06.21
|
Votes 0
|
Views 18859542
|
Testersbest | 2019.06.21 | 0 | 18859542 |
Notice |
ISTQB Foundation - Certified Tester (2018) : Official Sample Exam Set 1 with Answer (3)
Testersbest
|
2019.06.21
|
Votes 0
|
Views 19559191
|
Testersbest | 2019.06.21 | 0 | 19559191 |
Notice |
ISTQB Foundation Certified Tester (2018) : New Exam Rule (1)
Testersbest
|
2019.06.21
|
Votes 0
|
Views 19596229
|
Testersbest | 2019.06.21 | 0 | 19596229 |
Notice |
ISTQB Foundation - Certified Tester Syllabus (2018)
VTB
|
2018.11.14
|
Votes 0
|
Views 19672782
|
VTB | 2018.11.14 | 0 | 19672782 |
Notice |
ISTQB Advanced Level Syllabus (2016) Security Tester
VTB
|
2018.10.26
|
Votes 0
|
Views 19714845
|
VTB | 2018.10.26 | 0 | 19714845 |
Notice |
ISTQB Advanced Level Syllabus (2012) Technical Test Analyst
VTB
|
2016.05.06
|
Votes 0
|
Views 19452471
|
VTB | 2016.05.06 | 0 | 19452471 |
Notice |
ISTQB Advanced Level Syllabus (2012) Test Manager
VTB
|
2016.05.06
|
Votes 0
|
Views 19341899
|
VTB | 2016.05.06 | 0 | 19341899 |
Notice |
ISTQB Advanced Level Syllabus (2012) Test Analyst
VTB
|
2016.05.06
|
Votes 0
|
Views 19369340
|
VTB | 2016.05.06 | 0 | 19369340 |
Notice |
ISTQB Glossary of Testing Terms Version:2.2
VTB
|
2016.05.06
|
Votes 0
|
Views 19185894
|
VTB | 2016.05.06 | 0 | 19185894 |
Notice |
ISTQB Expert Level (CTEL) Syllabus -Test Management (3)
VTB
|
2015.09.13
|
Votes 0
|
Views 19107183
|
VTB | 2015.09.13 | 0 | 19107183 |
Notice |
ISTQB Expert Level (CTEL) Syllabus - Improving the Testing Process (1)
VTB
|
2015.09.13
|
Votes 0
|
Views 19838890
|
VTB | 2015.09.13 | 0 | 19838890 |
Notice |
ISTQB Foundation Level (CTFL) Syllabus 2011 (12)
VTB
|
2014.10.11
|
Votes 0
|
Views 19072002
|
VTB | 2014.10.11 | 0 | 19072002 |
1257 |
ISTQB Question and Answers (Advanced Level)
Steveskok
|
2021.02.07
|
Votes 0
|
Views 19237412
|
Steveskok | 2021.02.07 | 0 | 19237412 |
1256 |
ISTQB Certified Tester Foundation Level Syllabus Version 2018 V3.1
(TestExpert)
|
2020.02.03
|
Votes 0
|
Views 18946145
|
(TestExpert) | 2020.02.03 | 0 | 18946145 |
1255 |
ISTQB Advanced - Technical Test Analyst Sample Exam
ItSeTsQtB
|
2019.08.08
|
Votes 0
|
Views 19869608
|
ItSeTsQtB | 2019.08.08 | 0 | 19869608 |
1254 |
ISTQB Certification and Training Value
^Software^
|
2019.07.22
|
Votes 0
|
Views 19739825
|
^Software^ | 2019.07.22 | 0 | 19739825 |
1253 |
ISTQB Foundation - Agile Tester (Sample Exam)
IT-Tester
|
2019.07.08
|
Votes 0
|
Views 19119688
|
IT-Tester | 2019.07.08 | 0 | 19119688 |
1252 |
ISTQB Advanced - Technical Test Analyst (Sample Exam)
IT-Tester
|
2019.07.08
|
Votes 0
|
Views 19750838
|
IT-Tester | 2019.07.08 | 0 | 19750838 |
1251 |
ISTQB Advanced - Test Analyst (Sample Exam) (1)
IT-Tester
|
2019.07.08
|
Votes 0
|
Views 18992161
|
IT-Tester | 2019.07.08 | 0 | 18992161 |
1250 |
Premium Question Paper 4 (3)
iknev
|
2019.02.22
|
Votes 0
|
Views 19708671
|
iknev | 2019.02.22 | 0 | 19708671 |
1249 |
Premium Question Paper 3 (6)
iknev
|
2019.02.22
|
Votes 0
|
Views 19382655
|
iknev | 2019.02.22 | 0 | 19382655 |
1248 |
Premium Question Paper 1 (2)
iknev
|
2019.02.22
|
Votes 0
|
Views 19335879
|
iknev | 2019.02.22 | 0 | 19335879 |
1247 |
ISTQB Question Bank_ Test Manager Sample Question Set 1
iknev
|
2019.02.22
|
Votes 0
|
Views 19389813
|
iknev | 2019.02.22 | 0 | 19389813 |
1246 |
ISTQB Certified Tester List (FULL)
VTB
|
2018.10.31
|
Votes 0
|
Views 19872557
|
VTB | 2018.10.31 | 0 | 19872557 |
1245 |
ISTQB Agile Exam (Auckland, NZ)
VTB
|
2018.10.28
|
Votes 0
|
Views 20136529
|
VTB | 2018.10.28 | 0 | 20136529 |
1244 |
ISTQB Foundation Exam (Auckland, NZ)
VTB
|
2018.10.28
|
Votes 0
|
Views 19327533
|
VTB | 2018.10.28 | 0 | 19327533 |
1243 |
ISTQB Foundation Course (Auckland, NZ)
VTB
|
2018.10.28
|
Votes 0
|
Views 19629520
|
VTB | 2018.10.28 | 0 | 19629520 |
1242 |
ISTQB Foundation Agile Course (Auckland, NZ)
VTB
|
2018.10.28
|
Votes 0
|
Views 19391968
|
VTB | 2018.10.28 | 0 | 19391968 |
1241 |
ISTQB Course + Internship (Auckland, NZ)
VTB
|
2018.10.28
|
Votes 0
|
Views 19647314
|
VTB | 2018.10.28 | 0 | 19647314 |
1240 |
ISTQB Expert - Improving the Test Process [Sample Exam & Answer] - ISTQB Official
VTB
|
2018.10.26
|
Votes 0
|
Views 19228878
|
VTB | 2018.10.26 | 0 | 19228878 |
1239 |
ISTQB Expert - Test Manager [Sample Exam & Answer] - ISTQB Official (1)
VTB
|
2018.10.26
|
Votes 0
|
Views 19478999
|
VTB | 2018.10.26 | 0 | 19478999 |
1238 |
ISTQB Advanced - Technical Test Analyst [Sample Exam & Answer] - ISTQB Official
VTB
|
2018.10.26
|
Votes 0
|
Views 19582905
|
VTB | 2018.10.26 | 0 | 19582905 |
1237 |
ISTQB Advanced - Test Analyst [Sample Exam & Answer] - ISTQB Official
VTB
|
2018.10.26
|
Votes 0
|
Views 20056758
|
VTB | 2018.10.26 | 0 | 20056758 |
1236 |
ISTQB Advanced - Test Manager [Sample Exam & Answer] - ISTQB Official (1)
VTB
|
2018.10.26
|
Votes 0
|
Views 19123105
|
VTB | 2018.10.26 | 0 | 19123105 |
1235 |
ISTQB Foundation - Model Based Tester [Sample Exam & Answers] - ISTQB Official
VTB
|
2018.10.26
|
Votes 0
|
Views 20337842
|
VTB | 2018.10.26 | 0 | 20337842 |
1234 |
ISTQB Foundation - Agile Tester [Sample Exam & Answer] - ISTQB Official
VTB
|
2018.10.26
|
Votes 0
|
Views 19307576
|
VTB | 2018.10.26 | 0 | 19307576 |
1233 |
ISTQB Foundation - Certified Tester [Sample Exam & Answer] - ISTQB Official (1)
VTB
|
2018.10.26
|
Votes 0
|
Views 19296444
|
VTB | 2018.10.26 | 0 | 19296444 |
1232 |
ISTQB Exam Tips and Tricks
VTB
|
2018.10.16
|
Votes 0
|
Views 19574184
|
VTB | 2018.10.16 | 0 | 19574184 |
1231 |
ISTQB Foundation Level Quiz 20 Questions (1)
aiitistqb
|
2018.10.16
|
Votes 0
|
Views 20443972
|
aiitistqb | 2018.10.16 | 0 | 20443972 |
1230 |
ISTQB Free Sample Exam and Answers
aiitistqb
|
2018.10.16
|
Votes 0
|
Views 19874031
|
aiitistqb | 2018.10.16 | 0 | 19874031 |
1229 |
ISTQB Foundation - Agile Extension Online Courses is live!!
VTB
|
2018.10.16
|
Votes 0
|
Views 19383070
|
VTB | 2018.10.16 | 0 | 19383070 |
1228 |
ISTQB Foundation Online Courses are Live!!
VTB
|
2018.10.12
|
Votes 0
|
Views 19976250
|
VTB | 2018.10.12 | 0 | 19976250 |
1227 |
ISTQB Foundation (Practice Exam)
VTB
|
2018.10.12
|
Votes 0
|
Views 19218231
|
VTB | 2018.10.12 | 0 | 19218231 |
1226 |
CTAL TM Questions (23)
ulissesmafra
|
2018.10.09
|
Votes 1
|
Views 19589316
|
ulissesmafra | 2018.10.09 | 1 | 19589316 |
1225 |
Syllabus 2012 (2)
ulissesmafra
|
2018.10.09
|
Votes 0
|
Views 19137658
|
ulissesmafra | 2018.10.09 | 0 | 19137658 |
1224 |
ISEB & ISTQB EXAM TIPS (3)
Sky Driver
|
2018.09.24
|
Votes 0
|
Views 19138054
|
Sky Driver | 2018.09.24 | 0 | 19138054 |
1223 |
Tips for clearing ISTQB Foundation Level Exam (1)
Sky Driver
|
2018.09.24
|
Votes 0
|
Views 20017910
|
Sky Driver | 2018.09.24 | 0 | 20017910 |
1222 |
Tips for passing the ISTQB Foundation Level exam – Do’s and Don’t’s
Sky Driver
|
2018.09.24
|
Votes 0
|
Views 20192905
|
Sky Driver | 2018.09.24 | 0 | 20192905 |
1221 |
Why do people fail the ISTQB Foundation Certificate? (1)
Sky Driver
|
2018.09.24
|
Votes 0
|
Views 19425188
|
Sky Driver | 2018.09.24 | 0 | 19425188 |
1220 |
ISTQB Foundation Mock Exam 2 (3)
peter_hey
|
2018.09.19
|
Votes 3
|
Views 20148489
|
peter_hey | 2018.09.19 | 3 | 20148489 |
1219 |
ISTQB Foundation Mock Exam 1 (3)
peter_hey
|
2018.09.19
|
Votes 0
|
Views 18929297
|
peter_hey | 2018.09.19 | 0 | 18929297 |
1218 |
What is ISTQB? (1)
master15
|
2018.09.19
|
Votes 0
|
Views 19363034
|
master15 | 2018.09.19 | 0 | 19363034 |
1217 |
Syllabus (2)
richp
|
2018.09.18
|
Votes 0
|
Views 19882076
|
richp | 2018.09.18 | 0 | 19882076 |
1216 |
Learning Objectives for ISTQB Advanced Level Technical Test Analyst Exam (1)
master15
|
2018.09.16
|
Votes 0
|
Views 19182306
|
master15 | 2018.09.16 | 0 | 19182306 |
1215 |
Software Testing Tools used by ISTQB certified Experts like Test Analysts and Technical Test Analysts (2)
master15
|
2018.09.16
|
Votes 0
|
Views 20307898
|
master15 | 2018.09.16 | 0 | 20307898 |
1214 |
What are the Advantages of ISTQB Certifications? (1)
master15
|
2018.09.13
|
Votes 0
|
Views 19839701
|
master15 | 2018.09.13 | 0 | 19839701 |
1213 |
How many Levels of Certification are provided by ISTQB? (1)
master15
|
2018.09.13
|
Votes 0
|
Views 19880386
|
master15 | 2018.09.13 | 0 | 19880386 |
1212 |
Syllabus CTAL-TTA - [BR] (1)
tcorteletti
|
2018.09.09
|
Votes 0
|
Views 18935544
|
tcorteletti | 2018.09.09 | 0 | 18935544 |
1211 |
Syllabus CTFL - [BR] (1)
tcorteletti
|
2018.09.09
|
Votes 0
|
Views 19606120
|
tcorteletti | 2018.09.09 | 0 | 19606120 |
1210 |
ISTQB Certification – Foundation Level syllabus
Sky Driver
|
2018.09.05
|
Votes 0
|
Views 19430296
|
Sky Driver | 2018.09.05 | 0 | 19430296 |
1209 |
Documents to be submitted at the time of registration of ISTQB Advanced Level (2)
Sky Driver
|
2018.09.05
|
Votes 0
|
Views 19481557
|
Sky Driver | 2018.09.05 | 0 | 19481557 |
1208 |
The prerequisites for applying for the ISTQB Advanced Level (1)
Sky Driver
|
2018.09.05
|
Votes 0
|
Views 19656748
|
Sky Driver | 2018.09.05 | 0 | 19656748 |
Thanks