what is the JNDI?
Answers were Sorted based on User's Feedback
JNDI (Java Naming and Directory Interface) enables Java
platform-based applications to access multiple naming and
directory services.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / harish
JNDI is one of the J2EE API's . It provides interfaces for
perform various naming and directory operations across
diffrent types of services.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ravikiran
JNDI is the java naming and directory interface and is the
root for the look up directory service to looking up for a
particular resource
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the name of the java compiler?
When you Click a Button, What event will be fired?
Define how can we find the actual size of an object on the heap?
Is a method a procedure?
I declared main() method as private. But it still running and displaying the output. Please Answer it . Code Snippet as Below: import java.io.*; class over { private static void main(String[] args) { int high = Integer.MAX_VALUE; int overflow = high + 1; int low = Integer.MIN_VALUE; int underflow = low - 1; System.out.println(high + "\n" +overflow +"\n"+ low +"\n"+underflow); //System.out.println(overflow); //System.out.println(low); //System.out.println(underflow); } }
What are the similarities between an array and an ArrayList?
What are design patterns and please explain?
Explain about main thread in java?
What is the difference between Static and final?
What is variable explain with example?
What does a boolean method return?
How to make a class or a bean serializable?