|
Displaying 1 - 50 of about 3751 Related Tutorials.
|
j2ee - Java Interview Questions
j2ee
What is MVC Architecture..How JTable,JButton,......etc...; Hi friend,
Swing architecture is rooted in the model-view-controller (MVC... representation of that data.
* A controller that takes user input on the view |
why business logic in servlets - JSP-Interview Questions
why business logic in servlets why business logic written using servlets not in jsp. Jsp used for presentation purpose. serlvet used for coding business logic and controller logic. Reason for using servlets in business logic |
J2EE - Java Interview Questions
J2EE How do we call destroy() in service |
|
|
J2EE - Java Interview Questions
J2EE How do we call destroy() in service |
j2ee - Java Interview Questions
j2ee what are the services does the weblogic server provide in project development
OR
what are the services we take from the weblogic during project development |
|
|
J2EE - Java Interview Questions
J2EE What is J2EE architecture? Hi friend,
The Java? 2 Platform, Enterprise Edition (J2EE) provides a standard for developing... solutions. The J2EE specification satisfies these challenges by providing |
j2ee - JSP-Interview Questions
j2ee When to use page scope,request scope,session scope,Application scope.
How to decide which scope is suitable to our application.
And What is the difference between them.Which scope will provide better advantage.  |
why zero? - Java Interview Questions
why zero? import java.util.Scanner;
public class Simple
{
public... number is" + lowest);
}
}
why the lowest number is zero?..
i know by default it will be zero..
but why i can get value for largest number |
Jakarta Struts Interview Questions
Jakarta Struts Interview Questions
 ...?
A: Jakarta Struts is open source implementation of MVC
(Model-View-Controller... Struts Framework this class plays the
role of controller. All the requests |
why the occupancy rate is zero? - Java Interview Questions
why the occupancy rate is zero? import java.util.Scanner;
public class lab3
{
public static void main(String[]args)
{
int floor;
int...);
}
}
why the occupancy rate is always zero?
please help.
tq. Hello |
j2ee - Java Server Faces Questions
j2ee Hi iam swathi.I hope u will answer my question.
Observe...)hs.getValue("hai"));
value is not retreived by the session.
Why... question.. Why cant you use the following code
HttpSession hs=request.getSession |
interview questions
interview questions
Tell us about a situation where you had to solve a difficult problem. What did you do?
What is your typical way of dealing... to be your greatest achievement so far and why?
Describe a situation where you have had |
interview questions
interview questions
Tell us about a situation where you had to solve a difficult problem. What did you do?
What is your typical way of dealing... greatest achievement so far and why?
Describe a situation where you have had |
interview questions
interview questions
Tell us about a situation where you had to solve a difficult problem. What did you do?
What is your typical way of dealing... greatest achievement so far and why?
Describe a situation where you have had |
interview questions
interview questions
Tell us about a situation where you had to solve a difficult problem. What did you do?
What is your typical way of dealing... greatest achievement so far and why?
Describe a situation where you have had |
some interview questions - IDE Questions
some interview questions 1. Briefly describe your ideal job?
2. Why did you choose this career?
3. why would you want to work here?
4. why should we hire you over others waiting to
be interviewed?
5. why |
some interview questions - IDE Questions
some interview questions 1. Briefly describe your ideal job?
2. Why did you choose this career?
3. why would you want to work here?
4. why should we hire you over others waiting to
be interviewed?
5. why |
java - Java Interview Questions
Why Java Why Java? why not C or C |
Interview Questions - Large Number of Java Interview Questions
|
J2EE Interview Questions -2
J2EE Interview Questions -2
Question... that is independent of the transaction manager implementation. The J2EE SDK uses.../
Question: What is J2EE Connector architecture?
Answer |
java - Java Interview Questions
java what is mean by static variables in java why it is needed |
Overriding - Java Interview Questions
Overriding Why we cannot increase the scope of the overridden method |
interview questions - Java Interview Questions
interview questions for Java Hi Any one can u please post the interview point of questions.Warm Regards, Satish |
interview - Java Interview Questions
interview kindly guide me some interview questions of Java |
java - Java Interview Questions
java why notify() and notify() methods are written in Object class not in Thread class |
Pointers - Java Interview Questions
Pointers Why Pointer are not used in JAVA? There is no need to store the address of
the another variable in java So that pointers
are not used in java |
java - JSP-Interview Questions
java 1. why implicit object "Exception" is difference from other implicit objects?
2. what is the meaning of exception page & exception in jsp directive |
java - Java Interview Questions
java why java is not fully object oriented language.
Dear
java is fully object oriented
but its not a pure object oriented.
bcz java supporting premitive data types.
thanks
Rajkumar |
j2ee - Java Server Faces Questions
J2EE EAR Structure What is the structure for J2EE EAR |
java - Java Interview Questions
java why they have implemented overriding in java? Hi Friend,
In Java Overriding provide the facility to redefine the inherit method of the super class by a subclass. The method overriding is used to invoke |
OOPs - Java Interview Questions
OOPs i know what is an abstract class and what is an interface but i wanted to know in which scenarios i use them and why nowadays java is stressing on interface programming.and i also want to know where do we exactly implement |
hr - Java Interview Questions
hr i am working as a permanent employee in one software company
i got an call from others that for temporary position
then if they ask why are you choosing for contract position what answer should i tell?
the contract |
java - Java Interview Questions
java why java don't support operator overloading? Hi Friend,
Overloading provides complexity in code and violates transparency.
The effects of operator overloading is easily achieved by declaring a class |
INTERFACE - Java Interview Questions
INTERFACE Why Use Interface in Java?i want region ?plz post answer Hi Friend,
Interfaces form a contract between the class and the outside world, and this contract is enforced at build time by the compiler.All |
java - Java Interview Questions
java Hi guys,
why we can not use super and this in static block.If i will use what will happen???
For e.g.suppose a super class is having a non static member but subclass is having static block so if i will call |
collections - Java Interview Questions
collections u r storing objects in arrays then why we need collectins.i need explanation Hi friend,
Main difference between Collection and Array is
Array are fixed size.
and In Collection are resizable |
java - Java Interview Questions
java why notify() and notifyAll() methods are written in Object class not in Thread class? Hi Friend,
The locking mechanism happens at the Object level so all these methods are in Object Class.
Java |
constructor - Java Interview Questions
constructor We cann't override a constructor, i.e., it is almost like a final method, then why cann't we write the constructor as final? Hi friend,
Overriding constructor :
* you cannot override |
java - Java Interview Questions
connection pooling technique.
The J2EE servers like weblogic,JBoss,websphere etc |
Multithreading ? - Java Interview Questions
, though why we go for multithreading.Any advantage in tat. Thank u in advance.  |
java - Java Interview Questions
java what is a singleton class? why and where we used and give me one example hai friend this is jagadhish
A singleton is a class that can be instantiated only one time in JVM pet class loader.Repeated calls always |
java - Java Interview Questions
java difference between abstract and interface?Why abstract class needed? Hi Friend,
Difference between Abstract class and Interface:
1)An interface represents only the boundaries of a class/classes |
Core Java - Java Interview Questions
Core Java Why we use MAP |
java language - Java Interview Questions
java language why its call java |
java - Java Interview Questions
java can you write a java pro with out using static infront of main method?why? Hi friend,
We have
* public: The method can be accessed outside the class / package
* static: You need not have |
Interface - Java Interview Questions
Interface Respected sir
why we use Interface in java? because we have abstract class for do same work. Hi Anwer,
When you define a new interface, you are defining a new reference data type. You can use |
java - Java Interview Questions
java what is advantage of observer ,observable class?why we using these two type? Hi maheswari
Java Provides builtin classes Observer and Observable to achieve this functionality.AWT/Swing event model uses |
Java of Sailendra - Java Interview Questions
Java of Sailendra why string is not taking as primitive datatypes but we r taking it as a class? why explain |
Controler as JSP - JSP-Interview Questions
as a controller in mvc-1 . Plz say yes or no.
Already u have given link ,still am not clear.
Thank u advance Hi friend,
Yes ,We use Jsp as a controller... as a controller in mvc-1.Bboz in mvc-1 as jsp is used as both controller and view so |
Java Code - Java Interview Questions
Java Code why overiding method used in your project |