What are packages in java?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
Packages in Java can be defined as the grouping of related types of classes, interfaces, etc providing access to protection and namespace management.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Packages in Java can be defined as the grouping of related types of classes, interfaces, etc providing access to protection and namespace management.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Packages in Java can be defined as the grouping of related types of classes, interfaces, etc providing access to protection and namespace management.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Packages in Java can be defined as the grouping of related types of classes, interfaces, etc providing access to protection and namespace management.
| Is This Answer Correct ? | 0 Yes | 0 No |
Packages in Java can be defined as the grouping of related types of classes, interfaces, etc providing access to protection and namespace management.
| Is This Answer Correct ? | 0 Yes | 0 No |
hi to all,i have a question on static block. i saved below as test.java class test extends a { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p as static test static but if i change base class as test class then class test { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a extends test { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p test static explain me why "a static" wasn't print in second code when it is in derived class
Is a string literal?
Why is it called buffering?
what is the output ? Math.floor(-2.1) a)2 b)-2 c)-3.0 d)0
Where we write javascript code in html page?
Difference between start() and run() method of thread class?
Write an algorithm for quick sort?
What is scope of a variable?
Why do we need hashmap in java?
How do I remove a character from a string in java?
What is the exact difference in between Unicast and Multicast object? Where will it be used?
What is an example of a keyword?