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).
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);
}
};
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 ?
Which of the following statements is true about a software verification and validation program ? I. It strives to ensure that quality is built into software. II. It provides management with insights into the state of a software project. III. It ensures that alpha, beta, and system tests are performed. IV. It is executed in parallel with software development activities.
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 ?