Q69.Marks: +2.0UGC NET Paper 2: Computer Science 18th June 2024 Shift 1 (Cancelled)
Which of the followings are White box Testing ?
A. Path Testing
B. Loop Testing
C. Regression Testing
D. Non functional Testing
Choose the correct answer from the options given below :
1.A and B Only✓ Correct
2.B and C Only
3.C and D Only
4.A and D Only
Solution
The correct answer is 1) A and B Only.
Key Points
Path Testing is a type of White Box Testing that involves testing the paths within the code to ensure all possible paths are executed at least once.
Loop Testing is another form of White Box Testing that focuses on the validation of loops within the code to ensure they function correctly under various conditions.
Additional Information
Regression Testing (Option C) is a type of Black Box Testing that ensures that new code changes do not adversely affect the existing functionalities of the software. It's not considered White Box Testing.
Non-functional Testing (Option D) is also a type of Black Box Testing that focuses on the non-functional aspects of the software such as performance, usability, and reliability. It is not related to White Box Testing.