• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

New Mock Exam - SCJP

 
Ranch Hand
Posts: 202
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi everybody.

I have created a Mock Exam to SCJP in english. Its beta version. You can access on this page: Exam Mock

There is a version in portuguese with different questions.

The version in english there is a "Timer" for each question, where you have to answer each question quickly, like this you can control you time.

let you feedback on my blog, like this i will can improve our Mock Exam.

thanks.
 
Bartender
Posts: 2700
IntelliJ IDE Opera
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You need more time than 20 seconds and one question doesn't have a question
I didn't finish the test because I'm spending 15 sec to read the question and then
I have only 5 sec left to think which is much to short. On the real exam you have 3
minutes a question. But you could spend 30 minutes on one question as long you
stay under the 180 min total.
 
camilo lopes
Ranch Hand
Posts: 202
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
great! suggestion i will update. thanks.
 
Marshal
Posts: 7402
1423
IntelliJ IDE jQuery Eclipse IDE Postgres Database Tomcat Server Chrome Google App Engine
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Good job Camilo
Thanks for giving that for free.
 
Ranch Hand
Posts: 187
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi Camilo,well i am not understanding anything from your page...I am interested in giving mock exam of your site..kindly guide me whether how do i start with the exam....



thanks....
 
Wouter Oet
Bartender
Posts: 2700
IntelliJ IDE Opera
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Just scroll down a bit. There is a link SimSCJP Timer – English
 
camilo lopes
Ranch Hand
Posts: 202
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Devaka Cooray wrote:Good job Camilo
Thanks for giving that for free.



oh thanks. When i was studying for scjp, i created 300 questions. but i did not have time to put all question on this Mock. =/
 
Ranch Hand
Posts: 62
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Camilo,

I gave the exam and found this error.

1. String[] elements = { "for", "tea", "t0o"};
String first = (elements.length>0)?elements[0] null;

What is the result, answer is compilation fails because there is no ":" between elements[0] and null, but your answer says variable first is set to element[0].

2. public static void test(String str){
if (str==null|str.length()==0){
System.out.println("String is empty");
}else {
System.out.println("String not empty");
}
}
test(llull), compilation fails because we have to pass a String

3. ArrayList a = new ArrayList(); containing values {1, 2,..8}
Comparator c = Collections.reverseOrder();
Collections.sort(a, c);
int result = Collections.binarySearch(a,6,c); // Replace "6" by 6.

Please review these questions.
 
camilo lopes
Ranch Hand
Posts: 202
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Sree Potluri wrote:Hi Camilo,

I gave the exam and found this error.

1. String[] elements = { "for", "tea", "t0o"};
String first = (elements.length>0)?elements[0] null;

What is the result, answer is compilation fails because there is no ":" between elements[0] and null, but your answer says variable first is set to element[0].

2. public static void test(String str){
if (str==null|str.length()==0){
System.out.println("String is empty");
}else {
System.out.println("String not empty");
}
}
test(llull), compilation fails because we have to pass a String

3. ArrayList a = new ArrayList(); containing values {1, 2,..8}
Comparator c = Collections.reverseOrder();
Collections.sort(a, c);
int result = Collections.binarySearch(a,6,c); // Replace "6" by 6.

Please review these questions.



Hi Sree, thank you so much, for your feedback. I am going to update those questions. I do not know how that happened.
I did not get to find the question number 3.


do you remember the number of the question?
 
Sree Potluri
Ranch Hand
Posts: 62
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Camilo,

I am not sure of the question number, but the question was what is the result.

Thanks,
Sree
 
camilo lopes
Ranch Hand
Posts: 202
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hmm, i searched in all mock, but i did not get to find. its strange, i will search again.

thanks. have a nice weekend.
reply
    Bookmark Topic Watch Topic
  • New Topic