0% found this document useful (0 votes)
320 views2 pages

Software Testing Exam Questions Guide

This document outlines the exam structure for the Software Testing course (CA 602) for T.Y.B.B.A./B.C.A students, including instructions and a total of five questions. The questions cover various topics such as software testing definitions, testing principles, testing life cycles, and specific testing techniques. Students are required to attempt a specified number of questions from each section, with marks allocated for each question.

Uploaded by

sexax31778
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
320 views2 pages

Software Testing Exam Questions Guide

This document outlines the exam structure for the Software Testing course (CA 602) for T.Y.B.B.A./B.C.A students, including instructions and a total of five questions. The questions cover various topics such as software testing definitions, testing principles, testing life cycles, and specific testing techniques. Students are required to attempt a specified number of questions from each section, with marks allocated for each question.

Uploaded by

sexax31778
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Total No. of Questions : 5] SEAT No.

:
P1923 [Total No. of Pages : 2
[6034]-602
T.Y.B.B.A./B.C.A
CA 602 : SOFTWARE TESTING
(2019 Pattern) (Semester - VI)

Time : 2½ Hours] [Max. Marks : 70


Instructions to the candidates:
1) All questions are compulsory.
2) Figures to right indicate full marks.
3) Neat diagram must be drawn wherever necessary.

Q1) Attempt any eight of the following. (Out of ten) [8×2=16]


a) What is Software Testing?
b) What is Static testing?
c) State the advantages of manual testing.
d) What are formulae for calculating cyclomatic complexity?
e) What is Gray-box testing?
f) Define validation testing?
g) What is Debugging?
h) Explain terms - Error, Fault and Failure?
i) Define regression testing.
j) What is software metric?

Q2) Attempt any four of the following. (Out of five) [4×4=16]


a) Write difference between verification and validation.
b) Explain software testing life cycle with diagram.
c) Explain Boundary - Value analysis in details.
d) Explain Acceptance testing in details.
e) Explain Test Case Design along with example.

P.T.O.
Q3) Attempt any four of the following. (Out of five) [4×4=16]

a) Explain any four testing principles in detail.

b) Explain white box testing and its techniques.

c) Explain Sandwich and Big-Bang approach of Integration testing.

d) Explain load and Smoke testing in detail.

e) Write difference between Static and Dynamic testing.

Q4) Attempt any four of the following. (Out of five) [4×4=16]

a) Explain test case design for the login process.

b) Stub and Driver concept in Unit testing.

c) Explain GUI testing in details.

d) What is difference between client/server and web-based testing?

e) How to calculate the cyclometric complexity of a code? Explain with


example.

Q5) Write a short note on any two of the following. (Out of three) [2×3=6]

a) Testing for Real - Time System.

b) Stub and Driver concept in unit testing.

c) Load Runner.



[6034]-602 2

Common questions

Powered by AI

GUI testing focuses on the graphical interface of software, ensuring that each component functions as intended from the user's perspective. It differs from client/server testing, which focuses on the interaction between client and server systems, and web-based testing, which targets the functionality, usability, and security of web applications. GUI testing is crucial for user satisfaction as it ensures the interface is intuitive, responsive, and visually correct, which directly impacts the user experience and perception of the software’s quality .

Verification and validation are critical processes in software testing that ensure the quality and reliability of software. Verification involves evaluating software at various development stages to ensure it meets specified requirements. In contrast, validation is the process of checking whether the developed software meets the user's actual needs and is fit for purpose. Differentiating between these two allows testers to identify and correct errors at different stages, thereby improving software quality and reducing post-release defects .

Stubs and drivers are used in unit testing to simulate the behaviors of missing components. A stub is used to simulate the behaviors of lower-level modules that a higher-level module under test depends on, while a driver is used to simulate higher-level modules that use the module under test. They are particularly useful in scenarios where modules are developed incrementally, allowing testing of each module as it is completed before the entire system is finished. This support facilitates the isolation and identification of defects early in the development process .

White box testing is an approach where the tester has complete knowledge of the internal workings of the application. It focuses on checking the internal structures or workings of an application. This approach helps in optimizing code and ensuring coverage of complex functionalities. On the other hand, gray-box testing is a combination of black-box and white-box testing, where the tester has partial knowledge of the internal structure. It balances functional testing techniques with some understanding of the internals, which can help find more potential errors and vulnerabilities. Both approaches enhance software quality by addressing different testing needs and perspectives .

Boundary-Value Analysis (BVA) is a testing technique that involves creating test cases at the edges of input domains. The primary benefit of BVA is that it helps in identifying defects at the boundaries of input ranges, where they are most likely to occur. For example, if a function accepts inputs between 1 and 100, BVA would involve testing with inputs like 0, 1, 100, and 101. This technique is effective because boundary conditions often have higher error rates, and testing them increases the chance of uncovering defects .

Manual testing offers advantages such as flexibility and adaptability to changes, intuitive insight into user experience, and detailed visual validations that automated scripts might overlook. However, it is labor-intensive, time-consuming, and prone to human error, especially for repetitive tests. Compared to automated testing, manual testing can be less efficient for regression tests but remains essential for exploratory testing and cases requiring human judgment. Balancing both approaches is often necessary for comprehensive testing strategies .

Load Runner is a performance testing tool by Micro Focus used to simulate high user loads on software applications. It facilitates the analysis of system behavior under load, identifying performance bottlenecks, and ensuring reliability and scalability before deployment. Load Runner allows testers to write and execute automated scripts that mimic user interactions with the application, providing insights into response times, throughput rates, and resource utilization under various load scenarios. Its detailed reporting aids in tuning the application for better performance .

The Software Testing Life Cycle (STLC) provides a systematic approach to testing, ensuring that each phase of testing contributes to the overall quality of the software. The key phases include requirement analysis, test planning, test case development, environment setup, test execution, and test closure. Each phase has specific deliverables, and the transition from one phase to the next requires thorough review to ensure that testing is effective and aligned with the project goals. This structured approach helps in identifying defects early, saving time and cost in the long run .

Regression testing ensures that new code changes do not adversely affect the existing functionalities of a software application. In iterative development cycles, frequent changes and new features are implemented, making regression testing crucial for maintaining stability and functionality. Automation significantly enhances regression testing by allowing repetitive tests to be run quickly and consistently, which accelerates the test schedule and reduces human error. This automation is important for maintaining high software quality in fast-paced development environments .

The test case design process for a login system involves identifying possible inputs, their expected outputs, and considerations such as security, usability, and boundary conditions. Key considerations include checking username and password input lengths, handling invalid characters, ensuring secure data transmission, and validating session timeouts. Example test cases could include: 1) Valid user credentials should permit access, 2) Invalid credentials should deny access and prompt an error message, 3) SQL injection attempts should be detected and blocked. This process ensures the login system is robust and secure against unauthorized access .

You might also like