SunOne Interview Questions And Answers
Download SunOne Interview Questions and Answers PDF
Enhance your SunOne interview preparation with our set of 3 carefully chosen questions. These questions will test your expertise and readiness for any SunOne interview scenario. Ideal for candidates of all levels, this collection is a must-have for your study plan. Secure the free PDF to access all 3 questions and guarantee your preparation for your SunOne interview. This guide is crucial for enhancing your readiness and self-assurance.
3 SunOne Questions and Answers:
SunOne Job Interview Questions Table of Contents:
1 :: How to handle exceptions without using try,catch,throw, and log4j?
in case of .net, if you are not using
try/catch/finally/throw/log4j
1. make use of Page_error method on any .aspx page to
handle error on the specfic page
2. in global.asax use application_error event handler
3. web.config, under Error - specify what need to be done
based on error code/type
Read Moretry/catch/finally/throw/log4j
1. make use of Page_error method on any .aspx page to
handle error on the specfic page
2. in global.asax use application_error event handler
3. web.config, under Error - specify what need to be done
based on error code/type
2 :: What does a constructor does?
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.
Read Moreavailable 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.
3 :: What is swing and jsp. Where we use swings and jsp?
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.
Read Moredesktop 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.