Download as pdf or txt
Download as pdf or txt
You are on page 1of 5

Technical Assessment – Sample questions

1) Testing the functionality of login page with valid username and password is an example of:

1. Functional Testing
2. Technical Testing
3. Performance Testing
4. All of the above

Correct answer: 1

2) Testing the output of the system based on the input without checking the system internals is an
example of:

1. Whitebox testing
2. Blackbox testing
3. Greybox testing

Correct answer: 2

3) Which of the following deliverable details the step descriptions to be followed by a tester during test
execution?

1. Test Script
2. Defect Log
3. Technical Requirements
4. Performance Requirements

Correct Answer: 1

4) Which of the following section deals with entry/exit criteria of the test deliverables?

1. Test Stage
2. Stage Area
3. Stage Compartment
4. Stage Containment

Correct Answer: 4

5) Which of the following defects are pushed to future release?

1. Withdrawn
2. Deferred
3. New
4. Closed
Correct answer :2

6) Testing the response time of an application for 100 concurrent users are part of:

1. Product Test
2. Unit Test
3. Assembly Test
4. Performance Test

Correct answer: 4

7) Beta testing of an application by end users are part of:

1. User Acceptance Test


2. Product Test
3. Unit Test
4. Assembly Test

Correct answer: 1

8) Testing the code internals of login page is an example of :

1. Blackbox test
2. Whitebox test
3. Greybox test

Correct answer :2

9) Which of the following are fields of defect log?

1. Severity
2. Priority
3. Defect ID
4. All of the above

Correct answer :4

10) The average weight of a class of 24 students is 36kg. When the weight of the teacher is also
included, the average weight increases by 1kg. What is the weight of the teacher?

1. 61 kg
2. 60 kg
3. 37 kg
4. None of the given options
Correct answer: 2

11) In an election, 60% of the voters exercise the franchise. Of these, 40% are women. The number of
males exercising their franchise is 53,040. How many eligible voters are there in all?

1. 125334
2. 147334
3. 230334
4. 153334

Correct answer: 2

12) In which SDLC model is it difficult to measure progress within stages such as development, design,
etc.?

1. Water fall model


2. Iterative model
3. V-model
4. Agile model

Correct answer: 1

13) You are currently designing the interface of a software. Your are trying to track how users interact
with objects in the interface such as push buttons, commands, etc. Which of the following design
models will help you?

1. Dialog model
2. User model
3. Domain model
4. Application model

Correct answer: 1

14) What is the output of the following code?

FOR i = 1 to 5

FOR j = 1 to 5

IF (i / j) = i OR (i / j) = 1 THEN

PRINT i

ENDIF

ENDFOR

ENDFOR
12 3 4 5

1 1 2 2 3 3 4 4 5 5

1 2 3 3 4 4 5 5

1 2 2 3 3 4 4 5 5

Correct answer: 1 2 2 3 3 4 4 5 5

15) What is the output of the following code?

a=50

b=20

c=50

IF (a>b) AND (a>=c) THEN

a=a-5

IF (a>b) OR (a>c) THEN

a=a-10

ENDIF

PRINT a

1. 45
2. 35
3. 50
4. 40

Correct answer: 2

16)

(I) WHILE x < 5

PRINT "Hi"

ENDWHILE

(ii) FOR i = 1 to x

PRINT "Hi"

ENDFOR
1. Only (i)
2. Both (i) and (ii)
3. Neither (i) nor (ii)
4. Only (ii)

Correct answer: 3

You might also like