使用者貢獻
(最新 | 最舊) 檢視 (較新 50 筆 | 較舊 50 筆) (20 | 50 | 100 | 250 | 500)
- 2013年3月30日 (六) 07:43 (差異 | 歷史) . . (+1,035) . . 新 SCJP 1.6版考題 043 (新頁面: 1. class Plant{ 2. private String name; 3. public Plant(String name){this.name = name;} 4. public String getName(){return name;} 5. } 6. public class Tree extends Plant{ 7...) (目前)
- 2013年3月30日 (六) 07:42 (差異 | 歷史) . . (+1,382) . . 新 SCJP 1.6版考題 044 (新頁面: 1. class Employee{ 2. String name; double baseSalary; 3. public Employee(String name, double baseSalary){ 4. this.name = name; 5. this.baseSalary = baseSalary; 6. ...) (目前)
- 2013年3月30日 (六) 07:40 (差異 | 歷史) . . (+958) . . 新 SCJP 1.6版考題 045 (新頁面: Gadget has-a Sprocket and Gadget has-a Spring and Gadget is-a Widget and Widget has-a Sprocket Which two code fragments represent these relationships? (Choose two) A. class W...) (目前)
- 2013年3月30日 (六) 07:34 (差異 | 歷史) . . (+1,231) . . 新 SCJP 1.6版考題 046 (新頁面: 10. public class Pizza{ 11. ArrayList toppings; 12. 13. public final void addTopping(String topping){ 14. toppings.add(topping); 15. } 16. 17. public void removeTop...) (目前)
- 2013年3月30日 (六) 07:32 (差異 | 歷史) . . (+370) . . 新 SCJP 1.6版考題 047 (新頁面: 檔案:SCJP47.png <div class="toccolours mw-collapsible mw-collapsed"> <span style="font-size:medium;">解答</span> ---- <div class="mw-collapsible-content"> <span style="font-s...) (目前)
- 2013年3月30日 (六) 07:31 (差異 | 歷史) . . (+8) . . 新 檔案:SCJP47-1.png (MsUpload) (目前)
- 2013年3月30日 (六) 07:31 (差異 | 歷史) . . (+8) . . 新 檔案:SCJP47.png (MsUpload) (目前)
- 2013年3月30日 (六) 07:29 (差異 | 歷史) . . (+915) . . 新 SCJP 1.6版考題 048 (新頁面: 1. public class Venus{ 2. public static void main(String[] args){ 3. int[] x = {1, 2, 3}; 4. int y[] = {4, 5, 6}; 5. new Venus().go(x, y); 6. } 7. void go(int[...) (目前)
- 2013年3月30日 (六) 07:27 (差異 | 歷史) . . (+512) . . 新 SCJP 1.6版考題 049 (新頁面: Place code framgmets into position so the output is: The quantity is 420 <DD>檔案:SCJP49 2.PNG <div class="toccolours mw-collapsible mw-collapsed"> <span style="font-size:m...) (目前)
- 2013年3月30日 (六) 07:24 (差異 | 歷史) . . (+1,407) . . 新 SCJP 1.6版考題 050 (新頁面: 1. public abstract class Shape{ 2. private int x; 3. private int y; 4. public abstract void draw(); 5. public void setAnchor(int x, int y){ 6. this.x = x; 7. thi...) (目前)
- 2013年3月30日 (六) 07:21 (差異 | 歷史) . . (+1,602) . . 新 SCJP 1.6版考題 051 (新頁面: 1. public interface A{ 2. public void doSomething(String thing); 3. } 1. public class AImpl implements A{ 2. public void doSomething(String msg){} 3. } 1. public class B{ 2...) (目前)
- 2013年3月30日 (六) 07:19 (差異 | 歷史) . . (+420) . . 新 SCJP 1.6版考題 052 (新頁面: <DD>檔案:SCJP52Q 2.png <div class="toccolours mw-collapsible mw-collapsed"> <span style="font-size:medium;">解答</span> ---- <div class="mw-collapsible-content"> <span style="...) (目前)
- 2013年3月30日 (六) 07:17 (差異 | 歷史) . . (+1,238) . . 新 SCJP 1.6版考題 053 (新頁面: Insert six modifiers into the code such that it meets all of these requirements: 1. It must be possible to create instances of Alpha and Beta from outside the packages in which they ...) (目前)
- 2013年3月30日 (六) 07:15 (差異 | 歷史) . . (+8) . . 新 檔案:SCJP53-2.png (MsUpload) (目前)
- 2013年3月30日 (六) 07:15 (差異 | 歷史) . . (+8) . . 新 檔案:SCJP53-1.png (MsUpload) (目前)
- 2013年3月30日 (六) 07:12 (差異 | 歷史) . . (+716) . . 新 SCJP 1.6版考題 054 (新頁面: 1. package test; 2. 3. class Target{ 4. public String name = "hello"; 5. } What can directly access and change the value of the variable name? A. any class B. onl...) (目前)
- 2013年3月30日 (六) 07:12 (差異 | 歷史) . . (+922) . . 新 SCJP 1.6版考題 055 (新頁面: 11. abstract class Vehicle{public int speed(){return 0;}} 12. class Car extends Vehicle{public int speed(){return 60;}} 13. class RaceCar extends Car{public int speed(){return 150;}...) (目前)
- 2013年3月30日 (六) 07:11 (差異 | 歷史) . . (+994) . . 新 SCJP 1.6版考題 057 (新頁面: 21. class Money{ 22. private String country = "Canada"; 23. public String getC(){return country;} 24. } 25. class Yen extends Money{ 26. public String getC(){return super...) (目前)
- 2013年3月30日 (六) 07:10 (差異 | 歷史) . . (+1,059) . . 新 SCJP 1.6版考題 056 (新頁面: 5. class Building{} 6. public class Barn extends Building{ 7. public static void main(String[] args){ 8. Building build1 = new Building(); 9. Barn barn1 = new Barn(); 1...) (目前)
- 2013年3月30日 (六) 07:05 (差異 | 歷史) . . (+822) . . 新 SCJP 1.6版考題 058 (新頁面: 10. interface Foo{} 11. class Alpha implements Foo{} 12. class Beta extends Alpha{} 13. class Delta extends Beta{ 14. public static void main(String[] args){ 15. Beta x = n...) (目前)
- 2013年3月30日 (六) 07:04 (差異 | 歷史) . . (+902) . . 新 SCJP 1.6版考題 059 (新頁面: Given the following directory structure: bigProject |--source | |--Utils.java | |--classes | And the following command line invocation: javac –d classes source/Utils.java ...) (目前)
- 2013年3月30日 (六) 07:02 (差異 | 歷史) . . (+1,308) . . 新 SCJP 1.6版考題 060 (新頁面: 1. package com.company.application; 2. 3. public class MainClass{ 4. public static void main(String[] args){} 5. } And MainClass exists in the /apps/com/company/applicatio...) (目前)
- 2013年3月30日 (六) 07:01 (差異 | 歷史) . . (+1,686) . . 新 SCJP 1.6版考題 061 (新頁面: Given two files, GrizzlyBear.java and Salmon.java: 1. package animals.mammals; 2. 3. public class GrizzlyBear extends Bear{ 4. void hunt() { 5. Salmon s = findSalmon(); 6....) (目前)
- 2013年3月30日 (六) 07:00 (差異 | 歷史) . . (+1,059) . . 新 SCJP 1.6版考題 062 (新頁面: 31. class Foo{ 32. public int a = 3; 33. public void addFive(){ a += 5; System.out.print("f "); } 34. } 35. class Bar extends Foo{ 36. public int a = 8; 37. public void ...) (目前)
- 2013年3月30日 (六) 06:58 (差異 | 歷史) . . (+809) . . 新 SCJP 1.6版考題 063 (新頁面: 11. class ClassA{} 12. class ClassB extends ClassA{} 13. class ClassC extends ClassA{} and: 21. ClassA p0 = new ClassA(); 22. ClassB p1 = new ClassB(); 23. ClassC p2 = new Class...) (目前)
- 2013年3月30日 (六) 06:55 (差異 | 歷史) . . (+1,605) . . 新 SCJP 1.6版考題 064 (新頁面: class A { String name = "A"; String getName() { return name; } String greeting(){ return "class A"; } } class B extends A { String name = "B"; String ...) (目前)
- 2013年3月30日 (六) 06:55 (差異 | 歷史) . . (+1,158) . . 新 SCJP 1.6版考題 065 (新頁面: Replace two of the Modifiers that appear in the Single class to make the code compile. Note: Three modifiers will not be used and four modifiers in the code will remain unchanged. [...) (目前)
- 2013年3月30日 (六) 06:55 (差異 | 歷史) . . (+1,114) . . 新 SCJP 1.6版考題 066 (新頁面: 5. class Thingy{ Meter m = new Meter(); } 6. class Component {void go() { System.out.print("c");}} 7. class Meter extends Component {void go() { System.out.print("m"); }} 8. 9. cl...) (目前)
- 2013年3月30日 (六) 06:55 (差異 | 歷史) . . (+959) . . 新 SCJP 1.6版考題 067 (新頁面: 10. abstract public class Employee { 11. protected abstract double getSalesAmount(); 12. public double getCommision() { 13. return getSalesAmount() * 0.15; 14. } 15. } ...) (目前)
- 2013年3月30日 (六) 06:52 (差異 | 歷史) . . (0) . . 新 檔案:SCJP64-2.png (目前)
- 2013年3月30日 (六) 06:50 (差異 | 歷史) . . (0) . . 新 檔案:SCJP65-2.png (目前)
- 2013年3月30日 (六) 06:49 (差異 | 歷史) . . (0) . . 新 檔案:SCJP65-1.png (目前)
- 2013年3月30日 (六) 06:36 (差異 | 歷史) . . (+3) . . SCJP 1.6版考題 074 (目前)
- 2013年3月30日 (六) 06:36 (差異 | 歷史) . . (+1,238) . . 新 SCJP 1.6版考題 075 (新頁面: 11. public interface A{ public void m1(); } 13. class B implements A{ } 14. class C implements A{ public void m1(){}} 15. class D implements A{ public void m1(int x){}} 16. abstra...) (目前)
- 2013年3月30日 (六) 06:36 (差異 | 歷史) . . (+1,570) . . 新 SCJP 1.6版考題 074 (新頁面: Which two classes correctly implement both the java.lang.Runnable and the java.lang.Cloneable interfaces? (Choose two.) A. public class Session implements Runnable, clon...)
- 2013年3月30日 (六) 06:32 (差異 | 歷史) . . (+1,207) . . 新 SCJP 1.6版考題 071 (新頁面: 1. interface A{public void aMethod();} 2. interface B { public void bMethod(); } 3. interface C extends A, B { public void cMethod(); } 4. class D implements B { 5. public void ...) (目前)
- 2013年3月30日 (六) 06:30 (差異 | 歷史) . . (+670) . . 新 SCJP 1.6版考題 068 (新頁面: Given the following six method names: addListener addMouseListener setMouseListener deleteMouseListener removeMouseListener registerMouseListener How many of these method ...) (目前)
- 2013年3月30日 (六) 06:29 (差異 | 歷史) . . (+741) . . 新 SCJP 1.6版考題 069 (新頁面: 11. public interface Status { 12. →insert code here: int MY_VALUE = 10; 13. } Which three are valid on line 12? (Choose three.) A. final B. static C. native ...) (目前)
- 2013年3月30日 (六) 06:28 (差異 | 歷史) . . (+737) . . 新 SCJP 1.6版考題 070 (新頁面: <DD>檔案:SCJP70-1.png Given the fully-qualified class names: com.foo.bar.Dog com.foo.bar.blatz.Book com.bar.Car com.bar.blatz.Sun Which graph represents the correct d...) (目前)
- 2013年3月30日 (六) 06:27 (差異 | 歷史) . . (0) . . 新 檔案:SCJP70-1.png (目前)
- 2013年3月30日 (六) 06:24 (差異 | 歷史) . . (+967) . . 新 SCJP 1.6版考題 072 (新頁面: 1. package geometry; 2. public class Hypotenuse { 3. public InnerTriangle it = new InnerTriangle(); 4. class InnerTriangle { 5. public int base; 6. public int height;...)
- 2013年3月30日 (六) 06:23 (差異 | 歷史) . . (+1,435) . . 新 SCJP 1.6版考題 073 (新頁面: 10. interface Data { public void load(); } 11. abstract class Info { public abstract void load(); } Which class correctly uses the Data interface and Info class? A. public ...) (目前)
- 2013年3月30日 (六) 06:17 (差異 | 歷史) . . (+756) . . 新 SCJP 1.6版考題 076 (新頁面: 1. class TestA{ 2. public void start(){System.out.println("TestA");} 3. } 4. public class TestB extends TestA{ 5. public void start(){System.out.println("TestB");} 6. publi...) (目前)
- 2013年3月30日 (六) 06:16 (差異 | 歷史) . . (+1,208) . . 新 SCJP 1.6版考題 077 (新頁面: 11. public static void main(String[] args) { 12. Object obj = new int{1, 2, 3}; 13. int[] someArray = (int[])obj; 14. for (int i: someArray) System.out.print(i + " "); 15. }...) (目前)
- 2013年3月30日 (六) 06:15 (差異 | 歷史) . . (+1,760) . . 新 SCJP 1.6版考題 078 (新頁面: A developer is creating a class Book, that needs to access class Paper. The Paper class is deployed in a JAR named myLib.jar. Which three, taken independently, will allow the de...) (目前)
- 2013年3月30日 (六) 06:13 (差異 | 歷史) . . (+951) . . 新 SCJP 1.6版考題 079 (新頁面: Given classes defined in two different files: 1. package packageA; 2. public class Message{ 3. String getText(){return "text";} 4. } And: 1. package packageB; 2. public class...) (目前)
- 2013年3月30日 (六) 06:12 (差異 | 歷史) . . (+1,254) . . 新 SCJP 1.6版考題 080 (新頁面: 3. interface Fish{} 4. class Perch implements Fish{} 5. class Walleye extends Perch{} 6. class Bluegill{} 7. public class Fisherman { 8. public static void main(String[] args) ...) (目前)
- 2013年3月30日 (六) 06:10 (差異 | 歷史) . . (+1,317) . . 新 SCJP 1.6版考題 081 (新頁面: 1. interface DoStuff2{ 2. float getRange(int low, int high);} 3. 4. interface DoMore { 5. float getAvg(int a, int b, int c);} 6. 7. abstract class DoAbstract implements DoSt...) (目前)
- 2013年3月30日 (六) 06:09 (差異 | 歷史) . . (+856) . . 新 SCJP 1.6版考題 082 (新頁面: 11. public interface A111{ 12. String s = "yo"; 13. public void method1(); 14. } 17. interface B{} 20. interface C extends A111, B{ 21. ublic void method1(); 22. public...) (目前)
- 2013年3月30日 (六) 06:08 (差異 | 歷史) . . (+1,336) . . 新 SCJP 1.6版考題 083 (新頁面: 10. interface Foo{ 11. int bar(); 12. } 13. 14. public class Beta { 15. 16. class A implements Foo{ 17. public int bar(){return 1;} 18. } 19. 20. public int fubar(Foo fo...) (目前)
(最新 | 最舊) 檢視 (較新 50 筆 | 較舊 50 筆) (20 | 50 | 100 | 250 | 500)