testing Online Quiz - 1
Description: testing Online Quiz - 1 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: testing |
Local inner classes cannot access the local data members of the method in which they are defined.
Which of the following two functions will be invoked when the function call given is---- show(10,10);
What is the output???
float a =10.0;
float b = 2.5;
float c = a/b;
System.out.println(c);
The data-members of the Interface can be static or non-static.
What is the output??
interface My {
int x=10;
}
class Test implements My {
public static void main(String[] s) {
System.out.println(My.x);
System.out.println(x);
x=x+10;
System.out.println(x);
}
};
An expert based test estimation is also known as ?
‘Defect Density’ calculated in terms of ?
A test manager wants to use the resources available for the automated testing of a web application. The best choice is ?
With thorough testing it is possible to remove all defects from a program prior to delivery to the customer.
The goal of a software tester is to find bugs, find them as early as possible and make sure they get fixed.
A test harness is a ?
Testing of software used to convert data from existing systems for use in replacement systems ?
In practice, which Life Cycle model may have more, fewer or different levels of development and testing, depending on the project and the software product. For example, there may be component integration testing after component testing, and system integration testing after system testing.