Define package in Java.
Answer / nashiinformaticssolutions
The package is a collective bundle of classes and interfaces and the necessary libraries and JAR files. The use of packages helps in code reusability
| Is This Answer Correct ? | 0 Yes | 0 No |
Which class contains a method: cloneable or object?
How do you compare two strings lexicographically?
What is n in java?
What is the difference between array and arraylist? what is the difference between arraylist and linkedlist?
what is difference between prepare stetement and callable starement with example?
What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } } 10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } }
explain System.out.println()
What is exception hierarchy in java?
Can we convert stringbuilder to string in java?
What is thread life cycle?
What is double checked locking in singleton?
What is a ?