Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Software Testing Questions
In software testing, which of the following techniques is generally best suited to automatically detect unreachable code in a program?
In software testing terminology, what do the phrases "bug leakage" and "bug release" generally refer to?
Consider the following C program that compares a float and a double value initialised with 1.1. What will it print when executed? main() { float me = 1.1; double you = 1.1; if (me == you) printf("yes"); else printf("No"); }
In file organisation, which of the following is generally considered the simplest file structure in terms of implementation and conceptual model?
Among the following binary tree structures, which is generally the most efficient overall when considering both space usage and time complexity for typical tree-based algorithms?
Statement coverage (also called line coverage) will not detect which of the following types of problems in a program under test?
In practical software test automation projects, which of the following is a common problem or challenge that teams frequently face?
Which of the following statements correctly contrasts the listed pairs: testing versus debugging, two-tier versus three-tier architecture, alpha versus beta testing, and static versus dynamic testing?
In software engineering, what is a software project test plan?
Which of the following activities is typically not considered a direct part of the Defect Management Process in software projects?
Which of the following is not usually classified as a static testing technique in software quality assurance?
Which of the following is a form of functional testing technique used to design test cases based on input ranges and expected system behaviour at the boundaries?
In software quality management, what are the main parameters or categories that are typically included when calculating the overall cost of quality (quality cost) for a project?
In software engineering, which of the following activities is usually not considered a core part of performance testing of an application?
When solving the classic 8 Queens problem (placing eight queens on a chessboard so that none attack each other), which type of algorithmic technique is most commonly used to explore the solution space efficiently?
In a software development organization, what is the main value of having a dedicated testing group, and how can this group justify its work and budget to management?
When writing test cases, what is the main difference between test cases designed for integration testing and those designed for system testing in a software project?
In the context of software process maturity models such as CMM or CMMI, what is the main role of the organization's CMM level in relation to software testing activities?
In software testing, what is risk analysis and how is it related to the concepts of defect severity and defect priority?
In software testing terminology, which of the following statements best describes the roles of Quality Assurance (QA), Quality Control (QC), test case, test condition, test script, test data and test bed?
1
2