What is java naming and directory service?
No Answer is Posted For this Question
Be the First to Post Answer
What is Connector architecture?
Describe the file types *.ear, * .jar and *.war?
Which one should we prefer while using bean ? managed bean annotation or faces-config
What is cascade delete?
what is jvm? how can it is useful in java?
What is use of final keyword in java?
Describe the ear, war, and jar.
Whats the O/p of the below code snippet ? And explain how does it imply the concept of call-by-value/call-by reference. (PS : Pls ignore syntax errors) public class One { public oneA(){ sop ("Into One--");} } public class Two extends One{ public twoT(){ sop ("Into Two--"); } } public class Home { One a; Two t; public static void main(argv[]) { sop ("In Home--"); sop(a.oneA()); sop(t.oneA()); sop(a.twoT()); sop(t.twoT()); } }
How do I run java?
you are to choose between two procedures,both of which copute the minimum value in an array of integers.one procedure returns the smallest integer if its array argument is empty. the other requires a nonempty array.which procedure should you choose and why?
What is java awt event?
Which implicit object in jsp is synchronized?