ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip   To Refer this Site to Your Friends   Click Here
Google
 
Categories  >>  Software  >>  Testing  >>  Manual Testing
 
 


 

 
 Automation Testing interview questions  Automation Testing Interview Questions
 Manual Testing interview questions  Manual Testing Interview Questions
 QA Concepts interview questions  QA Concepts Interview Questions
 Mobile Testing interview questions  Mobile Testing Interview Questions
 Test Cases interview questions  Test Cases Interview Questions
 Test Documents Reporting interview questions  Test Documents Reporting Interview Questions
 Testing AllOther interview questions  Testing AllOther Interview Questions
Question
Hi All,
I am new in testing field. I got an interview and the 
question was asked-
What would be your high level test case on the following 
scenario. There are 2 fields one is SCORE and other is 
GRADE and there is a go button. Scenario is If score is 90-
100 then grade should be A, if Score is 80-90 then B, if 70-
80 then C Else F.
So I told that -
I will check Boundary values by giving max +1 and min-1 
values.
I will check the functionality is working as per the 
requirement or not.
I will include + and - testing.
But seems like my answer was not correct, obviously because 
I don't have much experience. So plz provide me the best 
answer of this Q ?
Thanks in advance.
Preeti
 Question Submitted By :: Alpr95
I also faced this Question!!     Rank Answer Posted By  
 
  Re: Hi All, I am new in testing field. I got an interview and the question was asked- What would be your high level test case on the following scenario. There are 2 fields one is SCORE and other is GRADE and there is a go button. Scenario is If score is 90- 100 then grade should be A, if Score is 80-90 then B, if 70- 80 then C Else F. So I told that - I will check Boundary values by giving max +1 and min-1 values. I will check the functionality is working as per the requirement or not. I will include + and - testing. But seems like my answer was not correct, obviously because I don't have much experience. So plz provide me the best answer of this Q ? Thanks in advance. Preeti
Answer
# 1
Hi preeti, the given scenario is not a valid scenario.I am 
explaining you in deatil.The Grade respective to the score 
will not valiadte.It will be like this

1)90-100---A
2)80-89----B
3)70-79----C
4)Else-----F

OR it can be 91-100----A
             81-90-----B
             70-80-----C
             Else---F  
And the boundary value analysis for this Object(0-100)
1)Min(0)-----Pass(0)F Grade
2)Max(100)---Pass(100)A Grade
3)min(+1)----Pass(1)F Grade
4)Max(-1)----Pass(99)A Grade
5)Min(-1)----Fail(-1)F Grade
6)Max(+1)----Fail(101)F Grade

for each validation user should have to write 6 test cases
Total validation above mentined 4 condtions so, (4*6)=24 
test cases will occur.
For example considering first case:90-100(for grade A)

1)Min(90)-----Pass(90)A Grade
2)Max(100)--- Pass(100)A Grade
3)min(+1)---- Pass(91)A Grade
4)Max(+1)---- Fail(101)F Grade
5)Min(-1)---- Fail(89)B Grade
6)Max(-1)---- Pass(99)A Grade
 
Is This Answer Correct ?    14 Yes 1 No
Santosh Kumar
 
  Re: Hi All, I am new in testing field. I got an interview and the question was asked- What would be your high level test case on the following scenario. There are 2 fields one is SCORE and other is GRADE and there is a go button. Scenario is If score is 90- 100 then grade should be A, if Score is 80-90 then B, if 70- 80 then C Else F. So I told that - I will check Boundary values by giving max +1 and min-1 values. I will check the functionality is working as per the requirement or not. I will include + and - testing. But seems like my answer was not correct, obviously because I don't have much experience. So plz provide me the best answer of this Q ? Thanks in advance. Preeti
Answer
# 2
Higher level scenerios : 

If the score is 90 to 100 - grade A
If the score is 80 to 89 - grade B
If the score is 70 to 79 - grade C
If the score is 0 to 69 - grade F

your answer was correct only.

 
Is This Answer Correct ?    1 Yes 0 No
Madhu
 
 
 
  Re: Hi All, I am new in testing field. I got an interview and the question was asked- What would be your high level test case on the following scenario. There are 2 fields one is SCORE and other is GRADE and there is a go button. Scenario is If score is 90- 100 then grade should be A, if Score is 80-90 then B, if 70- 80 then C Else F. So I told that - I will check Boundary values by giving max +1 and min-1 values. I will check the functionality is working as per the requirement or not. I will include + and - testing. But seems like my answer was not correct, obviously because I don't have much experience. So plz provide me the best answer of this Q ? Thanks in advance. Preeti
Answer
# 3
Hi Madhu,

You have left the one condition.You have consider the 
conditin for score falls between 0-70 but not considered 
the case, if score is greater than 100.
 
Is This Answer Correct ?    0 Yes 2 No
Santosh Kumar
 
  Re: Hi All, I am new in testing field. I got an interview and the question was asked- What would be your high level test case on the following scenario. There are 2 fields one is SCORE and other is GRADE and there is a go button. Scenario is If score is 90- 100 then grade should be A, if Score is 80-90 then B, if 70- 80 then C Else F. So I told that - I will check Boundary values by giving max +1 and min-1 values. I will check the functionality is working as per the requirement or not. I will include + and - testing. But seems like my answer was not correct, obviously because I don't have much experience. So plz provide me the best answer of this Q ? Thanks in advance. Preeti
Answer
# 4
so it means the q was tricky, he was looking that I will 
point out these things or not as a tester. 
But these are all BVA right.We can check functionality 
also. Is it correct or not?
 
Is This Answer Correct ?    1 Yes 1 No
Alpr95
 
  Re: Hi All, I am new in testing field. I got an interview and the question was asked- What would be your high level test case on the following scenario. There are 2 fields one is SCORE and other is GRADE and there is a go button. Scenario is If score is 90- 100 then grade should be A, if Score is 80-90 then B, if 70- 80 then C Else F. So I told that - I will check Boundary values by giving max +1 and min-1 values. I will check the functionality is working as per the requirement or not. I will include + and - testing. But seems like my answer was not correct, obviously because I don't have much experience. So plz provide me the best answer of this Q ? Thanks in advance. Preeti
Answer
# 5
yaa qestion was tricky,as u r saying we can check 
functionality its fine we can apply BVA for Text box but 
here system will fail at the value 80 and 90.For this 
scenario atleast two bug will definetly occure at the value 
80 and 90.
 
Is This Answer Correct ?    0 Yes 1 No
Santosh Kumar
 
  Re: Hi All, I am new in testing field. I got an interview and the question was asked- What would be your high level test case on the following scenario. There are 2 fields one is SCORE and other is GRADE and there is a go button. Scenario is If score is 90- 100 then grade should be A, if Score is 80-90 then B, if 70- 80 then C Else F. So I told that - I will check Boundary values by giving max +1 and min-1 values. I will check the functionality is working as per the requirement or not. I will include + and - testing. But seems like my answer was not correct, obviously because I don't have much experience. So plz provide me the best answer of this Q ? Thanks in advance. Preeti
Answer
# 6
The answer given by Santosh Kumar is correct.
PLease include that for each and every case u need to check 
the go button action also.
 
Is This Answer Correct ?    2 Yes 0 No
Ni
 
  Re: Hi All, I am new in testing field. I got an interview and the question was asked- What would be your high level test case on the following scenario. There are 2 fields one is SCORE and other is GRADE and there is a go button. Scenario is If score is 90- 100 then grade should be A, if Score is 80-90 then B, if 70- 80 then C Else F. So I told that - I will check Boundary values by giving max +1 and min-1 values. I will check the functionality is working as per the requirement or not. I will include + and - testing. But seems like my answer was not correct, obviously because I don't have much experience. So plz provide me the best answer of this Q ? Thanks in advance. Preeti
Answer
# 7
Good explanation !! almost the same question was asked to 
me but it was about three combo fields "country","state" 
& "city" and I was asked to create the scenarios. I replied 
but without folllowing any methodology. Can you help me to 
explain those scenario?
 
Is This Answer Correct ?    0 Yes 0 No
Less Than You
 
  Re: Hi All, I am new in testing field. I got an interview and the question was asked- What would be your high level test case on the following scenario. There are 2 fields one is SCORE and other is GRADE and there is a go button. Scenario is If score is 90- 100 then grade should be A, if Score is 80-90 then B, if 70- 80 then C Else F. So I told that - I will check Boundary values by giving max +1 and min-1 values. I will check the functionality is working as per the requirement or not. I will include + and - testing. But seems like my answer was not correct, obviously because I don't have much experience. So plz provide me the best answer of this Q ? Thanks in advance. Preeti
Answer
# 8
Hi Preethi,

checking BVA is secondary, first we need to find out the
High Level Test case. what he is asking..

So here we can say one test case. which is functionality
test case, 
when user clicks on the Go button, weather it is giving
write message(grade) or not,
and i want to say one more thing for all, for checking BVA
we need Low Level Document(mandatory), then only we will go
for BVA. without having LLD, don't even think about the BVA.
 
Is This Answer Correct ?    0 Yes 0 No
Chandu
 
  Re: Hi All, I am new in testing field. I got an interview and the question was asked- What would be your high level test case on the following scenario. There are 2 fields one is SCORE and other is GRADE and there is a go button. Scenario is If score is 90- 100 then grade should be A, if Score is 80-90 then B, if 70- 80 then C Else F. So I told that - I will check Boundary values by giving max +1 and min-1 values. I will check the functionality is working as per the requirement or not. I will include + and - testing. But seems like my answer was not correct, obviously because I don't have much experience. So plz provide me the best answer of this Q ? Thanks in advance. Preeti
Answer
# 9
Hi Preeti whenever you come across such questions in
interview we need to draw a flowchat for the asked scenario
and then decide how many High level test cases can we come
across, we have some topics which covers how many test cases
can be written for each and every flow , this is not an
ordinary question this is the question which they ask for
certification level. 

Here is the flow for your answer


               _________               
               | start |
               |_______|
                   |
               _________
               | Score |
               |_______|
                   |
                   / \
                  /   \      Yes        ________
                 / 90- \  _____________ | "A"   |___
                 \100  /                |_______|   |
                  \   /                             |
                   \ /                              | 
                    |                               |
                    |  No                           |  
                    |                               |
                   / \                              |
                  /   \     Yes          ________   |
                 / 80- \  _____________ | "B"   |___|
                 \ 90  /                |_______|   |
                  \   /                             |
                   \ /                              | 
                    |                               |
                    |No                             | 
                    |                               |
                   / \                              |
                  /   \                  ________   |    
                 / 70- \  Yes__________ | "C"   |___|
                 \ 80  /                |_______|   |
                  \   /                             |
                   \ /                              |
                    |                               | 
                    |No                             |
                ____|____                           |
               |  "F"   |                           | 
               |________|                           |
                    |                               |
                ____|____                           |
               |  End   |___________________________| 
               |________| 

The above flowgraph explains the scenario which you have said
Now obverse that from this scenario we can see that if
90-100 condition pass we get Grade "A" 
if 80-90 condition pass we get Grade "B"
if 70-80 condition pass we get Grade "C"
else we can see "F".

So if we check then there wil be exactly "4" High level test
cases. I need to leave now I will explain in other time
continuine this answer.
 
Is This Answer Correct ?    3 Yes 0 No
Abdul Sameer
 
  Re: Hi All, I am new in testing field. I got an interview and the question was asked- What would be your high level test case on the following scenario. There are 2 fields one is SCORE and other is GRADE and there is a go button. Scenario is If score is 90- 100 then grade should be A, if Score is 80-90 then B, if 70- 80 then C Else F. So I told that - I will check Boundary values by giving max +1 and min-1 values. I will check the functionality is working as per the requirement or not. I will include + and - testing. But seems like my answer was not correct, obviously because I don't have much experience. So plz provide me the best answer of this Q ? Thanks in advance. Preeti
Answer
# 10
Answer given is right. Only thing is approach. Now What does
High level test cases means. If U clerify and is High
priority then u should go with Boundary value.
Again different approaches are there. If Interviewer wants
-ve test cases (As for tester high level means test cases
which will cause system unfunctional).
 
Is This Answer Correct ?    0 Yes 0 No
Mayur K
 

 
 
 
Other Manual Testing Interview Questions
 
  Question Asked @ Answers
 
do u know abt configuration management tool,what is the purpose of maintaining all the documents in configuration manage ment tool? Cap-Gemini1
what is system testing and system integration testing? explian briefly?  4
what is the creteria required for deciding when the test cases are cover the requirements of the client or project ?  1
what is requirement tracebility and it's format  4
what is the difference between 2-tier appli. and 3-tier appli. testing  3
what is the good answer for authentication and authorization?  4
In an interview, what r the general questions asked in manual?pls give me anwser to this question?  1
Advantages and Dis-advantages of V-model?Is every company is using V-model only? pls send me the answer very quick asap.  7
What is a good requirement and bad Requirement Wipro7
What are the things you prefer and prepare before starting testing?  5
if u have 10 inputs & you written 500 testcases for that.out of this u found 20 defects.as a tester how u found from which requirement that a particular defect will occur. Semantic-Space4
there are 100 test cases. and u got a bug at 85th test cases. u reported it to dev and dev fixed that bug. when u r doing regression testing from whic test case u'll do tetsing?? will start from 85 th test case are u'll execute 100 test cases?? IBM13
Real-time applications add a new and potentially difficult element to the testing mix Option 1 performance Option 2 reliability Option 3 security  2
integration testing is followed by a)unit testing b) system testing c) acceptance testing d) regression testing  2
What are the points to be taken into consideration while doing desktop testing?  1
PLEASE ANSWER THIS Q? HOW TO DEFINE DEFECT DENCITY ? CFCI6
wt is the diff. bet. verification and validation If possible explain with one example. Syntel13
What can you tell about the project if during testing you found 80 bugs in it? or What is the V-Model Development Method and do you agree with this model?  2
what are the SQL commands used in for union,intersection & all operations.Please reply fast.  1
At which stage testing phase will start IBM5
 
For more Manual Testing Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com