Syllabus/Topics for Sun Certified Instructor for Java Programming Language

Hi,
What is the Syllabus/Topics for Sun Certified Instructor for Java Programming Language ?
At the following link
http://www.sun.com/training/catalog/instructor/java.html
detailed syllabus is not there.
I am unable to find the details in Sun site even after search through google.
Please help in this regard.
Thank you for your kind consideration.

Sir,
thank you for your response.
technic  wrote:
I'm not sure what you mean by Syllabus/Topics?For SCJA/SCJP/SCWCD/SCBCD/SCDJWS/SCMAD/SCEA
I am able to find the detailed syllabus for the exam by clicking on the respective certification link at the following link
http://www.sun.com/training/certification/java/index.xml
for example: for SCJP,
http://www.sun.com/training/certification/java/scjp.xml
http://www.sun.com/training/catalog/courses/CX-310-065.xml
these links are providing exam objectives, number of questions, exam duration , fee details etc.
But for
Sun Certified Instructor for Java Programming Language Course (SL-275)
I am unable to find such details exam objectives (syllabus), no. of questions, exam duration, etc.,
even, the following link
http://www.sun.com/training/certification/objectives/index.xml
is providing details of all other certifications except
Sun Certified Instructor for Java Programming Language Course (SL-275)
thank you for your kind consideration.

Similar Messages

  • I am planing for Sun Certified Developer for Java Web Services (CX-310-220)

    Hi,
    I am planing for Sun Certified Developer for Java Web Services (CX-310-220) certification. Can anyone please provide me the resources for preparation?
    Can anyone suggest me which books/author/publications best helps me to get good results in exam? Any books/author/publications available over internet to download and prepare?
    regards
    gaveesha

    yes, that's the only decent book covering most of the exam curiculum (but NOT all of it, check the exam specs versus the book content to know what you are missing).
    I'm working on the same material, and boy is it a lot...
    Dry, boring stuff most of it.

  • Help on Sun Certified Developer for Java Web Services (CX-310-220) exam

    Hi,
    I am planing for Sun Certified Developer for Java Web Services (CX-310-220) certification. Can anyone provide me the links for resouces? can anyone provide me books/publications/author best preparation material to score good marks in exam? can anyone provide me the download resources available over internet?
    thanks in advance..!!!
    regards
    gaveesha

    yes, that's the only decent book covering most of the exam curiculum (but NOT all of it, check the exam specs versus the book content to know what you are missing).
    I'm working on the same material, and boy is it a lot...
    Dry, boring stuff most of it.

  • Sun Certified Developer for Java Web Services (CX-310-220)

    Hello All,
    I'm planning to study for Sun Certified Developer for Java Web Services (CX-310-220). I really appreciate any help in suggesting the books and the material requiered for the above certification.
    Thanks,
    Greeshma...

    yes, that's the only decent book covering most of the exam curiculum (but NOT all of it, check the exam specs versus the book content to know what you are missing).
    I'm working on the same material, and boy is it a lot...
    Dry, boring stuff most of it.

  • Market Demand for Adobe Certified Instructors

    Hi everyone,
    Sorry if this message doesn't belong in this forum. For the
    life of me I can't find one that is more appropriate for my topic.
    I find the Adobe forums very difficult to use with a highly
    inconsistent user experience. Disappointing. Anyway, on with my
    questions...
    What is the market demand like for Adobe Certified
    Instructors?
    Is it really worth going for ACI credentials? Is there a
    great need for certified instructors out there?
    If I put ACI on my resume will it really help me land
    teaching gigs? (All things being equal, assuming I am actually a
    good instructor, of course.) Or are the ACE exams little more than
    a money making business for the testing centers?
    I'm a Web user interface design professional with a B.A. and
    10 years of experience in the field. I'm starting to do some career
    growth and development in the area of technical training. I hope to
    develop a nice side career as an instructor (either in classroom or
    online e-learning).
    I'm hoping to determine where the market demand is and become
    qualified to teach in those areas. Adobe software skills seems like
    it would be a good area to teach, but I'd like to hear from people
    actually out "in the field". Is there a great need for ACI's, or
    are they a "dime a dozen"?
    Are instructors for some software titles (i.e. Dreamweaver)
    more in demand than others?
    Thanks!
    - Ben

    I am not sure if you can check them out but these guys seems to know a lot about Adobe products:
    <http://www.bigwavemediatraining.ie/about-press3.php>
    Please note I am recomending anything here so please do your own research and if necessary visit them onsite to see if they are genuine trainers.
    Good luck.

  • Java programming language uses call by reference for objects?

    Is Java programming language uses call by reference for objects?

    Yes. You make calls to an object via itsreference.
    No.Yes, you're referring to passing a reference into a
    method in which case the value of the
    reference is passed.I believe the OP is using the term "call by reference" to mean "pass by reference." The two are interchangable, AFAIK. So, while "making calls to an object via its reference" is correct, I don't believe it's germane to the question.

  • Java Programming Language Answers

    Hi,
    My business is to teach Java to legacy engineers. I'd like to use a book "Java Programming Language" as one of materials. This book contains number of excellent excercises,but without answers. I found a Web page of answers which is http://java.sun.com/docs/books/javaprog/firstedition/answers/, but this page covers Chapter 1 to 14 and appendix. This book has Chapter 1 through 20. I would gratefully appreciate if someone tell me where answers for Chatpter 15 to Chapterr20.
    Thanks and Regards,
    Shintaro Sekine
    [email protected]

    It should be no problem if you give them your own answers.
    When you couldn't give right answers for a few of them, Mr. jverd et al would
    help you on this forum.

  • Java programming language main method question?

    Hello everyone I am quite new to the Java programming language and I have a question here concerning my main method. As you can see I am calling 4 others methods with my main method. What does the null mean after I call the method? I really don't understand is significance, what else could go there besides null?
    public static void main(String[] args)
              int cansPerPack = 6;
              System.out.println(cansPerPack);
              int cansPerCrate = 4* cansPerPack;
              System.out.println(cansPerCrate);
              have_fun(null);
              user_input(null);
              more_java(null);
              string_work(null);
         }Edited by: phantomswordsmen on Jul 25, 2010 4:29 PM

    phantomswordsmen wrote:
    ..As you can see I am calling 4 others methods with my main method. 'Your' main method? Your questions indicate that you did not write the code, who did?
    ..What does the null mean after I call the method?.. 'null' is being passed as an argument to the method, so there is no 'after the method' about it.
    ..I really don't understand is significance, what else could go there besides null? That would depend on the method signatures that are not shown in the code snippet posted. This is one of many reasons that I recommend people to post an SSCCE *(<- link).*
    BTW - method names like have_fun() do not follow the common nomenclature, and are not good code for a newbie to study. The code should be put to the pointy end of your sword.

  • Java programming language

    What are the major differences between Java programming language and HTML or XML and why is it better?

    Thanks for your response but I am dumb when it comes
    to this stuff. I am taking an information systems
    class and the professor is asking us to list three
    different items that makes Java different from other
    programming languages used and I thought posing that
    question to this form would provide me the
    information I was looking for. The text does not
    state the answer he is looking for. Any help would be
    great.
    ThanksI'd assume your professor is asking you to do something called "research" where you go read stuff about it/them. What you're doing is called "just ask someone to tell some answers to turn in as my own", or in other words, "cheating".

  • Java Programming Language questions...???

    Hi everybody....
    Can I post here my questions about Java Programming Language....or only to to the relevant Sun's forum....http://forum.java.sun.com/index.jspa???
    My greetings,
    Simon

    Simon,
    sure, the worst thing that could happen is that people point you to the SUN forum. Usually this forum answers general Java questions.
    Frank

  • How to create an Oracle DATABASE through Java Programming Language.. ?

    How to create an Oracle DATABASE through Java Programming Language.. ?

    Oracle database administrators tend to be control freaks, especially in financial institutions where security is paramount.
    In general, they will supply you with a database, but require you to supply all the DDL scripts to create tables, indexes, views etc.
    So a certain amount of manual installation will always be required.
    Typically you would supply the SQL scripts, and a detailled installation document too.
    regards,
    Owen

  • The Java Programming Language (Javac.exe, java.exe) source code.

    Where can I get the java programming language source code ?
    Ernest Keshi
    [email protected]

    Check the 'Downloads' dropdown menu here at the top navigation bar.

  • WLS JMS supports the clients developed by using non-java program languages,such as,c++,VB...

              WLS JMS supports the clients developed by using non-java program languages,such
              as,c++,VB?
              

    The short answer is yes. This is a frequently asked question. I
              suggest searching this newsgroup in google using terms like "C++",
              "IIOP", ".NET", "JCOM".
              Note also that WL 8.1 (now out in beta) contains a thin java client
              (something like 0 or 300K without JMS, 700k with. The 0K client comes
              from leveraging WL's IIOP support.)
              Tom, BEA
              jerry8006 wrote:
              > WLS JMS supports the clients developed by using non-java program languages,such
              > as,c++,VB?
              

  • What are the differences between Sun Certified Programmer for Java 2 Platfo

    Hi
    What are the differences between Sun Certified Web Component Developer for the Java 2 Platform, Enterprise Edition 1.4 (CX-310-081) and 5 (CX-310-083) exams?
    What has been removed from the new web component developer 5 exam?
    What has been added to the new web component developer 5 exam?
    Thanks in Advance

    what (apart from laziness) is preventing you from looking up the information for yourself?

  • I want to prepare for sun certified java programmer level 1 scjp so give me

    hi,
    i want to prepare for scjp exam
    please provide me material for the exam
    and accordance with new ly revised syllabus
    byew

    hi,
    i want to prepare for scjp exam
    please provide me material for the exam
    and accordance with new ly revised syllabus
    byewYou will fail if you don't know how to google and find information. This question is asked very often, and a simple google search will give you lots of information.
    Kaj

Maybe you are looking for