Home > Computer Science
Q 1.

Reporting Discrepancies as incidents is a part of which phase?

A)  Test Implementation and execution
B)  Evaluating exit criteria and reporting
C)  Test Analysis and Design
D)  Test Closure Activities
Answer & Explanation Answer: Test Implementation and execution

Explanation:

View Answer   Discuss

MCQ Type: Computer Science, Software Engineering

Q 2.

Configuration management is not concerned with ?

A)  Maintaining versions of software
B)  Controlling documentation changes
C)  Controlling changes to the source code
D)  Choice of hardware configuration for an application
Answer & Explanation Answer: Choice of hardware configuration for an application

Explanation:

View Answer   Discuss

MCQ Type: Computer Science, Software Engineering

Q 3.

The SQL statements that take care of security and authorization are ?

A)  DDL
B)  DML
C)  DCL
D)  None
Q 4.

What methodologies have you used to develop test cases?

Answer & Explanation Explanation:

I have used following 4 types of Methodologies:

1. Boundary value analysis

2. Equivalence partitioning

3. Error guessing

4. Cause effect graphing

View Answer   Discuss

MCQ Type: Computer Science, Software Engineering

Q 5.

What is the role of QA in a project development?

Answer & Explanation Explanation:

The word assurance means ‘guarantee’. So the Quality Assurance Group’s role is to guarantee that the product is of high quality. They examine the overall s/w development process and their responsibility is to create and enforce standards and methods to improve it with the goal of preventing bugs from ever occurring.

View Answer   Discuss

MCQ Type: Computer Science, Software Engineering

Q 6.

What’s the role of CMM Level in Testing?

Answer & Explanation Explanation:

Capability Maturity Model (CMM) is a model of 5 levels of process 'maturity' that determine effectiveness in delivering quality software. The 5 levels of CMM are described as below:

 

Level 1: Initial: - characterized by chaos, periodic panics, and heroic efforts required by individuals to successfully complete projects. Very few or none of the processes are in place.

 

Level 2: Repeatable: - Software Project Tracking, Requirements Management, Realistic Planning and Configuration Management Processes are in place; successful practices can be repeated.

 

Level 3: Defined: - Standard Software Development and Maintenance Processes are integrated throughout an organization. A Software Engineering Process Group is in place to oversee software processes, and training programs are used to ensure understanding and compliance.

 

Level 4: Managed: - Metrics are used to track productivity, processes, and products. Project performance is predictable, and quality is consistently high.

 

Level 5: Optimizing: - The focus is on continuous process improvement. The impact of new processes and technologies can be predicted and effectively implemented when required.

 

Any organization can start from any level, but its motto is to reach level 5; where the focus is continuous process improvement. By doing this, high quality s/w delivery is assured.

 

From this, we can see that the whole essence of CMM or CMMI is to produce quality software. It targets the whole organizational practices (or processes), which are believed to be the best across industries. Testing is part of Quality Assurance. CMM levels play an important role in an organization’s Quality Assurance effort. Thus testing plays an important role in determining CMM level.

View Answer   Discuss

MCQ Type: Computer Science, Software Engineering

Q 7.

White Box Techniques are also called as ?

A)  Design Based Testing
B)  Experience Based Technique
C)  Structural Testing
D)  Error Guessing Technique
Answer & Explanation Answer: Structural Testing

Explanation:

View Answer   Discuss

MCQ Type: Computer Science, Software Engineering

Q 8.

What are the key challenges of software testing?

Answer & Explanation Explanation:

Key Challenges of s/w testing:

 

1. Testing considered late in project

 

2. Requirements not testable

 

3. Integration is done after all components have been developed: This might result into full testing not being covered.

 

4. Complete testing is not possible

View Answer   Discuss

MCQ Type: Computer Science, Software Engineering

Q 9.

Explain a.) Quality Assurance b.) Quality Control c.) Test Case d.) Test Condition e.) Test Script f.) Test Data g.) Test Bed

Answer & Explanation Explanation:

a.) Quality Assurance

 

Quality assurance is an activity that establishes and evaluates the processes that produce products. Quality assurance would measure processes to identify weaknesses and then correct them to continually improve the process: Eg. Code review.

 

b.) Quality Control

 

Quality control is a process in which the product's quality is compared with standards and corrective actions taken if required. Quality control activities focus on identifying defects in the actual products produced. Eg. Testing.

 

c.) Test Case

 

A test case is a unit level document describing the inputs, steps of execution and the expected result of each test condition for every requirement from the BRD. Testers determine whether the application is working correctly or not based on the test case that is being executed. A test case is marked as "Pass" if the application works as expected and is marked as "Fail" if otherwise. Test cases also aide in generating test status metrics.

 

d.) Test Condition

 

Test condition is the condition on which the test execution evaluates to pass or fail. Eg of a test condition: Set Password field should accept a mix of Alphanumeric and Special characters on mandatory basis and throw error message otherwise.

 

e.) Test Script

 

Test script is the set of instructions performed on the application to verify its functions.

 

f.) Test Data

 

Test data is the input data used to test a particular functionality. Eg: Username and password to test a login screen.

 

g.) Test Bed

 

Test bed is the environment on which the testing is done and includes the software and hardware setup that is required for testing the application.

View Answer   Discuss

MCQ Type: Computer Science, Software Engineering

Q 10.

What are the common problems with software automation?

Answer & Explanation Explanation:

The biggest concern is the cost incurred for test automation. Also, often s/w test automation requires skilled personnel and authentic test automation tools. Purchasing license of such tools is a costly affair.

Also the time required for test automation is more. Automation often requires recording the sequence of operations you need to perform in order to execute a particular test case and comparing the final o/p with the expected o/p. Functions/macros need also be written sometimes for some test cases. All this could be a time consuming job.

View Answer   Discuss

MCQ Type: Computer Science, Software Engineering