You are on page 1of 35

(1).

which of the following form a part of the 'Test control' activity:

i. Identify the objectives of testing


ii. Monitor and document progress, test coverage and exit criteria
iii. Initiate corrective actions
iv. Make decisions

i, ii and iv only
i, ii, iii and iv
i and ii only
ii, iii and iv only
  
An-ii, iii and iv only

(2). Class consists of


Methods
None of the options
Attributes
Class

An - attributes

(3). What type of review requires formal entry and exit criteria, including metrics ?

Management review
Post project review
Walkthrough
Inspection

An –Inspection

(4). Security tools

Complex business logic can be reused reliving clients from having to code the applications logic
(the "fat client" approach).
Application components are loosely coupled , therefore easily modifiable
High network traffic

AN-High network traffic

(5). Test Leads Skills

I. Challenging and inquiring mind


II. Analytical and logical thinking with Good leadership skills
III. Attention to detail and tenacity skill
IV. Understanding of common software failures and faults
V. Financial Planning

II and IV only
V only
I and III only
I, II , III and VI Only

AN - I, II, III and VI Only

(6). Which of the following characterizes the cost of faults?

Faults are cheapest to find in the early development phases but the most expensive to fix then.
Although faults are most expensive to find during early development phases, they are cheapest to
fix then.
They are easiest to find during system testing but the most expensive to fix then.
They are cheapest to find in the early development phases and the most expensive to fix in
the latest test phases. XX

7). Which of the following is not a Review technique ?

Design Analysis XX
Inspection
Peer Review
Walkthrough

(8). Which of the following displays an exit criterion for the test team?

Defect triage meetings to discuss the open defect backlog and completion of defect closure X
The test team has executed the entire planned tests against the application under test. XX
The Development teams have unit-tested all features and defect fixes scheduled for release. X
All software released to the test team is accompanied by release notes X

9). Cyclomatic Complexity directly measures the number of linearly independent paths through a
program's source code. Is this statement true or false?

FALSE
TRUE XX

(10). I need to perform a query on a table based on certain criterion. I am expecting around 70 %
of the records to be matched. The column on which I am performing my filter condition is
having an index. And the optimizer refers to the index to match rows. But still the performance is
slow. What can I do to improve the performance ?

Rebuild the index


Create another index on the same column
Don’t drop the index instead use a hint
Drop the index , as almost 70 % rows are being retrieved

(11). Following can be used as a solution for one of the Software Test Automation challenges
""Build an evaluation scorecard to compare the performance of the tools against a common set of
criteria"". What is this challenge?

Tool Training
Coverage of Test Types
Selection of Tool XX
Organizing the Test team

(12). Which of the following displays an exit criterion for the test team?

All software released to the test team is accompanied by release notes


The test team has executed the entire planned tests against the application under test. XX
The Development teams have unit-tested all features and defect fixes scheduled for release.
Defect triage meetings to discuss the open defect backlog and completion of defect closure

(13). Testers Tasks

I. Analyze, review and assess user requirements, specifications and models for testability.
II. Understand Test Plan
III. Create test specifications and test data.
IV. Peer reviews
V. Set up adequate configuration management of testware for traceability.

II and IV only
I and III only
V only
I, II, III and IV only XX

(14). Which of the following characteristics is primarily associated with software reusability?

The capability of the software to be moved to a different platform X


The extent to which the software can be used in other applications XX
The capability of one system to be coupled with another system X
The extent to which the software can be used by many different users X

(15). Test Case should contain input and output of an action. Is this statement true or false?

FALSE
TRUE X

(16). Disadvantages of 3 tier:

System complexity - extremely complex to program and debug Security issues XX


Application components are loosely coupled , therefore easily modifiable
Complex business logic can be reused reliving clients from having to code the applications logic
(the "fat client" approach)
Security issues

(17). "In Exploratory testing, test design, test execution, and test logging happen concurrently".
Is this statement true or false?

FALSE
TRUE XX

(18). ___________ Testing focuses on evaluating the interaction among units

Functional testing
Integration testing XX
Unit testing
System testing

(19). Among the following what is the most important factor that need to consider when
selecting a Testing Technique?

Type of risks involved. xX


Knowledge of the QA/Test teams
Time to deliver
Organization Process and Policies

(20). Which type of tool supports stressing the system by searching specific vulnerabilities of the
system?

Dynamic analysis tools


Security tools XX
Test execution tools X
Test harness/unit test framework tools
(21). An object in an application contains an attribute called status which can be of many types –
0 New,
1 In-Progress
2 Hold etc
During the transaction the object can take many status sometimes more than 1.
Storing this object as a single row in a single table will violate which normal form?

4
1
3
2

(22). Which of the following is true for a composite primary key

The outer column should have least distinct value


The outer column should have most distinct values
The inner columns should have most distinct values
The inner column should have least distinct values

(23). Testing of software, used to convert data from existing systems for use in replacement
systems is termed as :

Configuration testing
Data driven testing
Migration testing XX
Back to back testing

(24). The information generated by data-flow analysis can be used to: Choose the most irrelevant
answer.

Detect many simple programming or logical faults in the program.


Other forms of static analysis.
Provide testers with dependencies between the dentition and use of variables.
System run time errors. XX
(26). Which one of the following is not a Input Functions

alert()
MsgBox() XX
InputBox()
Test()

(27). What is the main difference between a Walkthrough and an Inspection?

A walkthrough is lead by the author, whilst an inspection is lead by a trained moderator.


XX
An inspection has a trained leader, whilst a walkthrough has no leader. X
Authors are not present during inspections, whilst they are during walkthroughs. X
An inspection is lead by the author, whilst a walkthrough is lead by a trained moderator. X

(6). Which of the following characterizes the cost of faults?

Faults are cheapest to find in the early development phases but the most expensive to fix then.
Although faults are most expensive to find during early development phases, they are cheapest to
fix then.
They are easiest to find during system testing but the most expensive to fix then.
They are cheapest to find in the early development phases and the most expensive to fix in
the latest test phases. XX

7). Which of the following is not a Review technique ?

Design Analysis XX
Inspection
Peer Review
Walkthrough

(8). Which of the following displays an exit criterion for the test team?

Defect triage meetings to discuss the open defect backlog and completion of defect closure X
The test team has executed the entire planned tests against the application under test. XX
The Development teams have unit-tested all features and defect fixes scheduled for release. X
All software released to the test team is accompanied by release notes X
9). Cyclomatic Complexity directly measures the number of linearly independent paths through a
program's source code. Is this statement true or false?

FALSE
TRUE XX

(10). I need to perform a query on a table based on certain criterion. I am expecting around 70 %
of the records to be matched. The column on which I am performing my filter condition is
having an index. And the optimizer refers to the index to match rows. But still the performance is
slow. What can I do to improve the performance ?

Rebuild the index


Create another index on the same column
Don’t drop the index instead use a hint
Drop the index , as almost 70 % rows are being retrieved

(11). Following can be used as a solution for one of the Software Test Automation challenges
""Build an evaluation scorecard to compare the performance of the tools against a common set of
criteria"". What is this challenge?

Tool Training
Coverage of Test Types
Selection of Tool XX
Organizing the Test team

(12). Which of the following displays an exit criterion for the test team?

All software released to the test team is accompanied by release notes


The test team has executed the entire planned tests against the application under test. XX
The Development teams have unit-tested all features and defect fixes scheduled for release.
Defect triage meetings to discuss the open defect backlog and completion of defect closure

(13). Testers Tasks

I. Analyze, review and assess user requirements, specifications and models for testability.
II. Understand Test Plan
III. Create test specifications and test data.
IV. Peer reviews
V. Set up adequate configuration management of testware for traceability.
II and IV only
I and III only
V only
I, II, III and IV only XX

(14). Which of the following characteristics is primarily associated with software reusability?

The capability of the software to be moved to a different platform X


The extent to which the software can be used in other applications XX
The capability of one system to be coupled with another system X
The extent to which the software can be used by many different users X

(15). Test Case should contain input and output of an action. Is this statement true or false?

FALSE
TRUE X

(16). Disadvantages of 3 tier:

System complexity - extremely complex to program and debug Security issues XX


Application components are loosely coupled , therefore easily modifiable
Complex business logic can be reused reliving clients from having to code the applications logic
(the "fat client" approach)
Security issues

(17). "In Exploratory testing, test design, test execution, and test logging happen concurrently".
Is this statement true or false?

FALSE
TRUE XX

(18). ___________ Testing focuses on evaluating the interaction among units

Functional testing
Integration testing XX
Unit testing
System testing

(19). Among the following what is the most important factor that need to consider when
selecting a Testing Technique?
Type of risks involved. xX
Knowledge of the QA/Test teams
Time to deliver
Organization Process and Policies

(20). Which type of tool supports stressing the system by searching specific vulnerabilities of the
system?

Dynamic analysis tools


Security tools XX
Test execution tools X
Test harness/unit test framework tools

(21). An object in an application contains an attribute called status which can be of many types –
0 New,
1 In-Progress
2 Hold etc
During the transaction the object can take many status sometimes more than 1.
Storing this object as a single row in a single table will violate which normal form?

4
1
3
2

(22). Which of the following is true for a composite primary key

The outer column should have least distinct value


The outer column should have most distinct values
The inner columns should have most distinct values
The inner column should have least distinct values

(23). Testing of software, used to convert data from existing systems for use in replacement
systems is termed as :
Configuration testing
Data driven testing
Migration testing XX
Back to back testing

(24). The information generated by data-flow analysis can be used to: Choose the most irrelevant
answer.

Detect many simple programming or logical faults in the program.


Other forms of static analysis.
Provide testers with dependencies between the dentition and use of variables.
System run time errors. XX

(26). Which one of the following is not a Input Functions

alert()
MsgBox() XX
InputBox()
Test()

(27). What is the main difference between a Walkthrough and an Inspection?

A walkthrough is lead by the author, whilst an inspection is lead by a trained moderator.


XX
An inspection has a trained leader, whilst a walkthrough has no leader. X
Authors are not present during inspections, whilst they are during walkthroughs. X
An inspection is lead by the author, whilst a walkthrough is lead by a trained moderator. X

(28). Which one of the following is not a Error Handling

Err.Raise
Use Err.Number
on error resume next
on error resume Previous XX

(29). Select the most appropriate test conducted during Functional Testing

Usability testing
Boundary value analysis XX
Security testing
Performance testing

(30). We split testing into distinct stages primarily because:

The more stages we have, the better the testing.


Each test stage has a different purpose.
It is easier to manage testing in stages.
We can run different tests in different environments.

(31). Among the following what is NOT true regarding white box testing?

Structural techniques are best used after specification-based


Structural testing is not based on the architecture of the system XX
White-box testing may be performed at all test levels.
Help measure the thoroughness of testing through assessment of coverage of a type of structure.

(32). Choose an incorrect statement:

Testers at the acceptance test level should be business experts and users
Testers for risk-management should be test analysts XX
Testers at the component and integration level should be developers
Testers for operational acceptance testing should be operators
.

(33). Among the following what is not a useful/correct tip to plan a test?

Test cases in the same equivalence class will all reveal the same fault
Use boundary value analysis to find the very-common bugs that lurk in corners and congregate at
boundaries
Use equivalence class partitioning to manage the number of test cases run
Use decision tables for simpler business rules

(28). Testing which is carried out using no test case design:

Smoke Testing
Recovery Testing
Adhoc Testing Xx
Usability Testing
Management review
(27). In which View does QTP display all actions performed in a hierarchical manner and the
operations within the actions contained in a script?

Data Sheet View


Keyword View
Expert View XX
Active Screen View

(25). What type of review requires formal entry and exit criteria, including metrics ?

Walkthrough
Post project review
Inspection XX

(20). What are the default Add-ins in QTP?

1.Active X Controls 2. Web 3. Visual Basic Xx Refer -


http://www.allinterview.com/showanswers/26327.html
1. Active X Controls 2. Web 3. .Net
1. Windows 2. Web 3. Visual Basic
1. Active X Controls 2. Java add-in 3. Visual Basic

(19). White box test design is done base on the structure of the software. Is this statement true or
false?

FALSE
TRUE XX

(1). which of the following form a part of the 'Test control' activity:

i. Identify the objectives of testing


ii. Monitor and document progress, test coverage and exit criteria
iii. Initiate corrective actions
iv. Make decisions

i, ii and iv only
i, ii, iii and iv
i and ii only
ii, iii and iv only
  
(2). Class consists of
Methods
None of the options
Attributes
Class

(3). What type of review requires formal entry and exit criteria, including metrics ?

Management review
Post project review
Walkthrough
Inspection

(4). Security tools

Complex business logic can be reused reliving clients from having to code the applications logic
(the "fat client" approach).
Application components are loosely coupled , therefore easily modifiable
High network traffic

(5). Test Leads Skills

I. Challenging and inquiring mind


II. Analytical and logical thinking with Good leadership skills
III. Attention to detail and tenacity skill
IV. Understanding of common software failures and faults
V. Financial Planning

II and IV only
V only
I and III only
I, II , III and VI Only

(6). Which of the following characterizes the cost of faults?

Faults are cheapest to find in the early development phases but the most expensive to fix then.
Although faults are most expensive to find during early development phases, they are cheapest to
fix then.
They are easiest to find during system testing but the most expensive to fix then.
They are cheapest to find in the early development phases and the most expensive to fix in the
latest test phases.
7). Which of the following is not a Review technique ?

Design Analysis
Inspection
Peer Review
Walkthrough
 

(8). Which of the following displays an exit criterion for the test team?

Defect triage meetings to discuss the open defect backlog and completion of defect closure
The test team has executed the entire planned tests against the application under test.
The Development teams have unit-tested all features and defect fixes scheduled for release.
All software released to the test team is accompanied by release notes

(9). Cyclomatic Complexity directly measures the number of linearly independent paths through
a program's source code. Is this statement true or false?

FALSE
TRUE

(10). I need to perform a query on a table based on certain criterion. I am expecting around 70 %
of the records to be matched. The column on which I am performing my filter condition is
having an index. And the optimizer refers to the index to match rows. But still the performance is
slow. What can I do to improve the performance ?

Rebuild the index


Create another index on the same column
Don't drop the index instead use a hint
Drop the index , as almost 70 % rows are being retrieved

(11). Following can be used as a solution for one of the Software Test Automation challenges
""Build an evaluation scorecard to compare the performance of the tools against a common set of
criteria"". What is this challenge?

Tool Training
Coverage of Test Types
Selection of Tool
Organizing the Test team
(12). Which of the following displays an exit criterion for the test team?

All software released to the test team is accompanied by release notes


The test team has executed the entire planned tests against the application under test.
The Development teams have unit-tested all features and defect fixes scheduled for release.
Defect triage meetings to discuss the open defect backlog and completion of defect closure

(13). Testers Tasks

I. Analyze, review and assess user requirements, specifications and models for testability.
II. Understand Test Plan
III. Create test specifications and test data.
IV. Peer reviews
V. Set up adequate configuration management of test ware for traceability.

II and IV only
I and III only
V only
I, II, III and IV only

(14). Which of the following characteristics is primarily associated with software reusability?

The capability of the software to be moved to a different platform


The extent to which the software can be used in other applications
The capability of one system to be coupled with another system
The extent to which the software can be used by many different users

(15). Test Case should contain input and output of an action. Is this statement true or false?
FALSE
TRUE

(16). Disadvantages of 3 tier:


System complexity - extremely complex to program and debug Security issues
Application components are loosely coupled , therefore easily modifiable
Complex business logic can be reused reliving clients from having to code the applications logic
(the "fat client" approach)
Security issues

 
(17). "In Exploratory testing, test design, test execution, and test logging happen concurrently".
Is this statement true or false?
FALSE
TRUE

(18). __________ Testing focuses on evaluating the interaction among units

Functional testing
Integration testing
Unit testing
System testing

(19). Among the following what is the most important factor that need to consider when
selecting a Testing Technique?

Type of risks involved.


Knowledge of the QA/Test teams
Time to deliver
Organization Process and Policies
 

(20). Which type of tool supports stressing the system by searching specific vulnerabilities of
the system?

Dynamic analysis tools


Security tools
Test execution tools
Test harness/unit test framework tools

(21). An object in an application contains an attribute called status which can be of many types –
0 New, 1 In-Progress 2 Hold etc During the transaction the object can take many status
sometimes more than 1. Storing this object as a single row in a single table will violate which
normal form?

4
1
3
2

(22). Which of the following is true for a composite primary key

The outer column should have least distinct value


The outer column should have most distinct values
The inner columns should have most distinct values
The inner column should have least distinct values

(23). Testing of software, used to convert data from existing systems for use in replacement
systems is termed as :

Configuration testing
Data driven testing
Migration testing
Back to back testing

(24). The information generated by data-flow analysis can be used to: Choose the most
irrelevant answer.

Detect many simple programming or logical faults in the program.


Other forms of static analysis.
Provide testers with dependencies between the dentition and use of variables.
System run time errors.

 (25). What is the difference between a stored database procedure and a batch of SQL statements
submitted by a client application?

Stored procedures do not need to be written in SQL


Stored procedures are typically pre-compiled and pre-optimized at the server
Stored procedures prevent unauthorized access to data
Stored procedures are always written by the RDBMS vendor and are well-tested

(26). Which one of the following is not a Input Functions

alert()
MsgBox()
InputBox()
Test()

(27). What is the main difference between a Walkthrough and an Inspection?

A walkthrough is lead by the author, whilst an inspection 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.
An inspection is lead by the author, whilst a walkthrough is lead by a trained moderator.
(28). Which one of the following is not a Error Handling

Err.Raise
Use Err.Number
on error resume next
on error resume Previous XX

(29). Select the most appropriate test conducted during Functional Testing

Usability testing
Boundary value analysis XX
Security testing
Performance testing

(30). We split testing into distinct stages primarily because:

The more stages we have, the better the testing.


Each test stage has a different purpose.
It is easier to manage testing in stages.
We can run different tests in different environments.

(31). Among the following what is NOT true regarding white box testing?
Structural techniques are best used after specification-based
Structural testing is not based on the architecture of the system XX
White-box testing may be performed at all test levels.
Help measure the thoroughness of testing through assessment of coverage of a type of structure.

(32). Choose an incorrect statement:

Testers at the acceptance test level should be business experts and users
Testers for risk-management should be test analysts XX
Testers at the component and integration level should be developers
Testers for operational acceptance testing should be operators
.

(33). Among the following what is not a useful/correct tip to plan a test?

Test cases in the same equivalence class will all reveal the same fault
Use boundary value analysis to find the very-common bugs that lurk in corners and congregate at
boundaries
Use equivalence class partitioning to manage the number of test cases run
Use decision tables for simpler business rules
(34). Testing which is carried out using no test case design:

Smoke Testing
Recovery Testing
Adhoc Testing Xx
Usability Testing
Management review

(35). In which View does QTP display all actions performed in a hierarchical manner and the
operations within the actions contained in a script?

Data Sheet View


Keyword View
Expert View
Active Screen View

(36). What type of review requires formal entry and exit criteria, including metrics ?

Walkthrough
Post project review
Inspection XX

(37). What are the default Add-ins in QTP?

1.Active X Controls 2. Web 3. Visual Basic Xx Refer -


http://www.allinterview.com/showanswers/26327.html
1. Active X Controls 2. Web 3. .Net
1. Windows 2. Web 3. Visual Basic
1. Active X Controls 2. Java add-in 3. Visual Basic

(38). White box test design is done base on the structure of the software. Is this statement true or
false?

FALSE
TRUE XX

Re: what is the purpose of QTP?


Answer QTP is a automated testing tool build by HP to
# 1 help
performing certain type of testing in
automated fashion.
Its quick, more accurate than manual testing
(at times) and
provides many options.
Note- double check the answers buddy
(1). which of the following form a part of the 'Test control' activity:

i. Identify the objectives of testing


ii. Monitor and document progress, test coverage and exit criteria
iii. Initiate corrective actions
iv. Make decisions

i, ii and iv only
i, ii, iii and iv
i and ii only
ii, iii and iv only
  
An-ii, iii and iv only

(2). Class consists of


Methods
None of the options
Attributes
Class

An - attributes

(3). What type of review requires formal entry and exit criteria, including metrics ?

Management review
Post project review
Walkthrough
Inspection

An –Inspection

(4). Security tools

Complex business logic can be reused reliving clients from having to code the applications logic
(the "fat client" approach).
Application components are loosely coupled , therefore easily modifiable
High network traffic

AN-High network traffic


(5). Test Leads Skills

I. Challenging and inquiring mind


II. Analytical and logical thinking with Good leadership skills
III. Attention to detail and tenacity skill
IV. Understanding of common software failures and faults
V. Financial Planning

II and IV only
V only
I and III only
I, II , III and VI Only

AN - I, II, III and VI Only

(6). Which of the following characterizes the cost of faults?

Faults are cheapest to find in the early development phases but the most expensive to fix then.
Although faults are most expensive to find during early development phases, they are cheapest to
fix then.
They are easiest to find during system testing but the most expensive to fix then.
They are cheapest to find in the early development phases and the most expensive to fix in the
latest test phases.

AN-They are easiest to find during system testing but the most expensive to fix then.

7). Which of the following is not a Review technique ?

Design Analysis
Inspection
Peer Review
Walkthrough
 
An-Design Analysis

(8). Which of the following displays an exit criterion for the test team?

Defect triage meetings to discuss the open defect backlog and completion of defect closure
The test team has executed the entire planned tests against the application under test.
The Development teams have unit-tested all features and defect fixes scheduled for release.
All software released to the test team is accompanied by release notes

AN-
(9). Cyclomatic Complexity directly measures the number of linearly independent paths through
a program's source code. Is this statement true or false?

FALSE
TRUE
AN-TRUE

(10). I need to perform a query on a table based on certain criterion. I am expecting around 70 %
of the records to be matched. The column on which I am performing my filter condition is
having an index. And the optimizer refers to the index to match rows. But still the performance is
slow. What can I do to improve the performance ?

Rebuild the index


Create another index on the same column
Don't drop the index instead use a hint
Drop the index , as almost 70 % rows are being retrieved

AN-Don't drop the index instead use a hint

(11). Following can be used as a solution for one of the Software Test Automation challenges
""Build an evaluation scorecard to compare the performance of the tools against a common set of
criteria"". What is this challenge?

Tool Training
Coverage of Test Types
Selection of Tool
Organizing the Test team

AN-Selection of Tool

(12). Which of the following displays an exit criterion for the test team?

All software released to the test team is accompanied by release notes


The test team has executed the entire planned tests against the application under test.
The Development teams have unit-tested all features and defect fixes scheduled for release.
Defect triage meetings to discuss the open defect backlog and completion of defect closure

AN-

 (13). Testers Tasks

I. Analyze, review and assess user requirements, specifications and models for testability.
II. Understand Test Plan
III. Create test specifications and test data.
IV. Peer reviews
V. Set up adequate configuration management of test ware for traceability.

II and IV only
I and III only
V only
I, II, III and IV only

AN-I, II, III and IV only

(14). Which of the following characteristics is primarily associated with software reusability?

The capability of the software to be moved to a different platform


The extent to which the software can be used in other applications
The capability of one system to be coupled with another system
The extent to which the software can be used by many different users

AN-The capability of one system to be coupled with another system

(15). Test Case should contain input and output of an action. Is this statement true or false?
FALSE
TRUE

AN- TRUE

(16). Disadvantages of 3 tier:


System complexity - extremely complex to program and debug Security issues
Application components are loosely coupled , therefore easily modifiable
Complex business logic can be reused reliving clients from having to code the applications logic
(the "fat client" approach)
Security issues

AN- Security issues


 
(17). "In Exploratory testing, test design, test execution, and test logging happen concurrently".
Is this statement true or false?

FALSE
TRUE

AN –TRUE
(18). __________ Testing focuses on evaluating the interaction among units

Functional testing
Integration testing
Unit testing
System testing

AN-Integration testing

(19). Among the following what is the most important factor that need to consider when
selecting a Testing Technique?

Type of risks involved.


Knowledge of the QA/Test teams
Time to deliver
Organization Process and Policies
 
AN-Type of risks involved.

(20). Which type of tool supports stressing the system by searching specific vulnerabilities of
the system?

Dynamic analysis tools


Security tools
Test execution tools
Test harness/unit test framework tools

NA-Security tools

(21). An object in an application contains an attribute called status which can be of many types –
0 New, 1 In-Progress 2 Hold etc During the transaction the object can take many status
sometimes more than 1. Storing this object as a single row in a single table will violate which
normal form?

4
1
3
2

AN-

(22). Which of the following is true for a composite primary key

The outer column should have least distinct value


The outer column should have most distinct values
The inner columns should have most distinct values
The inner column should have least distinct values

AN –

(23). Testing of software, used to convert data from existing systems for use in replacement
systems is termed as :

Configuration testing
Data driven testing
Migration testing
Back to back testing

AN-Migration testing

(24). The information generated by data-flow analysis can be used to: Choose the most
irrelevant answer.

Detect many simple programming or logical faults in the program.


Other forms of static analysis.
Provide testers with dependencies between the dentition and use of variables.
System run time errors.

AN- System run time errors.

 (25). What is the difference between a stored database procedure and a batch of SQL statements
submitted by a client application?

Stored procedures do not need to be written in SQL


Stored procedures are typically pre-compiled and pre-optimized at the server
Stored procedures prevent unauthorized access to data
Stored procedures are always written by the RDBMS vendor and are well-tested

AN- Stored procedures are typically pre-compiled and pre-optimized at the server

(26). Which one of the following is not a Input Functions

alert()
MsgBox()
InputBox()
Test()

AN- Test()
(27). What is the main difference between a Walkthrough and an Inspection?

A walkthrough is lead by the author, whilst an inspection 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.
An inspection is lead by the author, whilst a walkthrough is lead by a trained moderator.

AN-A walkthrough is lead by the author, whilst an inspection is lead by a trained


moderator.

Plan
Test

Design
Test

Automatio Yes
Automate tests
n

N
o
Execute Test

Evaluate Test

No Adherence To Exit Criteria

Yes

• SELECT [DISTINCT] target-list


FROM relation-list
[WHERE qualification]

• The clauses of the subselect are processed in the following sequence:


-FROM clause
-WHERE clause
-GROUP BY clause
-HAVING clause
-ORDER BY clause

• SELECT name
FROM branch
WHERE city = ‘Jakarta’ AND assets <1000000

• SELECT e.Name, o.Product


FROM Employees e, Orders o
WHERE Employees.Employee_ID=Orders.Employee_ID

• SELECT AVG(assets) FROM branch

• The Aggregate functions are


• AVG MAX
• MIN COUNT
• SUM

• GROUP BY:
• Indicates the aggregating column
Example:
SELECT city FROM branch GROUP BY city HAVING AVG(assets) > 2000000
• ORDER BY:
• The ORDER BY clause is used to sort the output rows.

• SELECT city FROM branch ORDER BY city

• Indexes are created in an existing table to locate rows more quickly and efficiently.
• It is possible to create an index on one or more columns of a table, and each index is
given a name.
• Indexes are used to speed up queries.
• When a table is dropped indexes also gets dropped
Example
• CREATE INDEX index_name ON table_name (column_name)

• The "column_name" specifies the column on which it has to be indexed


• Existing index on a table can be dropped with the DROP INDEX statement.

• Stored procedures are precompiled database queries along with some business logic
• Stored inside the database therefore can be reused
• Since it is precompiled , execution time is less

Scope Time
Quality Resource

Risk
(1). Baselining criteria for a Business Requirement Document is
 
Acceptance by Project Leadership team

Sign off by Client

Acceptance by Delivery Head

Review by Project Leadership team

(2). Out of these identify the MOST critical aspect to be recorded in the Test log against a defect?
 
Details for error simulation

Defect Categorization

Cause of the Defect

Tester Details

(3). What is TRUE about tailoring a PTR?


 
PTR can be modified during the course of the project

All Disciplines must be included

PTR is not applicable when Client templates are being followed

PTR is approved by the Delivery Head

(4). Subhadra is new to Virtusa. From where can Subhadra find the code naming conventions to be used in her
project?
 
Configuration Management Plan

Technology Standards

Requirements Management Plan

Configuration Status Report

(5). What is normally NOT discussed in an Account Business Review ?


 
SARB Comments

Score Card Trends

CDI

New Business Opportunities

(6). Sujatha is a developer and she attended a technical discussion session with the Onsite / Client Tech Lead.
Which Pulse category should she log this effort to?
 
Virtusa - Admin project (as there is no Pulse category called technical discussions in the project's pulse
categories)
Implementation - Others (because it is a meeting)
Construction

Project Management (because it is a meeting)


 
(7). Against what would a POC be evaluated?
 
Against acceptance Criteria in Project Acceptance
document
As defined in the Project Approach Document

Against Criteria in Project Engineering Guidelines


Against identified Architecturally Significant
Requirements
 
(8). With regards to GIP process components, what is NOT a valid
relationship
 
An activity is performed by a role

A role is responsible for an artifact creation, maintenance and update

Software Engineering Process is organized into Disciplines

An activity refers to a template


 
(9). Identify what will NOT normally give raise to a change request?
 
Code Change following Unit Testing

Changes to code due to QA review

Changes due to Client requirement during design review

Requirements Change to SARB review

(10). The QATP needs to be approved by


 
Project Manager and Test Analyst

Test Analyst

Client

Project Manager and PQA

(11). During Detailed Design how does one address non functional requirements?
 
By mapping Design elements to State Chart Diagram

By associating core technical service to individual class

Through traceability Matrix

By mapping design to PoC

(12). Approving Authority for User Manual is


 
Business Quality Partner

Delivery Head

Deployment Manager

Client

(13). Which artifact holds the list of  "To be Decided" requirements
 
Traceability Matrix

Business Requirement Document

Issue Log

Business Requirement Log

 
(14). If the Project Manager prepares the PTR. Who needs to maintain it?
 
Account Quality Partner

SEPG

BU Quality Partner

Project Manager

 
(15). What is the main intent of an Engineering Rigor Audit?
 
To evaluate the ability of the project team to meet the non-functional requirements

To identify instances in code where GIP standards have not be followed

To evaluate the maturity of engineering practices within a project

To evaluate the technical skills of the project team

(16). Identify what will NOT influence the Quality Plan for a project?
 
None

Audit Summary Results

Feed from other Quality Partners

Areas of improvements for the project

(17). What BEST describes the principle of classification of a nonconformance into  Major or a Minor NC?
 
If there are multiple occurrence of the same lapse the finding is classified as a Major NC

If the discipline to which it is attributed is a delivery related discipline, it is a Major NC

Any finding against the performance of a process (Activity) is classified as a Major NC

Classification is based on the potential risk the lapse can cause to the project's success
 
(18).  "Perform Architectural Analysis and Design" is NOT required for
 
Small Enhancement Projects

Systems with existing well-defined architecture

Technology Migration Projects

For Maintenance Projects

 
(19). What is the prescribed frequency for Account Delivery Review for a Strategic Account with AHI 5?
 
Weekly

Once in two months

Fortnightly

Monthly

(20). All units have been tested and integration activities have been completed. The team now prepares the
developer release note. Identify the PRIMARY intent of the Developer Release Notes
 
Provides insight to the deployment manager on limitations of the system

Provides the Client an insight into limitation of the system

Provides key information on the current release to QA

Provides the deployment manger information about known defects

(21). Rework Effort Index DOES NOT include


 
Re-estimation

Correction to the Design components

Code Fixes

Writing the test cases for the functionality not covered which is identified during testing

(22). Identify the condition which will NOT normally be tested in a developer test case?
 
Negative Testing

Boundary Condition behavior

Coverage Testing

Stress Testing

 
(23). Who should approve the Project Approach Note?
 
Delivery Head, as he is the management representative
Account Owner, as he is the senior management representative

Quality Partner, as he is responsible for the process framework

PQA, as he has to facilitate process implementation

(24). When should a Configuration Management Plan be available for the project team?
 
During the Construction Phase

Before the construction phase

By beginning of Elaboration Phase

During the Elaboration Phase

 
(25). What is the PRIMARY intent of bi-directional traceability
 
To identify all requirements are translated into implementation, to verify all features implemented can be
traced to an approved source and traceability between requirements is maintained for ensuring integrity
To identify features in the deliverable that are aligned to requirements specified by users

To provide inputs for configuration management


To identify features in the deliverable that are not mapped to any user specified or design driven
requirement

(26). Which is the Group that is responsible for maintaining GIP


 
Quality Champions

SPI Team Lead

Project Leadership

OCM

(27). What does a PCI indicate


 
Process Capability Index

Project Capability Index

Process Compliance Index

Project Compliance Index

 
(28). Requirements Management Plan is to be signed off by
 
BU Quality Partner

Change Control Board

Business Analyst

Client

 
(29). As per the GIP guidelines what is the thumb rule for affixing the size of the lowest node in a WBS ?
 
The task should NOT be in the critical path

The task should result in a measurable deliverable

The task should not have any dependency

The task should atleast be 40 hours of duration

 
(30). What is NOT a prerequisite for initiating test at client site?
 
Availability of relevant infrastructure

Availability of relevant support software

Automated Defect tracking mechanism


Agreed upon Test Environment Configuration

(31). What will NOT be described in a Configuration Management Plan?


 
Development Environment Details

Control Test Environment Details

UAT Environment Details

Integration Testing Environment Details

(32). What is NOT normally done during an interim Build Process?


 
Logging Build defects

Checking out code from repository

Preparing build release note

Deployment on test machine

 
(33). What is normally NOT included in a deployment package?
 
User Manual

Installation Manual

Review Reports

Operations Manual

(34). What is incorrect about Contract Compliance Checklist?


 
It is prepared by Project Manager
It is published at agreed intervals to the Client

The process is owned by Account Owner

The minimum prescribed frequency is fortnightly

(35). Identify what is NOT an appropriate status during change approval?


 
Rejected

Accepted

Duplicate

Hold

(36). Sumathy is to lead the QA testing of a system. Where can she find the acceptance criteria for Testing
 
Release Management Plan

Project Approach Document

Requirements Management Plan

QATP

(37). What is NOT an accurate statement about the GIP component ROLE
 
Roles are restricted to people within the organization

Roles perform activities

A role is an abstract definition of a set of activities performed and artifacts owned.

Roles are NOT individuals but represent how they behave in the business environment

(38). What is NOT a key criteria for evaluating adequacy of a requirement statement
 
Secure

Simple

Verifiable

Accurate
 

(39). What is of LEAST importance as an input to process improvement initiatives


 
Internal Audit Report

Team Score Card

Project Risk List

QA Testing reports

(40). As per the PTR template in GIP, what are the Mandatory activity for a maintenance project?
 
Project Effort Estimate

None of the options

Deployment Plan

QATP

(41). Where do you find the list of Business Objectives of Virtusa?


 
QI Sheet

Metrics Description Document (MDD)

Organizational Objectives Document

Metrics Profile Document

 
(42). What is accurate about the activity "Designing of Core Technical Services"?
 
This activity involves planning for non-functional requirements

This activity is initiated in the Inception phase

This activity need not maintain DAR

This activity is performed on completion of PoC

You might also like