Software Testing and QTP Fundamentals
Covers software testing techniques including boundary value analysis, equivalence partitioning, quality assurance vs control, verification, and QuickTest Professional (QTP) tool functionality including checkpoints, actions, and scripting.
Questions
QTP provides three types of Parameter- * Method Argument * Data Driven * Dynamic
- True
- False
which of the following is NOT true about regular expressions? It is used
- to define object properties
- when parameterizing a step
- when creating checkpoints
- creating function calls
What command you use to open Notepad application using QTP scripting?
- SystemUtil.Run "Notepad.exe"
- RunUtil.Notepad.exe
- Run.Application "Notepad.exe"
- None of the above
It is possible to save the recorded script without active screens
- True
- False
Which of the following is a valid action?
- Runtime Action
- External Action
- Recorded Action
- All the above
When mandatory values are not sufficient to identify an object, we use
- assistive property
- Ordinal identifier
- both a & b
- None of the above
Which of the following is NOT true?
- a function has a single return value
- an action can have more than one output parameters
- Function and action are one and the same
- many functions can be used within an action
The toolbar enables you to view the details of an individual action or the entire test flow is
- Testing toolbar
- Action toolbar
- Test Pane
- None of the above
What is the shortcut key that is used for a Standard Checkpoint?
- F12
- F2
- F10
- F7
Which of the following is not always a pre condition for test execution?
- A properly configured test environment
- A thoroughly specified test procedure
- A process for managing identified defects
- A test Oracle
Which of the following is a dynamic analysis technique related to improving application performance?
- Code complexity analysis
- Profiling
- Network Packet sniffing
- spelling and Grammer checking
Which of the following is an important principle for use of experienced based test techniques?
- Tester skill is a critical factor in assignment of test execution tasks
- Tester skills are less imporatant than ensuring 100% tester utilization
- Tester should always focus on defect-preventing activities
- Tester should be evaluated based on the number of defects they find
Which of the following review type involves a determination of compliance or noncompliance?
- Audit
- Walk-through
- Inspection
- Managment Review
Which of the following is a section included in an IEEE 829 - compliant incident report?
- Test Items
- Procedure steps
- Location
- Steps to reproduce
Which question does the term 'Verification' address?
- Have we built the software right?
- Have we built the right software?
- Have we built the software?
- Have we built error free software?
Quality Assurance Methods are usually considered :
- Detective
- Preventive
- Corrective
- Protective
Quality Assurance Methods are usually considered :
- Detective
- Preventive
- Corrective
- Protective
Quality Control activities are usually considered:
- Preventive
- Protective
- Corrective
- Detective
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 input value sets covers all of the equivalence partitions?
- 10,11,21
- 3,20,21
- 3,10,22
- 10,21,22
Boundary Value Testing
- is the same as equivalence partition testing
- tests values at the smallest incremental distance on either side of an equivalence partition boundary
- tests combinations of input circumstances
- is used in white box testing strategies