Birlasoft Placement Paper - 4


ConvertWord documents to Clean HTML Clean HTMLOriginal HTMLview
1. Which of the following best explains life cycle of defect ?
A) defect found -> defect logged -> defect debugged -> defect closed -> defect rechecked
b) defect found -> defect debugged -> defect reported -> defect rechecked -> defectclosed
c) defect debugged -> defect found -> defect closed -> defect reported -> defectrechecked
d) defect found -> defect logged -> defect debugged -> defect rechecked -> defect closed

2. Which group does winrunner ,load runner ,sqa suite fall under ?
A) databases
b) automated test tools
c) operating systems
d) rapid application development tool

3. I = 0;
j = 0;
for(j=1;j<10;j++)
i=i+1;
in the (generic) code segment above what will be the value of the variable i at completion ?
A) 0
b) 1
c) 3
d) 9

4. Which of the following statements is true when a derivation inherits both a virtual and non-virtual instance of a base class ?
A) each derived class object has base objects only from the non virtual instance
b) each base class object has derived objects only from the non-virtual instance
c) each derived class object has base objects only from the virtual instance
d) each derived class object has a base object from the virtual instance and a base object from non-virtual instance.

5. Class word
{
public:
word(const char*,int = 0);
};
referring to the sample code above what is the minimum number of arguments required to call the constructor ?
A) 0
b) 1
c) 2
d) 3

6. Which one of the following represents a corr