• 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

what is up with suns sample test

 
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
question 8
1.import java.awt.*;
2.
3. public class Test extend Frame {
4. public Test() {
5. add( new Label("Hello") );
6. add( new TextField("Hello") );
7. add( new Button("Hello") );
8. pack();
9. show();
10. }
11. public static void main(String args[]) {
12. new Test();
13. }
14.}
now the answers could be
A.The code will not complile.
B.A window will appear containing only a Button.
C.An IllegaArgumentException is thrown at line 6.
D.A window will appear but will not contain the Label, TextField, or Button.
E.A window will appear containing a Label at the top, a TextField below the Label, and a Button below the TextField.
F.A window will appear containing a Label on the left, a TextField to the right of the Label, and a Button to the right of the TextField .

there answer is B however i selected A bescause there is no extend keyword!
then on question 1

1. Given:
1.public class ArrayTest {
2. public static void main (String[] args) {i
3. Object[] ov;
4. String[] sa = { "Green", "Blue", "Red" };
5. ov = sa;
6. System.out.println("Color = " + ov[1];
7. }
8.}
What is the result?
A.fails to compile
B.prints Color=Blue
C.prints Color=Green
D.generates an exception at runtime
i choose A because it can not compile however sun says its B
I really hope the new test does not have errors like this.
 
Ranch Hand
Posts: 101
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Good observation Daniel. Sun should be notified of the errors in the new set of sample questions. There are 3 typos in 10 questions!!
 
Leverager of our synergies
Posts: 10065
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Exam: 310-025 Sun Certified Java programmer
Candidate: Sun Inc.
Result: passes with 80%

 
Ranch Hand
Posts: 3141
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
LOL ... you were generous Mapraputa ... I'd give them 70%
Jane
 
daniel schulken
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
LOL

i thank the maxium that they could get would be 70
 
Mapraputa Is
Leverager of our synergies
Posts: 10065
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Friends, be fair, they answered 8 questions correct. Or I missed something... 80% are good scores, although comparing to many on this site, hmmm, not so great... Sun should probably visit Java ranch more often...
 
reply
    Bookmark Topic Watch Topic
  • New Topic