General
-
193 votes
-
Provide also explanation
After showing correct ans at the end provide why that ans comes,it would refine the user's concepts and he/she will not do mistake later in future
151 votes -
76 votes
-
be able to customise the number of questions
I can see that you can customise the time and passing score before entering a new exam. But changing the number of questions will be a good idea too. Besides, the new SCJP is now 60 questions instead of 72.
62 votes -
More questions/varieties need to be added
I have tried this site 4 times and most of questions are redundant or very similar each other. More varieties are in need. Great site thou
22 votes -
make it possible to compose test from the questions that you have failed to answer
After I have passed the test, watched results, feedback. I would like to make a short test only on questions that I have failed to answer.
That would help me make sure that I have improoved my knowledje, before I run next test.
21 votes -
Add More Question in Each section
Add some amount of more question to each section
And do random selection of question for each test.Also sequence of options of answer should be change in each run so it should take random order.
19 votes -
16 votes
-
Thread Question is wrong!
The following Thread question is wrong:
(following the question -- in question -- I have shown a the class with a brief alteration that show the answer should be "the results can not be predicted")
----------------------------------------------------------
Given the code. What is the result?
public class Cruiser implements Runnable {
public static void main(String[] args) throws InterruptedException {
Thread a = new Thread(new Cruiser());
a.start();
System.out.print("Begin");
a.join();
System.out.print("End");
}
public void run() {
System.out.print("Run");
}
}
A) Compilation fails.
B) An exception is thrown at runtime.
C) "BeginRunEnd" is printed.
D) "BeginEndRun" is printed.
E) "BeginEnd" is printed.
----------------------------------------------------------
//my suggested… more13 votes -
Eliminate Garbage Collector questions
Garbage COllector have been eliminated from SCJP 6 Exam Curriculum.
10 votes -
10 votes
-
Provide a comment (text box) box next to each test on the My Statistics page !
This will allow you to track your test which you have custimised. It will allow you to be able to put any comments you have against the test you have been through. i.e. need work harder on Generics etc...
9 votes -
7 votes
-
send results via email
when someone else is interested in your skills it might be useful to be able to send test results via email
6 votes -
Be able to start a discussion thread around the question asked in a test.
If i need more explanation or views or iam not very clear about the question in a test , i should be able to start a discussion thread on that questions where other users will also participate and have discussion around that question.
6 votes -
view details
When I finished test,and I want to see details,but I can't see some question's details.
It always show previous question's details.example:
I see question#1,question#8's details
then I want to see question#3's details
but when I click question#3's "view details" button
it will show question#8's detailsHow can I solve this problem?
5 votes -
Provide a test review
After completing a test, provide a report - list all the questions, the answer I gave, the correct answer and the reason why. Keep the report to one document for everything in the test so I can save the html or print to pdf etc.
4 votes -
Speed of loading of questions
Are the questions loaded in the starting or with each next click? Loading is really slow. Plz fasten
4 votes -
4 votes
-
Access Modifiers Question is wring..
What is true? (Choose three)
A) A method with the same signature as a private final method in class Z can be implemented in a subclass of Z.
B) A final method in class Z can be abstract if and only if Z is abstract.
C) A protected method in class Z can be overriden by any subclass of Z.
D) A private static method can be called only within other static methods in class Z.
E) A non-static public final method in class Z can be overriden in any subclass of Z.
F) A public static method in class… more4 votes