briefley expalin about the packages

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Do I need to import java.lang package any time? Why?

737


What is widening and narrowing in java? Discuss with an example.

554


What is the difference between numeric and integer?

509


What are daemon Threads in java?

608


Do you know why doesn't the java library use a randomized version of quicksort?

552






What is compiler and what its output.

632


Explain about the security aspect of java?

568


Explain about strings in java?

614


What is a numeric literal?

521


What do you mean by platform independence of Java?

532


What are different types of classloaders?

585


Explain importance of finally block in java?

581


Can you use this() and super() both in a constructor?

520


Why isn’t there operator overloading?

592


Class c implements interface I containing method m1 and m2 declarations. Class c has provided implementation for method m2. Can I create an object of class c?

1013