Suppose in one banking application there is one module ATM Facility. in that ATM facility when ever we are depositing/withdrawing money it is not showing any conformation message but actually at the back end it is happening properly with out any mistake means only missing of message . in this case as it is happening properly so there is nothing wrong with the application but as end user is not getting any conformation message so he/she will be confuse for this. So we can consider this issue as HIGH Priority but LOW Severity defects..
23.Explain about Bug life cycle?
1)tester->
2) open defect->
3)send to developer
4)->if accepted moves to step5 else sends the bug to tester gain
5)fixed by developer ->
6)regression testing->
7)no problem inbuilt and sign off
8)->if problem in built reopen the issue send to step3
24.How can you report the defect using excel sheet?
To report the defect using excel sheet
Mention : The Feature that been effected.
mention : Test Case ID (Which fail you can even mention any other which are dependency on this bug)
Mention : Actual Behavior
Mention : Expected Behavior as mentioned in Test Case or EFS or EBS or SRS document
with section
Mention : Your Test Setup used during Testing
Mention : Steps to Re-Produce the bug
Mention : Additional Info
Mention : Attach a Screen Shot if it is a GUI bug
Mention : Which other features it is blocking because of this bug that you are unable to
execute the test cases.
Mention : How much time you took to execute that test case or follow that specific TC
which leaded to bug
25.If you have executed 100 test cases ,every test case passed but apart from these test case you found some defect for which test case is not prepared ,then how you can report the bug?
While reporting this bug into bug tracking tool you will generate the test case I mean put the steps to reproduce the bug.
26.what is the differ between web based application and client server application
The basic difference between web based application & client server application is that the web application are 3 trier & client based are 2 trier. In web based changes are made at one place & it is reflected on other layers also whereas client based separate changes need be installed on client machine also.
27.what is test plan? and can you tell the test plan contents?
Test plan is a high level document which explains the test strategy,time lines and available resources in detail. Typically a test plan contains:
-Objective
-Test strategy
-Resources
-Entry criteria
-Exit criteria
-Use cases/Test cases
-Tasks
-Features to be tested and not tested
-Risks/Assumptions.
28.How many test cases can you write per a day, an average figure?
Complex test cases 4-7 per day
Medium test cases 10-15 per day
Normal test cases 20-30 per day
29.Who will prepare FRS(functional requirement documents)?
What is the impotent of FRS?
The Business Analyst will prepare the FRS.
Based on this we are going to prepare test cases.
It contains
1. Over view of the project
2. Page elements of the Application(Filed Names)
3. Prototype of the of the application
4. Business rules and Error States
5. Data Flow diagrams
6. Use cases contains Actor and Actions and System Responses
30.How you can decide the number of test cases are enough for testing the given module?
The developed test cases are covered all the functionality of the application we can say test cases are enough. If u know the functionality covered or not u can use RTM.
31.What is the difference between Retesting and Data Driven Testing?
Retesting: it is manual process in which application will be tested with entire new set of data.
Data Driven Testing (DDT)-It is a Automated testing process in which application is tested with multiple test data. DDT is very easy procedure than retesting because the tester should sit and need to give different new inputs manually from front end and it is very tedious and boring procedure.
32.what is regression testing?
After the Bug fixed ,testing the application whether the fixed bug is affecting remaining functionality of the application or not. Majorly in regression testing Bug fixed module and it's
connected modules are checked for their integrity after bug fixation.
33.how do u test web application?
Web application testing
web application should have the following features like
1.Attractive User Interface(logos,fonts,alignment)
2.High Usability options
3.Security features(if it has login feature)
4.Database(back end).
5.Performance(appearing speed of the application on client system)
6.Able to work on different Bowers(Browser compatibility) ,O.S compatibility(technical called as portability)
7.Broken link testing.........etc
so we need to follow out the following test strategy.
1.Functionality Testing
2.Performance Testing(Load,volume,Stress,Scalability)
3.Usability Testing
4.User Interface Testing(colors,fonts,alignments...)
5.Security Testing
6.Browser compatibility Testing(different versions and different browser)
7.Broken link and Navigation Testing
8.Database(back end)Testing(data integrity)
9.Portability testing(Multi Os Support)....etc
34.how do u perform regression testing, means what test cases u select for regression
Regression testing will be conducted after any bug fixed or any functionality changed. During defect fixing procedure some part of coding may be changed or functionality may be manipulated. In this case the old test
cases will be updated or completely re written according to new features of the application where bug fixed area. Here possible areas are old test cases will be executed as usual or some new test cases will be added to existing test cases or some test cases may be deleted.
35.what r the client side scripting languages and server side scripting languages
client side scripting languages are
JavaScript,Vb Script,PHP...etc
Server side Scripting languages are Perl,JSP,ASP,PHP..etc
Client side scripting languages are useful to validate the inputs or user actions from user side or client side.
Server side Scripting languages are to validate the inputs at server side.
This scripting languages provide security for the application. and also provides dynamic nature to web or client server application client side scripting is good because it won't send the unwanted input's to server for validation. from front end it self it validated the user inputs and restricts the user activities and guides him
36.if a very low defect (user interface )is detected by u and the developer not compromising with that defect what will u do?
user interface defect is a high visibility defect and easy to reproduce.
Follow the below procedure
1.Reproduce the defect
2.Capture the defect screen shots
3.Document the proper inputs that you are used to get the defect in the defect report
3.send the defect report with screen shots,i/PS and procedure for defect reproduction.
before going to this you must check your computer hard ware configuration that is same as developer system configuration and also check the system graphic drivers are properly installed or not. if the problem in graphic drivers the User interface error will come. so first check your side if it is correct from your side then report the defect by following the above method.
37.if u r only person in the office and client asked u for some changes and u didn't get what the client asked for what will u do?
One thing here is very important. Nobody will ask test engineer to change software that is not your duty,even if it is related to testing and anybody is not there try to listen care fully if you are not understand ask him again and inform to the corresponding people immediately. Here the client need speedy service,we(our company) should not get any blame from customer side.
38.how to get top two salaries from employee tables
Select * from emp e where 2>=(select count(*) from emp e where sal>e.sal) order by desc sal.
39.How many Test-Cases can be written for the calculator having 0-9 buttons, Add,Equal buttons. The test cases should be
focused only on add-functionality but mot GUI. What are those test-cases?
Test-Cases for the calculator
so here we have 12 buttons total ie 0,1,2,3,4,5,6,7,8,9,ADD,Equal -12 buttons
here u can press at least 4 buttons at a time minimum for example 0+1= for zero u should press 'zero' labeled button for plus u should
press '+' labeled button for one u should press 'one' labeled button for equal to u should press 'equal to' labeled button 0+1=here + and =
positions will not vary so first number position can be varied from 0 to 9 i.e from permutation and combinations u can fill that space in
10 ways in the same way second number position can be varied from 0 to 9 i.e from permutation and combinations u can fill that space
in 10 ways
Total number of possibilities are =10x10=100
This is exhaustive testing methodology and this is not possible in all cases.
In mathematics we have one policy that the the function satisfies the starting and ending values of a range then it can satisfy for
entire range of values from starting to ending.
then we check the starting conditions i.e one test case for '0+0=' (expected values you know that is '0')then another test case for
'9+9='(expected values you know that is '18')only two test cases are enough to test the calculator functionality.