Hi All,
I noticed an error on Question 63(OCA Practice Exam Chapter 10).
package unix;
import java.util.*;
public class EchoFirst{...}
It says when run as
java EchoFirst seed flower plant. But there is package for this class so we must use fully qualified name while using java command --> java unix.EchoFirst seed flower plant.
Is it an error? or Is it possible to run a java application without writing fully qualified class name?