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   SiteMap shows list of All Categories in this site.
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 0 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
 
what r ur strengths?  4
(hi friends : please give me reply soon ) i have completed my software testing course , now am planning to put a fake of 1.5 yrs, i need two projects to put in my resume , if anybody has any real time experience and those who handled a project( 6-8 months )in the telecom domain ,please send me the details regarding the project ...it will a great help for me ..if u have suggestion let me know ....  5
What is PET Model? Overview of Pet model and benefits of it? HCL1
what is the difference between testcase and test scenario? Please give one example. IBM5
Difference b/w test case and scenarios.  2
Who is Kent Beck, Dr Grace Hopper, Dennis Ritchie?  1
How to kill cookies from Web page?  3
how will define a bug generally?  3
why do u put the bug status as deffered?what do u mean by that exactly? Wipro3
Give an example of test policy?  1
how many members are involved in test plan? and tell me names? Wipro2
write test cases on "Login Window" ?  2
what can't be automated on the projects?  3
Can anybody help me by sharing some knowledge on software testing life cycle, how testing process done under UT,IT,ST,PT,UAT.?please explai me briefly regarding this. Best Regards, Keerthana.  1
What is localization testing?  3
I m writting the test cases in Excel sheet. After wrting test cases for version 2.0.0 If there is new feature added in build 2.0.1, I will write test cases for newly added feature. Then 3.0 version release for testing with new feature. I will write test cases for newly added feature 3.0 But if in between 2.0.2 build release for testing with same feature of 3.0.Then should I have to write test cases for same feature again? If not --> when 2.0.2build again release for testing after 2months then How should I came to know that I have to run these test cases on 2.0.2build?  1
what is server-side testing? what is automation framework?  1
Phases of Software Testing Life Cycle?  3
Branch testing comes under white box testing or black box testing? MBT2
how to perform reviews Tech-Mahindra1
 
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