使用者貢獻
(最新 | 最舊) 檢視 (較新 50 筆 | 較舊 50 筆) (20 | 50 | 100 | 250 | 500)
- 2013年4月12日 (五) 09:01 (差異 | 歷史) . . (+29) . . 課程:Arduino (→Arduino實驗)
- 2013年4月12日 (五) 09:00 (差異 | 歷史) . . (+8) . . 新 檔案:AODUION.jpg (MsUpload) (目前)
- 2013年4月10日 (三) 19:21 (差異 | 歷史) . . (+6) . . 課程:Arduino (→Arduino實驗)
- 2013年4月10日 (三) 18:51 (差異 | 歷史) . . (+49) . . 課程:Arduino (→實驗:七段顯示器)
- 2013年4月10日 (三) 18:50 (差異 | 歷史) . . (+101) . . 課程:Arduino (→Arduino實驗)
- 2013年4月9日 (二) 08:28 (差異 | 歷史) . . (+3,522) . . 課程:Arduino (→Arduino實驗)
- 2013年4月2日 (二) 06:37 (差異 | 歷史) . . (+1) . . 課程:Arduino (→Arduino實驗)
- 2013年4月2日 (二) 06:36 (差異 | 歷史) . . (+533) . . 課程:Arduino (→Arduino實驗)
- 2013年3月30日 (六) 09:13 (差異 | 歷史) . . (-194) . . SCJP 1.6版考題 001 (目前)
- 2013年3月30日 (六) 09:05 (差異 | 歷史) . . (+598) . . SCJP 1.6版考題 002 (目前)
- 2013年3月30日 (六) 09:04 (差異 | 歷史) . . (+758) . . 新 SCJP 1.6版考題 003 (新頁面: 1. public class Test{ 2. public static void main(String[] args){ 3. int x = 5; 4. boolean b1 = true; 5. boolean b2 = false; 6. 7. if((x==4) && !b2) 8. ...) (目前)
- 2013年3月30日 (六) 09:02 (差異 | 歷史) . . (+752) . . 新 SCJP 1.6版考題 004 (新頁面: 22. public void go(){ 23. String o = ""; 24. z: 25. for(int x=0; x<3; x++){ 26. for(int y=0; y<2; y++){ 27. if(x == 1) break; 28. if(x==2 && y...) (目前)
- 2013年3月30日 (六) 09:01 (差異 | 歷史) . . (+480) . . 新 SCJP 1.6版考題 005 (新頁面: 10. int x = 0; 11. int y = 10; 12. do{ 13. y--; 14. ++x; 15. }while(x < 5); 16. System.out.print(x + "," + y); What is the result? A. 5,6 B. 5,5 C. 6,5 D....) (目前)
- 2013年3月30日 (六) 09:00 (差異 | 歷史) . . (+1,022) . . 新 SCJP 1.6版考題 006 (新頁面: 1. public class Breaker{ 2. static String o = ""; 3. public static void main(String[] args){ 4. z: 5. o = o + 2; 6. for(int x=3; x<8; x++){ 7. if(x ==...) (目前)
- 2013年3月30日 (六) 08:59 (差異 | 歷史) . . (+678) . . 新 SCJP 1.6版考題 007 (新頁面: 1. public class Breaker2{ 2. static String o = ""; 3. public static void main(String[] args){ 4. z: 5. for(int x=2; x<7; x++){ 6. if(x == 3) continue; 7. ...) (目前)
- 2013年3月30日 (六) 08:57 (差異 | 歷史) . . (+783) . . 新 SCJP 1.6版考題 008 (新頁面: 1. public class Spock{ 2. public static void main(String[] args){ 3. Long tail = 2000L; 4. Long distance = 1999L; 5. Long story = 1000L; 6. if((tail>distance) ^...) (目前)
- 2013年3月30日 (六) 08:56 (差異 | 歷史) . . (+581) . . 新 SCJP 1.6版考題 009 (新頁面: 11. String[] elements = {"for", "tea", "too"}; 12. String first = (elements.length>0) ? elements[0] : null; What is the result? A. Compilation fails. B. An exception is ...) (目前)
- 2013年3月30日 (六) 08:55 (差異 | 歷史) . . (+1,193) . . 新 SCJP 1.6版考題 010 (新頁面: 1. import java.util.*; 2. public class Quest{ 3. public static void main(String[] args){ 4. String[] colors = 5. {"blue","red","green","yellow","orange"}; 6. Arr...) (目前)
- 2013年3月30日 (六) 08:53 (差異 | 歷史) . . (+580) . . 新 SCJP 1.6版考題 011 (新頁面: 1. class Alligator{ 2. public static void main(String[] args){ 3. int[]x[] = {{1,2},{3,4,5},{6,7,8,9}}; 4. int[][]y = x; 5. System.out.print(y[2][1]); 6. } 7. } ...) (目前)
- 2013年3月30日 (六) 08:51 (差異 | 歷史) . . (+958) . . 新 SCJP 1.6版考題 012 (新頁面: <DD>檔案:SCJP12q.png <div class="toccolours mw-collapsible mw-collapsed"> <span style="font-size:medium;">解答</span> ---- <div class="mw-collapsible-content"> <span style="...) (目前)
- 2013年3月30日 (六) 08:48 (差異 | 歷史) . . (+822) . . 新 SCJP 1.6版考題 013 (新頁面: 1. public class Barn{ 2. public static void main(String[] args){ 3. new Barn.go("hi", 1); 4. new Barn.go("hi", "world", 2); 5. } 6. public void go(String... y, int ...) (目前)
- 2013年3月30日 (六) 08:47 (差異 | 歷史) . . (+1,237) . . 新 SCJP 1.6版考題 014 (新頁面: 11. class Person{ 12. String name = "No name"; 13. public Person(String nm){name = nm;} 14. } 15. 16. class Employee extends Person{ 17. String empID = "0000"; 18. publ...) (目前)
- 2013年3月30日 (六) 08:45 (差異 | 歷史) . . (+1,726) . . 新 SCJP 1.6版考題 015 (新頁面: 11. class Mud{ 12. //insert code here 13. System.out.println("hi"); 14. } 15. } And the following five fragments: public static void main(String...a){ public static voi...) (目前)
- 2013年3月30日 (六) 08:42 (差異 | 歷史) . . (+1,132) . . 新 SCJP 1.6版考題 016 (新頁面: 5. class Atom{ 6. Atom(){System.out.print("atom ");} 7. } 8. class Rock extends Atom{ 9. Rock(String type){System.out.print(type);} 10. } 11. public class Mountain extends ...) (目前)
- 2013年3月30日 (六) 08:40 (差異 | 歷史) . . (+1,315) . . 新 SCJP 1.6版考題 017 (新頁面: 1. public class Blip{ 2. protected int blipvert(int x){return 0;} 3. } 4. class Vert extends Blip{ 5. //insert code here 6. } Which five methods, inserted independentl...) (目前)
- 2013年3月30日 (六) 08:38 (差異 | 歷史) . . (+1,264) . . 新 SCJP 1.6版考題 018 (新頁面: 1. class Super{ 2. private int a; 3. protected Super(int a){this.a = a;} 4. } ... 11. class Sub extends Super{ 12. public Sub(int a){super(a);} 13. public Sub(){this.a ...) (目前)
- 2013年3月30日 (六) 08:36 (差異 | 歷史) . . (+617) . . 新 SCJP 1.6版考題 019 (新頁面: Which Man class properly represents the relationship "Man has a best friend who is a Dog"? A. class Man extends Dog{} B. class Man implements Dog{} C. class Man{priva...) (目前)
- 2013年3月30日 (六) 08:34 (差異 | 歷史) . . (+1,556) . . 新 SCJP 1.6版考題 020 (新頁面: A team of programmers is reviewing a proposed API for a new utility class. 一組程式設計師正在檢視一個新工具類別的程式設計介面(API) After some discussio...) (目前)
- 2013年3月30日 (六) 08:32 (差異 | 歷史) . . (+809) . . 新 SCJP 1.6版考題 021 (新頁面: 1. class Batman{ 2. int squares = 81; 3. public static void main(String[] args){ 4. new Batman().go(); 5. } 6. void go(){ 7. incr(++squares); 8. System.out....) (目前)
- 2013年3月30日 (六) 08:30 (差異 | 歷史) . . (+768) . . 新 SCJP 1.6版考題 022 (新頁面: 1. class Pass{ 2. public static void main(String[] args){ 3. int x = 5; 4. Pass p = new Pass(); 5. p.doStuff(x); 6. System.out.print(" main x = " + x); 7. } ...) (目前)
- 2013年3月30日 (六) 08:30 (差異 | 歷史) . . (+1,462) . . 新 SCJP 1.6版考題 023 (新頁面: A company has a business application that provides its users with many different reports: receivables reports, payables reports, revenue projects, and so on. 某家公司有一...) (目前)
- 2013年3月30日 (六) 08:27 (差異 | 歷史) . . (+1,499) . . 新 SCJP 1.6版考題 024 (新頁面: A company that makes Computer Assisted Design(CAD) software has, within its application some utility classes that are used to perform 3D rendering tasks. 有一些工具類別...) (目前)
- 2013年3月30日 (六) 08:24 (差異 | 歷史) . . (+1,483) . . 新 SCJP 1.6版考題 025 (新頁面: 1. class ClassA{ 2. public int numberOfInstances; 3. protected ClassA(int numberOfInstances){ 4. this.numberOfInstances = numberOfInstances; 5. } 6. } 7. class Extende...) (目前)
- 2013年3月30日 (六) 08:22 (差異 | 歷史) . . (+1,072) . . 新 SCJP 1.6版考題 026 (新頁面: 10. interface Jumper{public void jump();} ... 20. class Animal{} ... 30. class Dog extends Animal{ 31. Tail tail; 32. } ... 40. class Beagle extends Dog implements Jumper{ ...) (目前)
- 2013年3月30日 (六) 08:20 (差異 | 歷史) . . (+903) . . 新 SCJP 1.6版考題 027 (新頁面: 10. class One{ 11. void foo(){} 12. } 13. class Two extends One{ 14. //insert method here 15. } Which three methods, inserted individually at line 14, will correctly com...) (目前)
- 2013年3月30日 (六) 08:18 (差異 | 歷史) . . (+828) . . 新 SCJP 1.6版考題 028 (新頁面: 1. class X{ 2. X(){System.out.print(1);} 3. X(int x){ 4. this(); 5. System.out.print(2); 6. } 7. } 8. public class Y extends X{ 9. Y(){ 10. super(6); 11....) (目前)
- 2013年3月30日 (六) 08:17 (差異 | 歷史) . . (+812) . . 新 SCJP 1.6版考題 029 (新頁面: 1. public class A{ l2. public void doit(){ l3. } l4. public String doit(){ l5. return "a"; l6. } l7. public double doit(int x){ l8. return 1...) (目前)
- 2013年3月30日 (六) 08:16 (差異 | 歷史) . . (+1,006) . . 新 SCJP 1.6版考題 030 (新頁面: 1. public class SimpleCalc{ 2. public int value; 3. public void calculate(){value += 7;} 4. } And: 1. public class MultiCalc extends SimpleCalc{ 2. public void calculate()...) (目前)
- 2013年3月30日 (六) 08:15 (差異 | 歷史) . . (+959) . . 新 SCJP 1.6版考題 031 (新頁面: 1. public class Base{ 2. public static final String FOO = "foo"; 3. public static void main(String[] args){ 4. Base b = new Base(); 5. Sub s = new Sub(); 6. Syste...) (目前)
- 2013年3月30日 (六) 08:13 (差異 | 歷史) . . (+705) . . 新 SCJP 1.6版考題 032 (新頁面: 1. class Mammal{} 2. 3. class Raccoon extends Mammal { 4. Mammal m = new Mammal(); 5. } 6. 7. class BabyRaccoon extends Mammal{} Which four statements are true? (Choose fou...) (目前)
- 2013年3月30日 (六) 08:12 (差異 | 歷史) . . (+711) . . 新 SCJP 1.6版考題 033 (新頁面: 2. public class Hi{ 3. void m1(){} 4. protected void m2(){} 5. } 6. class Lois extends Hi{ 7. //insert code here 8. } Which four code fragments, inserted independentl...) (目前)
- 2013年3月30日 (六) 08:02 (差異 | 歷史) . . (+1,277) . . 新 SCJP 1.6版考題 034 (新頁面: Which four statements are true? (Choose four.) A. Has-a relationships should never be encapsulated. B. Has-a relationships should be implemented using inheritance. C. Has-...) (目前)
- 2013年3月30日 (六) 08:00 (差異 | 歷史) . . (+933) . . 新 SCJP 1.6版考題 035 (新頁面: 10. public class Hello{ 11. String title; 12. int value; 13. public Hello(){ 14. title += " World"; 15. } 16. public Hello(int value){ 17. this.value = value;...) (目前)
- 2013年3月30日 (六) 07:59 (差異 | 歷史) . . (+1,223) . . 新 SCJP 1.6版考題 036 (新頁面: public class Doubler{ public static int doubleMe(Holder h){ return h.getAmount() * 2; } } and: public class Holder { int amount = 10; public void doubleA...) (目前)
- 2013年3月30日 (六) 07:57 (差異 | 歷史) . . (+1,003) . . 新 SCJP 1.6版考題 037 (新頁面: 21. abstract class C1{ 22. public C1(){System.out.print(1);} 23. } 24. class C2 extends C1{ 25. public C2(){System.out.print(2);} 26. } 27. class C3 extends C2{ 28. publi...) (目前)
- 2013年3月30日 (六) 07:55 (差異 | 歷史) . . (+835) . . 新 SCJP 1.6版考題 038 (新頁面: 1. class One{ 2. public One foo(){return this;} 3. } 4. class Two extends One{ 5. public One foo(){return this;} 6. } 7. class Three extends Two{ 8. //insert method here ...) (目前)
- 2013年3月30日 (六) 07:54 (差異 | 歷史) . . (+1,016) . . 新 SCJP 1.6版考題 039 (新頁面: 11. public class ItemTest{ 12. private final int id; 13. public ItemTest(int id){this.id = id;} 14. public void updateId(int newId){id = newId;} 15. 16. public static voi...) (目前)
- 2013年3月30日 (六) 07:50 (差異 | 歷史) . . (+1,077) . . 新 SCJP 1.6版考題 040 (新頁面: 1. class Foo{ 2. private int x; 3. public Foo(int x){this.x = x;} 4. public void setX(int x){this.x = x;} 5. public int getX(){return x;} 6. } 7. 8. public class Gamma{ 9....) (目前)
- 2013年3月30日 (六) 07:48 (差異 | 歷史) . . (+1,453) . . 新 SCJP 1.6版考題 041 (新頁面: 1. public class KungFu{ 2. public static void main(String[] args){ 3. Integer x = 400; 4. Integer y = x; 5. x++; 6. StringBuilder sb1 = new StringBuilder("123")...) (目前)
- 2013年3月30日 (六) 07:45 (差異 | 歷史) . . (+1,167) . . 新 SCJP 1.6版考題 042 (新頁面: 1. class A{ 2. public String doit(int x, int y){ 3. return "a"; 4. } 5. 6. public String doit(int... vals){ 7. return "b"; 8. } 9. } Given: 25. A a = new A(); ...) (目前)
(最新 | 最舊) 檢視 (較新 50 筆 | 較舊 50 筆) (20 | 50 | 100 | 250 | 500)