Application Testing Questions and Answers

Application Testing | Mock Test

1
Which of the following statements is false regarding test design?
a. Purpose of Black Box Testing is to cause failures in order to make the faults visible
b. In white box testing, the tester only knows the inputs and what the expected outcomes should be and not how the program arrives at those outputs
c. White box testing is also known as glass box testing
d. Path coverage is a white box testing method

Answer : In white box testing, the tester only knows the inputs and what the expected outcomes should be and not how the program arrives at those outputs

2
Which of the following requirements is testable?
a. The system should be user friends
b. System should not contain any faults
c. Response time of the application should be less than 200 msec when loaded with 1 lakh users
d. System should be portabl
Answer : The system should be user friends

3
Which is Behavior-oriented testing
a. Black-box
b. White Box
c. Gray Box
d. Gray Box and White Box
Answer : Gray Box

4
Which is a finite System
a. Any system where you get a different output for the same input, depending on what has happened before, is a finite state system.
b. Any system where you get a same output for the same input, depending on what has happened before, is a finite state system.
c. Any system where you get a same output for the same input, depending on what has happened before, is a finite state system.
d. Any system where you get a different output for the same input, depending on what has happened before, is a infinite state system.
Answer : Any system where you get a different output for the same input, depending on what has happened before, is a finite state system

5
With SQL, how can you insert a new record into the “Persons” table?
a. INSERT VALUES (‘Jimmy’, ‘Jackson’) INTO Persons
b. INSERT INTO Persons VALUES (‘Jimmy’, ‘Jackson’)
c. INSERT (‘Jimmy’, ‘Jackson’) INTO Persons
d. INSERT INTO (‘Jimmy’, ‘Jackson’) VALUES Persons
Answer : INSERT INTO Persons VALUES (‘Jimmy’, ‘Jackson’)

6
With SQL, how can you delete the records where the “FirstName” is “Peter” in the Persons Table
a. DELETE FROM Persons WHERE FirstName = ‘Peter’
b. DELETE FirstName=’Peter’ FROM Persons
c. DELETE ROW FirstName=’Peter’ FROM Persons
d. DELETE FIELD FirstName=’Peter’ FROM Persons
Answer : DELETE FROM Persons WHERE FirstName = ‘Peter’

7
Which of the following types of testing is carried out on a software product at the user’s site?
a. Regression testing
b. Beta Testing
c. Production Testing
d. Globalization Testing
Answer : Beta Testing

8
Which of the following types of testing is a measure of user’s experience?
a. Usability testing
b. User Acceptance Testing
c. Mutation Testing
d. Smoke Testing
Answer : Usability testing

9
Which of the following is not a type of integration testing approach?
a. a) Big Bang
b. Top Down
c. Bottom Up
d. Boundry Value Analysis
Answer : Boundry Value Analysis

10
Which of the following is a type of integration testing approach?
a. Big Bang
b. Top Down
c. Bottom Up
d. All of the above
Answer : All of the above