Java Certifications

All about Java certifications.

Are you Sun certified?

If you are Sun Java Certified add your name to the page with your certificate or send an email to info@egjug.org with the following:-

  • Your Name
  • Your EGJUG ID
  • Your Certificate Name
  • Your Certificate Date
  • Your Certificate Reference(Sun Card or Certificate or web page)
  • Update your profile in Egjug(Real Name, Company,About me, Years of experience, Country..etc)

Sun Certified List:

 Name  Certificate  Date (dd/ mm/ yyyy)
Ismail Issa SCJP 1.5 24/08/2006
Ahmed S. Mostafa SCDJWS 1.4 7/5/2007
Ahmed S. Mostafa SCBCD 1.3 10/6/2006

Ahmed Hashim

SCWCD 1.4 7/9/2006
Ahmed Mahmoud Sayed SCJP 5 3/7/2006
Aly Saleh SCWCD 1.4
Al Sayyad Ahmed SCJP1.4 7/5/2006
 Mahmoud Ezzat Ouda SCJP  
Ahmed Essam El Din Abu Bakr SCJP
Ibrahim Medhat Raghib SCJP
Khaled Moustafa El Kady SCJP
Ossama Mohamed Rashed SCJP
Amr Hussein SCJP 5.0 09/03/2006
Ahmed Hashim SCJP 1.4 07/03/2006
Amr Korany SCJP 5.0
Ahmed S. Mostafa SCWCD 1.4 04/02/2006
Aly Saleh SCJP 5.0 14/1/2006
Mohamed Mahmoud Abdelaziz SCJP 1.4 10/10/2005
Marwa M. Mahmoud SCJP 1.4 13/09/2005
Ahmed S. Mostafa SCJP 1.4 27/08/2005
Ahmed Mossad Abou Raya SCJP 1.4 25/7/2005
Ahmed Okasha SCJP 1.4 12/03/2005
Mohamed Osman Elgamal SCJP 1.4 14/1/2005
Abd Elrahman Mohamed SCJP 1.4 13/1/2005
Ahmed A. Hamza SCJP 1.4 3/11/2004

How can I take Sun Certifications?

#Exam preparation #Vouchers: You need to buy the exam voucher first before sitting for the exam. Exam vouchers can be bought from two places: ##[New Horizon Cairo Branch|http://www.newhorizons.com/content/centerSearchResults.aspx?SiteId=185&zipcode=] ##[Linux Plus|http://linux-plus.com/] #Prometric: To take the exam, you have to find a prometric training center. [Yat Educational Center| http://www.yateducation.com/contact.aspx] is a prometric one. You can find the all prometric centers [there|http://securereg3.prometric.com/]

SCJP

__Sun Certified Java Professional__%%% In this page you will resources for the SCJP certificate. Now you can take the exam SCJP 1.4 and SCJP 5 (cx-310-055). !!Tiger SCJP Resources *[Sun Certified Java Programmer(SCJP 5.0)| http://www.javabeat.net/javabeat/scjp5/index.php] *[SCJP Tutorial| http://www.javabeat.net/javabeat/downloads/scjp/books/SCJP%205.0%20Tutorials%20by%20Boot.zip] *[SCJP Tiger Study Guide|http://www.java.boot.by/scjp-tiger/] *[Using Static Imports for Constants and Methods| http://java.sun.com/developer/JDCTechTips/2004/tt1005.html] *[Java Language Specification |http://java.sun.com/docs/books/jls/] *[11 medium-hard mock exam question|http://www.wickedlysmart.com/SCJPStudyGuide/Java_5_SCJPquestions.html] *[Cracking the New Sun Certified Programmer for Java 2 Platform 1.5 Exam by Khalid Mughal|http://www3.java.no/JavaZone/2005/presentasjoner/KhalidMughal/Khalid_Mughal-guide_to_java_cert_javazone2005.pdf] *[scjp questions & answers by roseanne zhang|http://bobcat.webappcabaret.net/javachina/faq/01.htm]

SCJP Notes

1. The __try__ statement may not have a __catch__ block! Really? Yes, becayse it can have only __finally__ block. try this code, it is working fine": try{ int x = 10/0; } finally{ System.out.println("It will compile fine"); } 2. An empty __.java__ source code file would compile successfully. It just won't produce a __.class__ file.

SCJP Questions Discussion

If you have any question in SCJP and you want to discuss to know the correct answer post it here. I found a question in Testking which i think the provided answer is wrong. Here is the questions: * Question 1 package test1; public class Test1 { static int x = 42; } package test2; public class Test2 extends test1.Test1 { public static void main(String[] args) { System.out.println("x =" + x); } } What is the result?%%% A. x = 0%%% B. x = 42%%% C. Compilation fails because of an error in line 2 of class Test2.%%% D. Compilation fails because of an error in line 3 of class Test1.%%% E. Compilation fails because of an error in line 4 of class Test2.%%% __Answer: C__ Do you think this answer is true? In my opinion this answer is not true. The correct answer is E. The test2 Class wont be able to access the member variable x in the parent class because the x access modifier is default "which is packege" so you can't access it from outside the packe even if though the subclass. Changing x to private will solve the problem. * Question 2 Another wrong answer in the TestKing thing. public class Test{ public static String output = ""; public static void foo(int i) { try { if(i == 1) { throw new Exception(); } output += "1"; } catch (Exception e) { output += "2"; } finally{ output +="3"; } output += "4"; } public static void main(String[] args) { foo(0); foo(1); System.out.println(output); } } What is the value of the variable output at line 23 "which is foo(1) call" Answer: 13423 This answer is wrong, the correct answer is 134234. May be it is an error in the printing :) *Question 3 class X { public static void main(String[] args) { try { badMethod(); System.out.println("a"); } catch (Exception e) { System.out.println("b"); } finally { System.out.println("c"); } System.out.println("d"); } public static void badMethod() { throw new Error(); } } What is the result: A. ABCD B. Compilation fails C. C is printed before exiting with an error message D. BC is printed before exiting with an error message E. BCD is printed before exiting with an error message The Answer in TestKing is B which is wrong The correct answer is C