What is the functionality of Webserver?

Answers were Sorted based on User's Feedback



What is the functionality of Webserver?..

Answer / niranjanravi

WebServer provides services to web clients only.It
understands and supports only HTTP protocals.

Is This Answer Correct ?    0 Yes 0 No

What is the functionality of Webserver?..

Answer / ravikiran

webserver will provide you all the services and allow you
to do the deployment operation

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

Difference between string, stringbuffer and stringbuilder?

0 Answers  


Explain parallel processing in java8?

0 Answers  


What is the difference between java applets and applications?

0 Answers  


public class Garbage { int a=0; public void add() { int c=10+20; System.out.println(c); System.out.println(a); } public static void main(String args[]) { Garbage obj=new Garbage(); System.gc(); System.out.println("Garbage Collected"); obj.add(); } } Above is a code in java used for garbage collection. object obj has been created for the class Garbage and system.gc method is called. Then using that object add method is called.System.gc method if called the obj should be garbage collected?

6 Answers  


Is char a data type in java?

0 Answers  






What is the difference between class & structure?

0 Answers  


Does java arraylist maintain insertion order?

0 Answers  


Why do we need data serialization?

0 Answers  


What is the difference between a scrollbar and a scrollpane?

0 Answers  


What is a final class in java?

0 Answers  


Is array serializable java?

0 Answers  


Which methods cannot be overridden in java?

0 Answers  


Categories