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  >>  Scripts  >>  PHP
 
 


 

 
 PHP interview questions  PHP Interview Questions
 ASP interview questions  ASP Interview Questions
 CGI Perl interview questions  CGI Perl Interview Questions
 JavaScript interview questions  JavaScript Interview Questions
 VB Script interview questions  VB Script Interview Questions
 JSP interview questions  JSP Interview Questions
 Shell Script interview questions  Shell Script Interview Questions
 Python interview questions  Python Interview Questions
 Tcl interview questions  Tcl Interview Questions
 Awk interview questions  Awk Interview Questions
 AJAX interview questions  AJAX Interview Questions
 Ruby on Rails interview questions  Ruby on Rails Interview Questions
 Scripts AllOther interview questions  Scripts AllOther Interview Questions
Question
1.What is application server ?
2.What is web server ?
3.Explain the process of execution of a php file ?
 Question Submitted By :: Binoyav
I also faced this Question!!     Rank Answer Posted By  
 
  Re: 1.What is application server ? 2.What is web server ? 3.Explain the process of execution of a php file ?
Answer
# 1
application server is TOMCAT.
web-server is weblogic server.

zend engine process of execution of php file.
 
Is This Answer Correct ?    2 Yes 4 No
Anuj Maheshwari
 
  Re: 1.What is application server ? 2.What is web server ? 3.Explain the process of execution of a php file ?
Answer
# 2
1. Application server is Apache
2. Web Server also Apache
 
Is This Answer Correct ?    1 Yes 7 No
Priyanka
 
 
 
  Re: 1.What is application server ? 2.What is web server ? 3.Explain the process of execution of a php file ?
Answer
# 3
Both have given answers like giving only examples.

Actualy a web server is just a part of a application server.
where as a application server not only serve as web server
but also the application can be used to run some internal
bussiness login in the server.
So application server is a broad category as compare to web
server
 
Is This Answer Correct ?    5 Yes 1 No
Manoj Ghosh
 
  Re: 1.What is application server ? 2.What is web server ? 3.Explain the process of execution of a php file ?
Answer
# 4
Application server is a server that hosts an API to expose 
Business Logic and Business Processes for use by other 
applications

Web server is responsible for accepting HTTP requests from 
web clients, which are known as web browsers, and serving 
them HTTP responses along with optional data contents, 
which usually are web pages such as HTML documents and 
linked objects
 
Is This Answer Correct ?    8 Yes 0 No
Mohsin
 
  Re: 1.What is application server ? 2.What is web server ? 3.Explain the process of execution of a php file ?
Answer
# 5
application server is we execute both jsp,servlet,ejb.
but in web server only run jsp,servlet
 
Is This Answer Correct ?    0 Yes 0 No
Pinku
 
  Re: 1.What is application server ? 2.What is web server ? 3.Explain the process of execution of a php file ?
Answer
# 6
A Web Server understands and supports only HTTP protocol
whereas an Application Server supports HTTP,TCP/IP and many
more protocols. Also many more features such as
Caches,Clusters,Load Balancing are there in Application
Servers which are not available in Web Servers. We can also
Configure Application Servers to work as Web Server. In
short, Applicaion Server is a super set of which Web Server
is a sub set.
 
Is This Answer Correct ?    3 Yes 0 No
Shanti Chepuru
 
  Re: 1.What is application server ? 2.What is web server ? 3.Explain the process of execution of a php file ?
Answer
# 7
Difference between AppServer and a Web server
(1) Webserver serves pages for viewing in web browser,
application server provides exposes businness logic for
client applications through various protocols

(2) Webserver exclusively handles http requests.application
server serves bussiness logic to application programs
through any number of protocols.

(3) Webserver delegation model is fairly simple,when the
request comes into the webserver,it simply passes the
request to the program best able to handle it(Server side
program). It may not support transactions and database
connection pooling.

(4) Application server is more capable of dynamic behaviour
than webserver. We can also configure application server to
work as a webserver.Simply applic! ation server is a
superset of webserver.
 
Is This Answer Correct ?    4 Yes 0 No
Anil Chowdary
 
  Re: 1.What is application server ? 2.What is web server ? 3.Explain the process of execution of a php file ?
Answer
# 8
Application Server is the one that hosts the business logic
of the applications as well as third party applications that
are needed by web applications.

Web server receives the HTTP request, uses the application
server for the processing of data. It uses CGI scripts to
access the third party application lying on the application
server.

The response of the application server is utilized by web
server and produces the appropriate and presentable output
to the browsers.
 
Is This Answer Correct ?    0 Yes 0 No
Sachin
 

 
 
 
Other PHP Interview Questions
 
  Question Asked @ Answers
 
What is the maximum size of a file that can be uploaded using PHP and how can we change this?  2
Suppose your Zend engine supports the mode <? ?> Then how can u configure your PHP Zend engine to support <?PHP ?> mode ?  4
write the function to fetch a image from mysql databases (datatype blob).  1
How to download a php script directly in your script page? A1-Technology3
What changes to done in PHP.ini file for file uploading?  2
What is the advantge and disadvantage of mysql_connet() and mysql_pconnect() ? in which condition will you use mysql_connect() and mysql_pconnect(). Avanigoradia2
A company named Pensar Technologies in chennai has offered me a job as Software Trainee in chennai.But they are asking to pay demand draft of Rs.75000/- in the name of the company.They are saying the gross renumeration will pay Rs.90000/- annually.I want to know whether this is good or bad company?Help me out in this.  11
What is the difference between $message and $$message ?  1
Create a PHP web script with the following attributes: on start, three HTML form elements are shown: an string input field, a checkbox field, a dropdown/pull down list with 5 elements and a submit button. On submission, the form should be redisplayed (while remaining all options/inputs as the user has selected/entered them). Additionally, the selections/inputs of the user should be displayed in text. Please solve this without the use of any external libraries. Wipro1
What is the functionality of the function strstr and stristr?  2
what will do ceil() and floor() in PHP?  3
How can you access a COM object from a PHP page?  1
What is meant by nl2br()? Rushmore-Consultancy2
Does winrunner 8.0 or qtp 8.0 supports php  1
Which of the following represents the proper way to set a session variable? Answer: a. $_SESSION['foo'] = 'bar'; b. session_start(); c. session_set_save_handler ('myopen', 'myclose', 'myread', 'mywrite', 'mydelete', 'mygarbage'); d. $foo = $_SESSION['foo']; 2.When administering MySQL, you should make the data directory accessible via the operating system 3.which statement can be used to determine how the optimizer resolves a query TCS7
how can refresh current page automatically, without press any button and anchor tag.  5
what mode to use when creating dirs with mkdir?  1
What are the advantages of PHP over HTML? Infosys6
What are the different functions in sorting an array?  1
How can I use the COM components in php? Rushmore-Consultancy1
 
For more PHP 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