What is the functionality of Webserver?
Answers were Sorted based on User's Feedback
WebServer provides services to web clients only.It
understands and supports only HTTP protocals.
Is This Answer Correct ? | 0 Yes | 0 No |
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 |
33. try { 34. // some code here 35. } catch (NullPointerException e1) { 36. System.out.print(”a”); 37. } catch (RuntimeException e2) { 38. System.out.print(”b”); 39. } finally { 40. System.out.print(”c”); 41. } What is the result if a NullPointerException occurs on line 34? 1 c 2 a 3 ab 4 ac
What access modifiers can be used for variables?
What does @param args mean in java?
What is identifier in java?
What is use of map in java?
What is udp in java?
How many types of equations are there?
What happens to the Exception object after handling an exception?
What is a java list?
What methods are used in Servlet?Applet communication?
Can you sort a list in java?
Can java cast null?