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       Ask Questions on ANYTHING, that arise in your Daily Life at     FORUM9.COM
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
. Diff. between Application server and web server?
2. Default port number of Tomcat?
3. bug life cycle?
4. what is defered status in defect life cycle?
5. smoke test?
6. Do you use any automation tool for smoke testing??
7. verification and validation?
8. Testing process in your comp.?
9. Testing methodology?
10.when a bug is found what is the 1st action?
11.what is best bug in your current proj. which you found??
12.what is test plan and explain its contents?
13.Advantages of automation over mannual testing?
14.explain some SDLC models?
15.ADhoc testing?
16.what is mean by release notes?
17.what are all the contents of release checklist?
18.when a new build comes what is 1st action?(performing 
smoke test). 
19.how many test cases will you write for 1 day?
20.what is the bugbase do you use in your comp.?

 Question Submitted By :: Ramnarayan
I also faced this Question!!     Rank Answer Posted By  
 
  Re: . Diff. between Application server and web server? 2. Default port number of Tomcat? 3. bug life cycle? 4. what is defered status in defect life cycle? 5. smoke test? 6. Do you use any automation tool for smoke testing?? 7. verification and validation? 8. Testing process in your comp.? 9. Testing methodology? 10.when a bug is found what is the 1st action? 11.what is best bug in your current proj. which you found?? 12.what is test plan and explain its contents? 13.Advantages of automation over mannual testing? 14.explain some SDLC models? 15.ADhoc testing? 16.what is mean by release notes? 17.what are all the contents of release checklist? 18.when a new build comes what is 1st action?(performing smoke test). 19.how many test cases will you write for 1 day? 20.what is the bugbase do you use in your comp.?
Answer
# 1
3) New: wen tester reports a defect
Open: wen developer accepts that it is a bug or if the 
developer rejects the defect, then the status is turned 
into "Rejected"
Fixed: wen developer make changes to the code to rectify 
the bug..
Closed/Reopen: wen tester tests it again. if the expected 
result shown up, it is turned into "Closed" and if the 
problem ersists again, its "Reopen"

4) Defered status means the developer accepted the bus, but 
it is scheduled to rectify in the next build.

5) Testing the application whether its performing its basic 
functionality properly or not, so that the test team can go 
ahead with the application

6) Definitely can use.

7) Verification is static. no code is executed. say, 
analysis of requirements etc.
Validation is dynamic. code is executed with scenarios 
present in test cases.

8) varies from company to company.

9) varies from company to company (refer to symphony and 
mphasys websites for differant methodologies)

10) report it in bug tracking tool.

11) Its your project. you should know it.

12) Test plan is a document which contains the scope for 
testing the application and what to be tested, when to be 
tested and who to test.

13) Time, resource and Money

14) V model, Waterfall model etc..

15) AdHoc means doing something which is not planned.

16) Its a document released along with the product which 
explains about the product. it also contains about the bugs 
that are in defered status.

19) It varies with the complexity of requirements. Some 
write 1 or 2/day. Some write upto 20/day

20) The interviewer was asking about Bug tracking tool that 
you use..

Friends, plz correct me if i am wrong at any part...
 
Is This Answer Correct ?    1 Yes 0 No
Naresh
 
  Re: . Diff. between Application server and web server? 2. Default port number of Tomcat? 3. bug life cycle? 4. what is defered status in defect life cycle? 5. smoke test? 6. Do you use any automation tool for smoke testing?? 7. verification and validation? 8. Testing process in your comp.? 9. Testing methodology? 10.when a bug is found what is the 1st action? 11.what is best bug in your current proj. which you found?? 12.what is test plan and explain its contents? 13.Advantages of automation over mannual testing? 14.explain some SDLC models? 15.ADhoc testing? 16.what is mean by release notes? 17.what are all the contents of release checklist? 18.when a new build comes what is 1st action?(performing smoke test). 19.how many test cases will you write for 1 day? 20.what is the bugbase do you use in your comp.?
Answer
# 2
For the questions from 3 to 20 answers ahve given by Naresh.
I dont want to make comments on this further.

Here I am givign the answers for 1 and 2.

1)Diff. between Application server and web server?
A Web server serves pages for viewing in a Web browser, 
while an application server provides methods that client 
applications can call.A Web server exclusively handles HTTP 
requests, whereas an application server serves business 
logic to application programs through any number of 
protocols.

The Web server
A Web server handles the HTTP protocol. When the Web server 
receives an HTTP request, it responds with an HTTP 
response, such as sending back an HTML page. To process a 
request, a Web server may respond with a static HTML page 
or image, or delegate the dynamic response generation to 
some other program such as CGI scripts, JSPs (JavaServer 
Pages), servlets, ASPs (Active Server Pages), server-side 
JavaScripts, or some other server-side technology. Whatever 
their purpose, such server-side programs generate a 
response, most often in HTML, for viewing in a Web 
browser.The Web server doesn't provide any functionality 
beyond 
simply providing an environment in which the server-side 
program can execute and pass back the generated responses. 
The server-side program usually provides for itself such 
functions as transaction processing, database connectivity, 
and messaging.While a Web server may not itself support 
transactions or database connection pooling, it may employ 
various strategies for fault tolerance and scalability such 
as load balancing, caching, and clustering.

The application server
An application server exposes business logic to client 
applications through various protocols, possibly including 
HTTP. While a Web server mainly deals with sending HTML for 
display in a Web browser, an application server provides 
access to business logic for use by client application 
programs. The application program can use this logic just 
as it would call a method on an object.
The information traveling back and forth between an 
application server and its client is not restricted to 
simple display markup. Instead, the information is program 
logic. Since the logic takes the form of data and method 
calls and not static HTML, the client can employ the 
exposed business logic however it wants.the application 
server manages its own resources. Such gate-keeping duties 
include security, transaction processing, resource pooling, 
and messaging. Like a Web server, an application server may 
also employ various scalability and fault-tolerance 
techniques.Additionally, most application servers also 
contain a Web server, meaning you can consider a Web server 
a subset of an application server. While application 
servers contain 
Web server functionality, developers rarely deploy 
application servers in that capacity. Instead, when needed, 
they often deploy standalone Web servers in tandem with 
application servers.


2)Default port number for Tomcat application server is 80.
  Defalt port number for Websphere application server is 
7001.
 
Is This Answer Correct ?    1 Yes 1 No
Rao
 
 
 
  Re: . Diff. between Application server and web server? 2. Default port number of Tomcat? 3. bug life cycle? 4. what is defered status in defect life cycle? 5. smoke test? 6. Do you use any automation tool for smoke testing?? 7. verification and validation? 8. Testing process in your comp.? 9. Testing methodology? 10.when a bug is found what is the 1st action? 11.what is best bug in your current proj. which you found?? 12.what is test plan and explain its contents? 13.Advantages of automation over mannual testing? 14.explain some SDLC models? 15.ADhoc testing? 16.what is mean by release notes? 17.what are all the contents of release checklist? 18.when a new build comes what is 1st action?(performing smoke test). 19.how many test cases will you write for 1 day? 20.what is the bugbase do you use in your comp.?
Answer
# 3
For 16th quesion answer is ,in our company relase notes 
document prepared by client himself.In this documetns,he 
mentions all the bugs which re diferred from from prious 
releases and the most important bugs logged  at the time of 
project deadlines.And also,he mentiones the workaround for 
every bug says how to overcome from the bug,while using the 
software.
 
Is This Answer Correct ?    0 Yes 0 No
Rao
 

 
 
 
Other Manual Testing Interview Questions
 
  Question Asked @ Answers
 
How the test plan is a tool and the product? CitiGroup1
If a interviewer ask me the duration of my project, then should i tell them the total(development+testing) time of the project? Plz tell it's urgent  6
1.Differentiate SDLC & v-model? 2. " verification and validation? 3. " quality assurance and quality control? 4.what are the components in test strategy? 5.Differentiate test strategy & test plan? 6.wht methods will you follow in yoiur company for test design?  1
What did you achieve being a tester TCS2
1 what is smoke and sanity testing , when it will be performed ?  3
what is testing techniques,testing methodology,test packs,how are they differentiated? Gijima3
what is a review?  1
What is the ONE key element of ‘test case’? What is the ONE key element of a Test Plan?  1
what is difference in between os 2000 xp  1
There are no requriments, coding is been developed to the project without srs,brs document how u are going to prepare test case? Accenture2
what is mean by service level testing? what will come under this?  1
What is meant by SIT?  2
What is meant by SIT?  4
wht is test data,test condition  1
the typical Application Test Lifecycle?  1
Explain your web application archtechture? Verizon1
Is Beta Testing done by devolopers or testers?  5
you found a bug and send it to the developer for rectification but the developer not accepting that bug at that time what will u do?(plz its very urgent give me the best answer plz) Encora9
what is agile testing, explain with example Wipro3
Hi Friends..Can anybody tell me how much Salary u'll be getting for Manual Tester(1+ years of Experience)Position in the Companies like Wipro & Infosys???? Google3
 
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