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 |
Is java pure object oriented or not? if yes, give the valid reason.
13 Answers Emphasis, NIIT, Syntel, Wipro,
How to call a Stored Procedure from JDBC?
Why use string handling in Java?
What is data and its types?
Define max and min heap, also the search time of heap.
What is the difference between public, private, protected, and friend access?
What is java objectoutputstream?
how and when compiler knows that the Java code throws the checked Exception.
What is dynamic array in java?
Why strings in java are called as immutable?
Does string is thread-safe in java?
10. class Nav{ 11. public enum Direction { NORTH, SOUTH, EAST, WEST } 12. } 13. public class Sprite{ 14. // insert code here 15. } Which code, inserted at line 14, allows the Sprite class to compile? a)Direction d = NORTH; b)Nav.Direction d = NORTH; c)Direction d = Direction.NORTH; d)Nav.Direction d = Nav.Direction.NORTH;