This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes Ambigous questions Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "Ambigous questions" Watch "Ambigous questions" New topic
Author

Ambigous questions

yusuf Kaplan
Ranch Hand

Joined: Mar 11, 2011
Posts: 56
Hi all,

there is an ExamLab question on the diagnostic exam regarding javac look like this:

javac -d rabbit board/A.java

One of the correct answers is "The output will be stored in the rabbit directoy".
But I choose "The output will be stored in the rabbit board directoy"

After some tests on the console I figured out that A.java has no package. If the full qualified class name were like board/A.java then my answer would be correct. I assumed that board is the package name but it was not. A.java has no package at all. Thus the class file is stored in rabbit directory.

How to deal with such missunderstandings? The question doesnt provide information whether A.java has a package 'board' or not. So I feel that my answer might be correct as well.
Stephan van Hulst
Bartender

Joined: Sep 20, 2010
Posts: 3047
    
    1

The -d switch specifies the output directory. So here it says that the output directory will be rabbit. If A was in the package board, a sub-directory would be created inside the rabbit folder, but that doesn't change the fact that rabbit is the output directory of the javac command.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Ambigous questions
 
Similar Threads
javac in ant, please helppp
K&B - Practice Exams book - Full Exam II - Question 21
question and sample problem about classpath
New SCJP 5.0 Free Exam Simulator
Compiling a file that has reference to a class contained in another UNCOMPILED file.