testing Online Quiz - 1
Description: testing Online Quiz - 1 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: testing |
Howmany types of data-driven tests are there?
What are the types of data driven tests?
An anonnymous inner class have a constructor(but not parameterized one).
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);
}
};
From the below given choices, which one is the ‘Confidence testing’?
‘Be bugging’ is known as ?
An expert based test estimation is also known as ?
All of the following might be done during unit testing except ?
‘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.