• 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:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

If I Failed...what is next?

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

I have a question to you. Must I take the essay examen again if I fail? Or must I just resubmit my assignment and that's it.

Can you help me???

Thank you.

Regards

Baris Dere
 
Ranch Hand
Posts: 532
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Don't even consider it..
 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Merhaba Baris,
Here is a snip from sun faq:


What do I do if I fail the assignment?
If you have failed and wish to resubmit for another attempt, you will need to contact your local Sun office to purchase a resubmission voucher for your exam. You will only need to resubmit your assignment. We do not require you to retake your essay exam.



You can read it also here :



Sun Certification Faq

Regards

Guvenc Gulce
 
Baris Dere
Ranch Hand
Posts: 31
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Merhaba guvens

Ok thanks...

I got taken the essay examen yesterday and I don't know which score I get.

I did a BIGGG mistake in my code.. So I think I will fail

I forgot to make the Data class method modifiers 'synchronized' and I give just ONE instance to the clients... very stupid...

Succes guys

Regards

Baris Dere
 
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Merhaba all

Baris; there shouldn't be any need to make Data methods (including lock/unlock) synchronised. Actually, it would be less efficient due to unnecessary blocking of methods. Locking mechanism itself is there to provide the synchronisation.

If the provided interface for your assignment specified your lock/unlock methods using cookies, using Data instances wouldn't be necessary either. They provide all the client identification you need. In my case I had to use instances to identify clients because my interface didn't use cookies.

I'm taking my essay exam tomorrow as well. All the best luck...

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

Originally posted by Baris Dere:
I did a BIGGG mistake in my code.. So I think I will fail

I forgot to make the Data class method modifiers 'synchronized' and I give just ONE instance to the clients... very stupid...

Succes guys



Baris,
I have locking implemented so that no 2 clients can access the same record at the same time through lock/unlock methods.At the database access layer, I have a single Raf object that is being shared among the clients with synchronized access.I do not have the Data class methods syncronized in my design and I do not see any reason to do so also.(In my design it also does not matter whether I have a single instance of Data class or multiple instances of Data class for my clients in my design, though there may be a few performance tears)
 
Baris Dere
Ranch Hand
Posts: 31
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

When a client requests a DataInterface then my server will return DataInterfcae class that includes a reference to my Data class. This Data class instance exists just one time. So when 2 clients working on it, if client 1 set the pointer of my RandomAccessFile to some where else and the client 2 somewhere else. I mean this:

client 1 (read)
dbFile.seek(100);

and at the same time

client 2 (read)
dbFile.seek(300);

I don't know more...

I am getting crazy

We will see when I get my score.

Thanks for all

Regards.

Baris Dere
 
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Where will they post my result? Is it here:

http://www.certmanager.net/sun_assignment/

 
author and jackaroo
Posts: 12200
280
Mac IntelliJ IDE Firefox Browser Oracle C++ Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Sanjay,

From the JavaRanch SCJD FAQ:


What site do I use to download / upload my assignment and to see what score I got?

Thanks to Ravi Appala for passing on Sun's response to an email regarding which sites to use:



Regards, Andrew
 
amchi gelo
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Andrew,

The URL https://i7lp.integral7.com/durango/do/login?channel=sun&basechannel=prometric does not work.

Do you think it might be posted under https://www.register.prometric.com/CandidateHistory.asp
I logged in and it says "Tested" under SCJD. Any idea what that means?

Thanks

Sanjay

Originally posted by Andrew Monkhouse:
Hi Sanjay,

From the JavaRanch SCJD FAQ:


<hr></blockquote>

Regards, Andrew

 
Vishwa Kumba
Ranch Hand
Posts: 1066
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Baris Dere:


I don't know more...

I am getting crazy

We will see when I get my score.

Thanks for all

Regards.

Baris Dere



Baris,
Have courage. It sounds like a small 1-word mistake. If I were the examiner,I wouldn't mind as long as the record locking code is fine, but do keep us updated.

Cheers,
 
Baris Dere
Ranch Hand
Posts: 31
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
:-)))

I Hope you are right.

So still waiting for the results...

:roll:

Baris
 
Andrew Monkhouse
author and jackaroo
Posts: 12200
280
Mac IntelliJ IDE Firefox Browser Oracle C++ Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Sanjay,

The URL https://i7lp.integral7.com/durango/do/login?channel=sun&basechannel=prometric does not work.



Just went back via Sun's links, and it appears the correct URL is now: https://i7lp.integral7.com/durango/do/login?ownername=sun&channel=sun&basechannel=prometric.

Updating the FAQ now....

Note that this is the link that gives you access to a "passed/failed" status only, as well as giving you the oportunity to "publish" your results for potential employers to view.


Do you think it might be posted under https://www.register.prometric.com/CandidateHistory.asp
I logged in and it says "Tested" under SCJD. Any idea what that means?



This gives you Prometric's view of your certification history. They are unaware of whether you pass or fail. When I log in, I also only get a "Tested" result (and I passed a year ago).

You need to use the Assignment Watcher http://www.certmanager.net/sun_assignment/ to see what your score is.

Regards, Andrew
 
Ranch Hand
Posts: 90
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi guys,

I took my exam on the 26th April. A few days the result appeared on the assignment watcher website.

However, as of today (2 June), there is still no update to the ip7 site.

More curiously, for a while, on the ip7 site it clearly showed that the result from the exam was pending. Now, even this has gone (but it still says in the other site passed ! )

Any ideas? I've emailes sun and they said log on to the assignment watcher site to see the result - no mention of the ip7 site.

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

i7 site (history page) and CertManager as well will not reflect anything until you get grade P (passed) or F (failed) (F will appear on CertManager only). There is nothing about SCJD in my history (yet).

When you take essay exam, on Prometric site you see 'Tested' record - they do not mark you exam.

Now, the only site you should look at is CertManager. The result will appear there.
 
amchi gelo
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I took the written test on Apr 21 and just checked all three sites, nothing yet.
 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Let me get this straight. From Sun certification FAQ:
---------------
What do I do if I fail the assignment?
If you have failed and wish to resubmit for another attempt, you will need to contact your local Sun office to purchase a resubmission voucher for your exam. You will only need to resubmit your assignment. We do not require you to retake your essay exam.
------------------
Does this mean that if my assigment is accepted and i fail the essay exam, all i have to do is resubmit my assignment? If the assignment is accepted I can skip the essay exam on the second go-around?
 
Denis Spirin
Ranch Hand
Posts: 72
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Does this mean that if my assigment is accepted and i fail the essay exam, all i have to do is resubmit my assignment? If the assignment is accepted I can skip the essay exam on the second go-around?



You cannot fail essay exam, you write it only once. If you fail you need to correct your code and resubmit it.
 
amchi gelo
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Sanjay Joshi:
I took the written test on Apr 21 and just checked all three sites, nothing yet.





 
reply
    Bookmark Topic Watch Topic
  • New Topic