| Back to Questions Page |
| |
| Question |
what is swing and jsp. where we use swings and jsp |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Java Swing is technolgy which we are using to design
desktop application.
JSP is a server side technology called as Java Server Pages.
when we need to design a application in client - server
architecture where client is desktop application then we
will go for swings in java, and we can use jsp on
serverside.
JSP is also used to represent the view as HTML on browser
in MVC architecture.  |
| Imtiyaz |
| |
| |
| Answer | swing is a technology which is used for front-end design.
jsp is technology which is used in server side  |
| Jothiboss |
| |
| |
| Question |
what does a constructor does. |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ Marlabs |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Constructor is a member function of class that is used to
create objects of that class.
we can also intialise instance variables.  |
| Sucharitha |
| |
| |
|
|
| |
| Answer | Constructor is a special type of function which is
available for every class.
Constructors can be used to create a object in different
forms.
Constructors can be used to execute a statements when
object is creating.
Constructors can be used to intialized the object
properties.  |
| Imtiyaz |
| |
| |
| Answer | constructor is a function, which would be executed only at
the time of creating an object.
constructor would be executed only once on the object.  |
| Manmohan |
| |
| |
| Answer | constructor is a member function with same name of the class
if we call constructor it will automatically invoke the object
of that class.when we calling the normal member function we
usually creating object of that class then calling it using
the .operator  |
| Sandeep |
| |
| |
| Question |
How to handle exceptions without using try,catch,throw, and
log4j |
Rank |
Answer Posted By |
|
Question Submitted By :: Taju |
| This Interview Question Asked @ Marlabs |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Generally without try catch trow we can not handle
exceptions handling is not a good practice.
In that case we have to first find the probalbe case for
exception and using if else codition we have to implement
those condition and handling this.  |
| Anup |
| |
| |
|
| |
|
Back to Questions Page |