GeekInterview.com
  I am new, Sign me up!
 
GeekInterview.com  >  Interview Questions  >  Testing  >  Common
Go To First  |  Previous Question  |  Next Question 
 Common  |  Question 235 of 248    Print  
Bug Fixing Priority
Which of these is the most important one to fix first, and why?

a. The word "BlackBerry" is misspelled on the startup screen of the application.
b. The application always rejects a user's first attempt to launch the application; subsequent attempts are successful.
c. The application crashes and brings down the database server when it tries to add a record that contains an uncommon string, "123abc456xyz789".



  
Total Answers and Comments: 15 Last Update: November 06, 2009     Asked by: oranger34 
  
 Sponsored Links

 
 Best Rated Answer
Submitted by: kamal1_batra
 
The third bug that is pulling down the database server is the most important to fix, the second bug that the application does not start in first go should be fixed next. Then the bug regarding the spellings should be fixed.

The bug that is pulling down the server, is most important because server is also being used for other transactions of the same application. The server is being used to for other applications as well. Pulling down of the server means deadlocking of so many applications.  Even though Blackberry is mis-spelled, it is still understandable. However, if the application is not logging in on first attempt, the application is causing waste of effort on every time of logging leading to loss of time everytime the application is logged in for further testing.

Above answer was rated as good by the following members:
vk1978, whiteorse80, Sumi_ashu, vidyask, zaara, hiteshjamb, vinay.y, Sir Rodney Effing, vasu babu.tirindi, raj1402, nabamita.chakraborti, sr.test.eng
  Sorting Options  
  Page 1 of 2   « First    1    2    >     Last »  
February 13, 2009 01:01:40   #1  
kamal1_batra Member Since: November 2008   Contribution: 11    

RE: Bug Fixing Priority
The third bug that is pulling down the database server is the most important to fix the second bug that the application does not start in first go should be fixed next. Then the bug regarding the spellings should be fixed.

The bug that is pulling down the server is most important because server is also being used for other transactions of the same application. The server is being used to for other applications as well. Pulling down of the server means deadlocking of so many applications. Even though Blackberry is mis-spelled it is still understandable. However if the application is not logging in on first attempt the application is causing waste of effort on every time of logging leading to loss of time everytime the application is logged in for further testing.

 
Is this answer useful? Yes | NoAnswer is useful 1   Answer is not useful 2Overall Rating: -1    
March 22, 2009 09:34:43   #2  
goal1860 Member Since: March 2009   Contribution: 1    

RE: Bug Fixing Priority
The third sceanario rarely happens so it should be lower priority though it is estimated as higher severity.
The second defect could annoy the end users severely while the first one maybe obvious and impact user experience. My personal opinion is c>b>a

 
Is this answer useful? Yes | NoAnswer is useful 1   Answer is not useful 0Overall Rating: +1    
March 25, 2009 02:13:30   #3  
vk1978 Member Since: February 2009   Contribution: 174    

RE: Bug Fixing Priority

Priority will be given based on stage of life cycle


1) Assume that application is middle stage (I mean to say build is 3rd one
and still few more to come) and you are testing the application to accept it
(Smoke/sanity Testing) for further testing I would like to give the preference
as B A C Why I am giving last preference to C is when I am giving uncommon
string then the application is getting crash but as of now we have alternative
and that is positive value so with positive value we can work with the
application Next why A is given second preference black berry Its company
Name not a simple title of application


And lastly why I am giving first preference to BI am not able to launch the
application in first attempt then it is a major issue while accepting the build
(smoke/sanity testing) if you are not able to launch then definitely we will
reject the build.


2) Assume application is completed and ready for use then also I will give
B A C Let me tell you in general way Suppose you are a customer and
interested to purchase Blackberry mobile and if it is not launching in first
attempt do you purchase that piece no one will purchase and coming second one
company Label Company goodwill is linked to it and with this mistakes goodwill
will be degraded so second preference and coming to last one we have an
alternative and that is we can give positive values with which that particular
functionality will work Please correct me if I am wrong.


 
Is this answer useful? Yes | NoAnswer is useful 7   Answer is not useful 0Overall Rating: +7    
April 17, 2009 05:32:01   #4  
sudhakar.s1206 Member Since: April 2009   Contribution: 2    

RE: Bug Fixing Priority
Here the third one is of high priority. Its a critical issue. Noramlly critical issues are high priority irrespective of the stage of the life cycle.
 
Is this answer useful? Yes | No
May 26, 2009 01:10:17   #5  
mathan_vel Member Since: December 2007   Contribution: 422    

RE: Bug Fixing Priority
The following Order should be fixed first
C
B
A


First Priortize to Functional Bugs B it shows the Database error on adding a Record. This is a common functions that to used in the Application. So this should be fix first.

Second Priortize to Installation A No customers will not be adjust on launching errors in the application so it should be fix next.

Last Priortize to the Missspelled bugs C. Products are identifies through by the name. so it should be next.

 
Is this answer useful? Yes | No
May 27, 2009 03:08:20   #6  
srinivasulub1981 Member Since: December 2005   Contribution: 381    

RE: Bug Fixing Priority
Hi

I feel below is the order of priority

B
C
A

why because 3rd one happened only with perticular data was entered in remaining cases it's fine. So need to fix the B first next A.

Srinivas

 
Is this answer useful? Yes | No
June 03, 2009 18:54:56   #7  
goksn Member Since: May 2009   Contribution: 94    

RE: Bug Fixing Priority
My definitions would be

A - High priority low severity bug
B- High priority High severity bug
C-Low priority High severity bug

So the order of bug fixing should be

1.B
2.A
3.C

If possible we can ask to fix B & A at the same time as the issue 'A' will take less time to fix.

 
Is this answer useful? Yes | NoAnswer is useful 5   Answer is not useful 0Overall Rating: +5    
June 24, 2009 04:34:13   #8  
shakilag Member Since: June 2009   Contribution: 10    

RE: Bug Fixing Priority
Defect priority is how much impact the defect will impose on business.

According to me the order is:
B: No user loves being nagged to enter the same information N times that too before getting authenticated to an application. So this stands to be at priority 1.

A: If the word is misspelt on the start up screen itself then the business reputation will be questionable. Believe me clients make major issue of such cosmetic issues. This ranks at 2 compared to B.

C: The application crashes on entering a rare/uncommon entry. This is a high severity issue but low on priority. This fix can be deferred.



 
Is this answer useful? Yes | NoAnswer is useful 2   Answer is not useful 0Overall Rating: +2    
July 13, 2009 07:44:10   #9  
zaara Member Since: July 2009   Contribution: 1    

RE: Bug Fixing Priority
I think that first of all issue B needs to be fixed as it does not allow success login in first attempt.

Issue A is second priority as application name is incorrect and this will be majorly noticed by its users.

Issue C is third priority as in this Database fails only when a user enters unusual string that is hardly to be used.

 
Is this answer useful? Yes | No
July 18, 2009 01:16:33   #10  
teja210 Member Since: July 2009   Contribution: 3    

RE: Bug Fixing Priority

First C needs to be fixed then B and last A.

C is critical and blocking issues it will block large number of test cases too and has high impact on the business so this needs to be fixed very urgently

B is High priority bug and also needs to be fixed immediately

A is medium priority bug and needs to be fixed on need based.


 
Is this answer useful? Yes | No
  Page 1 of 2   « First    1    2    >     Last »  


 
Go To Top


 Sponsored Links

 
About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape