briefley expalin about the packages
Answers were Sorted based on User's Feedback
Answer / mayank sharma
file 1
package ListPkg;
public class List { ... }
class ListNode {...}
file 2
package ListPkg;
public class NoNextItemException { ... }
file 3
public class Test { ... }
class Utils { ... }
file 4
class Test2 { ... }
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / geetha
A package is a grouping of related types providing access protection and name space management.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / amrutha
A package contains a set of classes and interfaces.
package packagename;
interface interfacename{
}
class Classname{
}
class Test{
}
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a parameter used for?
What is the platform?
What are the 3 types of control structures?
Can there be an abstract class with no abstract methods in it?
Define array. Tell me about 2-D array.
What is balanced tree in java?
where can we get jAVA project orientation traing in HYDERABD
Can you override a private or static method in java?
Can a Byte object be cast to a double value?
How do you know if a value is nan?
What are the files generated after using IDL to java compiler?
What is the this keyword?