Javaprepare.com - Questions - Language Fundamentals
Thiru Narayanan
Greenhorn
Joined: Apr 30, 2001
Posts: 23
posted
0
Question No. 17 of the Subject goes like this: Which of the following are legal Java programs. Select all the correct answer. D) package pkg; import java.awt.*; Option 'D' is also given as correct. If only these two lines are available in the source file in what name the file is to be saved? And how can it be compiled and run?
Manfred Leonhardt
Ranch Hand
Joined: Jan 09, 2001
Posts: 1492
posted
0
Hi Thiru, An empty file is a valid Java program. The JVM only stipulates that the top-level class inside the file have the same name as the file itself (capitalization also). Since you have no class inside the file, the JVM performs no check; hence, no complaints! Regards, Manfred
Thiru Narayanan
Greenhorn
Joined: Apr 30, 2001
Posts: 23
posted
0
Hi, But my question was in what name the empty file is to be stored? I was thinking all along that you have to give a name to save a file. THIRU