0% found this document useful (0 votes)
100 views9 pages

Quality Assurance Quiz #1

This document contains a 30-question quality assurance quiz covering topics related to SQL, software testing, and logic/reasoning. The quiz questions test knowledge of SQL statements and functions, the software testing lifecycle, types of software testing, and the ability to solve logic problems.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
100 views9 pages

Quality Assurance Quiz #1

This document contains a 30-question quality assurance quiz covering topics related to SQL, software testing, and logic/reasoning. The quiz questions test knowledge of SQL statements and functions, the software testing lifecycle, types of software testing, and the ability to solve logic problems.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

Quality assurance quiz #1

1. Which of the following is a SQL aggregate function:

❏ AVG;
❏ LEN;
❏ LEFT;
❏ JOIN;

2. Which SQL statement is used to extract data from a database?

❏ GET;;
❏ EXTRACT;;
❏ OPEN;
❏ SELECT;

3. Which SQL statement is used to delete data from a database?

❏ REMOVE;
❏ DESTROY;
❏ DELETE;
❏ COLLAPSE;

4. With SQL, how do you select a column named "FirstName" from a table
named "Persons"?

❏ SELECT Persons.FirstName;
❏ SELECT Persons FROM FirstName;
❏ SELECT FirstName FROM Persons;
❏ EXTRACT FirsName FROM Persons;

5. With SQL, how do you select all the records from a table named "Persons"
where the value of the column "FirstName" is "Peter"?

❏ SELECT * FROM Persons WHERE FirstName=’Peter’;


❏ SELECT * FROM Persons WHERE FirstName<>’Peter’;
❏ SELECT [all] FROM Persons WHERE FirstName LIKE ’Peter’; ❏
SELECT [all] FROM Persons WHERE FirstName=’Peter’;

6. Which SQL statement is used to return only different values?

❏ UNIQUE;
❏ COMMON;
❏ DISTINCT;
❏ DIFFERENT;

7. Which SQL keyword is used to sort the result-set?

❏ ORDER BY;;
❏ SORT;
❏ ORDER;
❏ SORT BY;

8. The NOT NULL constraint enforces a column to not accept empty values.

❏ TRUE;
❏ FALSE;

9. Bug life cycle:

❏ Open, Assigned, Fixed, Closed;


❏ Open, Fixed, Assigned, Closed;
❏ Assigned, Open, Closed, Fixed; ❏
Assigned, Open, Fixed, Closed;

10. The ___________ Testing will be performed by the people at client own
locations:

❏ Alpha testing;
❏ Field testing;
❏ Performance testing;
❏ System testing;

11. The ___________ technique can be used to achieve input and output
coverage

❏ Boundary value analysis;


❏ Equivalence partitioning;
❏ Decision table testing;
❏ State transition testing;

12.Which is the non-functional testing

❏ Performance testing;
❏ Unit testing;
❏ Regression testing;
❏ Sanity testing;

13. Testing where in we subject the target of the test , to varying workloads to
measure and evaluate the performance behaviors and ability of the target
and of the test to continue to function properly under these different
workloads.

❏ Load Testing;
❏ Integration Testing;
❏ System Testing;
❏ Usability Testing;

14. Testing activity which is performed to expose defects in the interfaces and in
the interaction between integrated components is :

❏ System Level Testing;


❏ Integration Level Testing;
❏ Unit Level Testing;
❏ Component Testing;

15. ________indicates how important it is to fix the bug and when it should be
❏ Severity;
❏ Priority;
❏ All of the above;
❏ None of the above;

16. The goal of a software tester is to find bugs, find them as early as possible and
make sure they get fixed.

❏ True;
❏ False;

17.Failure is _________

❏ Incorrect program behaviour due to a fault in the program;


❏ Bug found before product Release;
❏ Bug found after product Release;
❏ Bug found during Design phase;
18.What number do you get by adding all the numbers from 1 to 9?

❏ 42;
❏ 44;
❏ 45;
❏ 46;

19.What number would follow in this series?

7, 2, 12, 2, 17, 2,

❏ 21;
❏ 22;
❏ 24;
❏ 25;

20.
Answer:
5:19

21. Which one will replace the question mark ?

❏ 45
❏ 29
❏ 39
❏ 37
22. Veena who is the sister-in-law of Ashok, is the daughter-in-law of Kalyani.
Dheeraj is the father of Sudeep who is the only brother of Ashok. How
Kalyani is related to Ashok?

❏ Mother-in-law
❏ Aunt
❏ Wife
❏ None of these

23.A's son B is married with C whose sister D is married to E the brother of B.


How D is related to A?

❏ Sister
❏ Daughter's-in-law
❏ Sister-in-law
❏ Cousin

24.A boy is sitting at the back seat of a car. When the driver suddenly starts
moving the car (in forward direction), the boy experiences a backward force?

❏ Always
❏ Never
❏ Often
❏ Sometimes

25. What number should replace the question mark?


Answer:
10

26.What is the output of the following code fragment?

for ( int j = 10; j > 5; j-- )


{
System.out.print( j + " " );
}
System.out.println( );

❏ 10 11 12 13 14 15; ❏
9 8 7 6 5 4 3 2 1 0;
❏ 10 9 8 7 6 5;
❏ 10 9 8 7 6;
27.What must the initialization be so that the following fragment prints out the
integers -3 -2 -1 ?
for ( _______; j < 0; j++ )
System.out.print( j + " " );
System.out.println( );

❏ int j = 0;
❏ int j < 0;
❏ int j = -3;
❏ int j = -4;

28.How many times will be executed the loop:

int x = 2; int
z;
for(z = 6; z <= 2; z++) x
= x + z;
System.out.println("x = " + x);
System.out.println("z = " + z);

Answer:

29.How many times will be executed the loop:

int x = 0; int z
= 5; while (z >
1 ){ x = x + 1 /
z; z = z - 1;
}
System.out.println("x = " + x);
System.out.println("z = " + z);

Answer:

30.Lesia’s father has five daughters: 1) Nana, 2) Nene, 3) Nini, 4) Nono. What is
the fifth daughter’s name?
❏ Nunu;
❏ Nyny;
❏ Lesia;
❏ None of the above;;

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy