You are on page 1of 2

Question 1: Write output for the code.

Question 2: Write test cases to adequentely test the following requirements. The
test cases should be effective and efficient.

There is an online store, based on there current stock availibility they show
following messages on the product detail page:
1. if (stock = 0) ==> "OUT OF STOCK" message is displayed and Add to Cart disabled.
2. if (stock > 0 and stock < 10) ==> "HURRY UP THE STOCK IS ENDING SOON" message is
displayed and Add to Cart enabled.
3. if (stock >= 10 and stock < 100) ==> Add to Cart button is enabled.
4. if (stock >= 100) ==> 10% discount shown and in cart discounted price is
handled, and also add to cart button enabled.

Question 3: Please report a bug for following case:

During testing the below mentioned requirement, you figure out that the product
page is showing OUT OF STOCK message and ADD TO CART button is enabled.

There is an online store, based on there current stock availibility they show
following messages on the product detail page:
1. if (stock = 0) ==> "OUT OF STOCK" message is displayed and Add to Cart disabled.
2. if (stock > 0 and stock < 10) ==> "HURRY UP THE STOCK IS ENDING SOON" message is
displayed and Add to Cart enabled.
3. if (stock >= 10 and stock < 100) ==> Add to Cart button is enabled.
4. if (stock >= 100) ==> 10% discount shown and in cart discounted price is
handled, and also add to cart button enabled.

Question 4: Scenario based question in which candidate need to tell in this


scenario how many will be the minimum test cases to cover all the equivalence
patition.

Question 5: MCQs from QA concepts.

Question 6: MCQ from QA concepts. Definition of test suite, test scripts, test
charter, and test case.

Question 7: MCQ from QA concepts regarding black box testing.

Question 8: MCQs from QA concepts regarding case when exploratory testing not
suite.

Question 9: MCQs from QA concepts regarding what factors affect test planning.

Question 10: Write test cases for the following thermometer:

If(Heating Switch == ON)


If(Measured Tempurature => 23)
Heat = Off;
else if(Measure Tempurature < 23)
Heat = On;

Else if (Heating Switch == Off)


If(Measured Tempurature < 5)
Heat = On
Else
Heat = Off

Question 11: Report bug:


If(Heating Switch == ON)
If(Measured Tempurature => 23)
Heat = Off;
else if(Measure Tempurature < 23)
Heat = On;

Else if (Heating Switch == Off)


If(Measured Tempurature < 5)
Heat = On
Else
Heat = Off

Bug to be report: Measure temperature falls below 5 and heat is not turning ON.

Question 12 --- 20: From IQ for me. They were realy difficult. All were from
scenrio based question.

You might also like