阿摩:積少成多,積沙成塔
3
(1 分52 秒)
模式:試卷模式
試卷測驗 - 104 年 - SCJP 201-244#99410
繼續測驗
再次測驗 下載 下載收錄
1(C).

203. Given:
 5. import java.util.*; 
6. public class SortOf{ 
7. public static void main(String[] args){ 
8. ArrayList<Integer> a = new ArrayList<Integer>(); 
9. a.add(1); a.add(5); a.add(3); 
10. Collections.sort(a); 
11. a.add(2);
 12. Collections.reverse(a); 
13. System.out.println(a); 
14. } 
15. }
 What is the result?
(A) [1, 2, 3, 5]
(B) [2, 1, 3, 5]
(C) [2, 5, 3, 1]
(D) [5, 3, 2, 1]
(E) [1, 3, 5, 2]


2( ).
X


204. Given: 
11. public class Person{ 
12. private name;
 13. public Person(String name){
 14. this.name = name; 
15. }
 16. public int hashCode(){
 17. return 420; 
18. } 
19. } 
Which statement is true?
(A) The time to find the value from HashMap with a Person key depends on the size of the map.
(B) Deleting a Person key from a HashMap will delete all map entries for all keys of type Person.
(C) Inserting a second Person object into a HashSet will cause the first Person object to be removed as a duplicate.
(D) The time to determine whether a Person object is contained in a HashSet is constant and does NOT depend on the size of the map.


3( ).
X


205. Given: 
12. import java.util.*; 
13. public class Explorer2{ 
14. public static void main(String[] args){ 
15. TreeSet<Integer> s = new TreeSet<Integer>(); 
16. TreeSet<Integer> subs = new TreeSet<Integer>(); 
17. for(int i=606; i<613; i++) 
18. if(i%2 == 0) s.add(i); 
19. subs = (TreeSet)s.subSet(608, true, 611, true);
 20. s.add(629);
 21. System.out.println(s + " " + subs);
 22. }
 23. }
 What is the result?
(A) Compilation fails.
(B) An exception is thrown at runtime.
(C) [608, 610, 612, 629] [608, 610]
(D) [608, 610, 612, 629] [608, 610, 629]
(E) [606, 608, 610, 612, 629] [608, 610]


4( ).
X


206. Given: 
1. public class Drink implements Comparable{
2. public String name; 
3. public int compareTo(Object o){
 4. return 0;
 5. } 
6. }
 and:
 20. Drink one = new Drink(); 
21. Drink two = new Drink(); 
22. one.name = "Coffee"; 
23. two.name = "Tea"; 
24. TreeSet set = new TreeSet(); 
25. set.add(one); 
26. set.add(two);
 A programmer iterates over the TreeSet and prints the name of each Drink object. What is the result?
(A) Tea
(B) Coffee
(C) Coffee Tea
(D) Compilation fails.
(E) The code runs with no output.


5( ).
X


207. A programmer must create a generic class MinMax and the type parameter of MinMax must implement Comparable. Which implementation of MinMax will compile?
(A) 60d0089226c5b.jpg 60d008e0828ce.jpg
(B) 60d008bfbfbcf.jpg
(C) 60d00901dfb0b.jpg
(D) 60d0092439316.jpg



6( ).
X


208. Given: 
1. import java.util.*; 
2. public class Example{ 
3. public static void main(String[] args){ 
4. //insert code here 
5. set.add(new Integer(2)); 
6. set.add(new Integer(1)), 
7. System.out.println(set); 
8. } 
9. } 
Which code, inserted at line 4, guarantees that this program will output [1, 2]?
(A) Set set = new TreeSet();
(B) Set set = new HashSet();
(C) Set set = new SortedSet();
(D) List set = new SortedList();
(E) Set set = new LinkedHashSet();


7( ).
X


209. Given: 
 1. import java.util.*; 
2. public class TestSet{ 
3. enum Example{ONE, TWO, THREE} 
4. public static void main(String[] args){
 5. Collection coll = new ArrayList(); 
6. coll.add(Example.THREE);
 7. coll.add(Example.THREE); 
8. coll.add(Example.THREE);
 9. coll.add(Example.TWO);
 10. coll.add(Example.TWO);
 11. coll.add(Example.ONE)
 12. Set set = new HashSet(coll); 
13. }
 14. } 
Which statement is true about the set variable on line 12?
(A) The set variable contains all six elements from the coll collection, and the order is guaranteed to be preserved.
(B) The set variable contains only three elements from the coll collection, and the order is guaranteed to be preserved.
(C) The set variable contains all six elements from the coll collection, but the order is NOT guaranteed to be preserved.
(D) The set variable contains only three elements from the coll collection, but the order is NOT guaranteed to be preserved.


8( ).
X


210. Given: 
11. public class Person{ 
12. private String name, comment; 
13. private int age;
 14. public Person(String n, int a, String c){ 
15. name = n; age = a; comment = c;
 16. } 
17. public boolean equals(Object o){ 
18. if (!(0 instanceof Person)) return false; 
19. Person p = (Person)o;
 20. return age == p.age && name.equals(p.name); 
21. } 
22. } 
What is the appropriate definition of the hashCode method in class Person?
(A) return super.hashCode();
(B) return name.hashcode() + age * 7;
(C) return name.hashCode() + comment.hashCode() / 2;
(D) return name.hashCode() + comment.hashCode() / 2- age * 3;


9( ).
X


211. Given: 
11. public class Key{ 
12. private long id1, 
13. private long id2;
 14. 
15. //class Key methods
 16. }
 A programmer is developing a class Key, that will be used as a key in a standard java.util.HashMap. Which two methods should be overridden to assure that Key works correctly as a key? (Choose two.)
(A) public int hashCode()
(B) public void hashCode()
(C) public int compareTo(Object o)
(D) public boolean equals(Object o)
(E)public boolean compareTo(Key k)


10( ).
X


212. Given:
 3. import java.util.*; 
4. public class Hancock{ 
5. //insert code here
 6. list.add("foo"); 
7. }
 8. }
 Which two code fragments, inserted independently at line 5, will compile without warnings? (Choose two.)
(A) public void addStrings(List list){
(B) public void addStrings(List<String> list){
(C) public void addStrings(List<? super String> list){
(D) public void addStrings(List<? extends String> list){


11( ).
X


213. Given a class whose instances, when found in a collection of objects, are sorted by using the compareTo() method, which two statements are true? (choose two.)
(A) The class implements java.lang.Comparable.
(B) The class implements java.util.Comparator.
(C) The interface used to implement sorting allows this class to define only one sort sequence.
(D) The interface used to implement sorting allows this class to define many different sort sequences.


12( ).
X


214. Given:
 12. import java.util.*;
13. public class Explorer3{ 
14. public static void main(String[] args){ 
15. TreeSet<Integer> s = new TreeSet<Integer>(); 
16. TreeSet<Integer> subs = new TreeSet<Integer>(); 
17. for(int i=606; i<613; i++) 
18. if(i%2 == 0) s.add(i);
 19. subs = (TreeSet)s.subSet(608, true, 611, true);
 20. subs.add(629); 
21. System.out.println(s + " " + subs); 
22. } 
23. } 
What is the result?
(A) Compilation fails.
(B) An exception is thrown at runtime.
(C) [608, 610, 612, 629] [608, 610]
(D) [608, 610, 612, 629] [608, 610, 629]
(E) [606, 608, 610, 612, 629] [608, 610]


13( ).
X


215. Given:
 1. import java.util.*; 
2.
 3. public class LetterASort{ 
4. public static void main(String[] args){ 
5. ArrayList<String> strings = new ArrayList<String>(); 
6. strings.add("aAaA"); 
7. strings.add("AaA"); 
8. strings.add("aAa");
 9. strings.add("AAaa"); 
10. Collections.sort(strings); 
11. for(String s : strings){System.out.print(s + " ");} 
12. } 
13. }
What is the result?
(A)Compilation fails.
(B) aAaA aAa AAaa AaA
(C)AAaa AaA aAa aAaA
(D) AaA AAaa aAaA aAa
(E) aAa AaA aAaA AAaa


14( ).
X


219. Given: 
1. public class Threads2 implements Runnable{ 
2. 
3. public void run(){
 4. System.out.println("run."); 
5. throw new RuntimeException("Problem"); 
6. }
 7. public static void main(String[] args){ 
8. Thread t = new Thread(new Threads2());
 9. t.start(); 
10. System.out.println("End of method."); 
11. } 
12. }
 Which two can be results? (Choose two.)
(A) java.lang.RuntimeException: Problem
(B) run. java.lang.RuntimeException: Problem
(C) End of method. java.lang.RuntimeException: Problem
(D) End of method. run. java.lang.RuntimeException: Problem
(E) run. java.lang.RuntimeException: Problem End of method.


15( ).
X


221. Given: 
7. void waitForSignal(){
 8. Object obj = new Object(); 
9. synchronized(Thread.currentThread()){ 
10. obj.wait();
 11. obj.notify(); 
12. } 
13. } 
Which statement is true?
(A) This code can throw an InterruptedException.
(B) This code can throw an IllegalMonitorStateException.
(C) This code can throw a TimeoutException after ten minutes.
(D) Reversing the order of obj.wait() and obj.notify() might cause this method to complete normally.
(E) A call to notify() or notifyAll() from another thread might cause this method to complete normally.


16( ).
X


222. Given: 
10. public class Starter extends Thread{
 11. private int x = 2; 
12. public static void main(String[] args) throws Exception{ 
13. new Starter().makeItSo(); 
14. } 
15. public Starter(){ 
16. x = 5; 
17. start(); 
18. } 
19. public void makeItSo() throws Exception{ 
20. join(); 
21. x = x - 1; 
22. System.out.println(x); 
23. }
 24. public void run(){x *= 2;} 
25. } 
What is the output if the main() method is run?
(A) 4
(B) 5
(C) 8
(D) 9
(E) Compilation fails.


17( ).
X


223. Given: 
11. class PingPong2{
 12. synchronized void hit(long n){ 
13. for(int i=1; i<3; i++)
 14. System.out.print(n + "-" + i + " "); 
15. } 
16. } 
17. public dass Tester implements Runnable{ 
18. static PingPong2 pp2 = new PingPong2(); 
19. public static void main(String[] args){
 20. new Thread(new Tester()).start(); 
21. new Thread(new Tester()).start(); 
22. }
 23. public void run(){pp2.hit(Thread.currentThread.getId());} 
24. }
 Which statement is true?
(A) The output could be 5-1 6-1 6-2 5-2
(B) The output could be 6-1 6-2 5-1 5-2
(C) The output could be 6-1 5-2 6-2 5-1
(D) The output could be 6-1 6-2 5-1 7-1


18( ).
X


224. Given: 
1. public class Threads4{ 
2. public static void main(String[] args){ 
3. new Threads4.go(); 
4. } 
5. public void go(){ 
6. Runnable r = new Runnable(){
 7. public void run(){ 
8. System.out.print("foo"); 
9. } 
10. }; 
11. Thread t = new Thread(r); 
12. t.start(); 
13. t.start(); 
14. } 
15. } 
What is the result?
(A) Compilation fails.
(B) An exception is thrown at runtime.
(C) The code executes normally and prints "foo";
(D) The code executes normally, but nothing is printed.


19( ).
X


226. Which two statements are true? (Choose two.)
(A) It is possible to synchronize static methods.
(B) When a thread has yielded as a result of yield(), it releases its locks.
(C) When a thread is sleeping as a result of sleep(), it releases its locks.
(D) The Object.wait() method can be invoked only from a synchronized context.
(E) The Thread.sleep() method can be invoked only from a synchronized context.


20( ).
X


227. Given: 
1. public class TestOne implements Runnable{ 
2. public static void main (String[] args)throws Exception{ 
3. Thread t = new Thread(new TestOne());
 4. t.start(); 
5. System.out.pririt("Started"); 
6. t.join(); 
7. System.out.print("Complete");
 8. } 
9. public void run(){ 
10. for(int i=0; i<4; i++){ 
11. System.out.print(i);
 12. } 
13. } 
14. }
 What can be a result?
(A) Compilation fails.
(B) An exception is thrown at runtime.
(C) The code executes and prints "StartedComplete".
(D) The code executes and prints "StartedComplete0123".
(E) The code executes and prints "Started0123Complete".


21( ).
X


229. Given: 
1. public class TestFive{ 
2. private int x;
 3. public void foo(){
 4. int current = x; 
5. x = current + 1;
 6. }
 7. public void go(){ 
8. for(int i=0; i<5; i++){ 
9. new Thread(){ 
10. public void run(){
 11. foo(); 
12. System.out.print(x + ", ");
 13. }}.start(); 
14. }}
 Which two changes, taken together, would guarantee the output: 1, 2, 3, 4, 5, ? (Choose two.)
(A) move the line 12 print statement into the foo() method
(B) change line 7 to public synchronized void go(){
(C) change the variable declaration on line 2 to private volatile int x;
(D) wrap the code inside the foo() method with a synchronized(this) block
(E) wrap the for loop code inside the go() method with a synchronized block synchronized(this){//for loop code here}


22( ).
X


230. Given that t1 is a reference to a live thread, which is true?
(A) The Thread.sleep() method can take t1 as an argument.
(B) The Object.notify() method can take t1 as an argument.
(C) The Thread.yield() method can take t1 as an argument.
(D) The Thread.setPriority() method can take t1 as an argument.
(E) The Object.notify() method arbitrarily chooses which thread to notify.


23( ).
X


231. Given: 
11. Runnable r = new Runnable(){ 
12. public void run(){ 
13. System.out.print("Cat"); 
14. } 
15. }; 
16. Thread t = new Thread(r){
 17. public void run(){ 
18. System.outprint("Dog"); 
19. }
 20. }; 
21. t.start();
 What is the result?
(A) Cat
(B) Dog
(C) Compilation fails.
(D) The code runs with no output.
(E) An exception is thrown at runtime.


24( ).
X


232. Given: 
1. public class Threads5{ 
2. public static void main(String[] args){ 
3. new Thread(new Runnable(){ 
4. public void run(){ 
5. System.out.print("bar");
 6. }}).start(); 
7. }
 8. } 
What is the result?
(A) Compilation fails.
(B) An exception is thrown at runtime.
(C) The code executes normally and prints "bar".
(D) The code executes normally, but nothing prints.


25( ).
X


233. Given: 
1. public class Threads1{ 
 2. int x = 0;
 3. public class Runner implements Runnable{ 
4. public void run(){ S. int current = 0; 
6. for(int i=0; i<4; i++){ 
7. current = x; 
8. System.out.print(current + ", "); 
9. x = current + 2; 
10. }
 11. }
 12. }
 13.
 14. public static void main(String[] args){ 
15. new Threads1().go(); 
16. }
 17.
 18. public void go(){
 19. Runnable rl = new Runner(); 
20. new Thread(r1).start(); 
21. new Thread(r1).start(); 
22. }
23. }
 Which two are possible results? (Choose two.)
(A) 0, 2, 4, 4, 6, 8, 10, 6,
(B) 0, 2, 4, 6, 8, 10, 2, 4,
(C) 0, 2, 4, 6, 8, 10, 12, 14,
(D) 0, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14,
(E) 0, 2, 4, 6, 8, 10, 12, 14, 0, 2, 4, 6, 8, 10, 12, 14,


26( ).
X


234. Given: 
foo and bar are public references available to many other threads, foo refers to a Thread and bar is an Object. The thread foo is currently executing bar.wait().
 From another thread, what provides the most reliable way to ensure that foo will stop executing wait()?
(A) foo.notify();
(B) bar.notify();
(C) foo.notifyAll();
(D) Thread.notify();
(E) bar.notifyAll(); F. Object.notify();


27( ).
X


235. Given: 
11. public class PingPong implements Runnable{ 
12. synchronized void hit(long n){
 13. for(int i=1; i<3; i++) 
14. System.out.print(n + "-" + i + " "); 
15. }
 16. public static void main(String[] args){
 17. new Thread(new PingPong()).start();
 18. new Thread(new PingPong()).start(); 
19. }
 20. public void run(){ 
21. hit(Thread.currentThread().getId);
 22. } 
23. } 
Which two statements are true? (Choose two.)
(A) The output could be 8-1 7-2 8-2 7-1
(B) The output could be 7-1 7-2 8-1 6-1
(C) The output could be 8-1 7-1 7-2 8-2
(D) The output could be 8-1 8-2 7-1 7-2


28( ).
X


239. Given: 
1. public class TestOne{ 
2. public static void main(String[] args) throws Exception{ 
3. Thread.sleep(3000); 
 4. System.out.println("sleep"); 
5. } 
6. } 
What is the result?
(A) Compilation fails.
(B) An exception is thrown at runtime.
(C) The code executes normally and prints "sleep".
(D) The code executes normally, but nothing is printed.


29( ).
X


241. Given: 
1. public class Threads3 implements Runnable{ 
2. public void run(){ 
3. System.out.print("running");
 4. }
 5. public static void main(String[] args){ 
6. Thread t = new Thread(new Threads3()); 
7. t.run(); 
8. t.run(); 
9. t.start(); 
10. } 
11. }
 What is the result?
(A) Compilation fails.
(B) An exception is thrown at runtime.
(C) The code executes and prints "running".
(D) The code executes and prints "runningrunning".
(E) The code executes and prints "runningrunningrunning".


30( ).
X


242. Given:
 public class NamedCounter{
 private final String name; 
private int count; 
public NamedCounter(String name){this.name = name;} 
public String getName(){return name;} 
public void increment(){count++;} 
public int getCount(){return count;}
 public void reset(){count = 0;}
 Which three changes should be made to adapt this class to be used safely by multiple threads? (Choose three.)
(A) declare reset() using the synchronized keyword
(B) declare getName() using the synchronized keyword
(C) declare getCount() using the synchronized keyword
(D) declare the constructor using the synchronized keyword
(E) declare increment() using the synchronized keyword


31( ).
X


243. Given that Triangle implements Runnable, 
and: 
31. void go() throws Exception{ 
32. Thread t = new Thread(new Triangle());
 33. t.start(); 
34. for(int x=1; x<100000; x++){ 
35. //insert code here 
36. if(x%100 == 0) System.out.print("g"); 
37. }} 
38. public void run(){
 39. try{
 40. for(int x=1; x<100000; x++){
 41. //insert the same code here 
42. if(x%100 == 0) System.out.print("t"); 
43. }
 44. }catch(Exception e){} 
45. }
 Which two statements, inserted independently at both lines 35 and 41, tend to allow both threads to temporarily pause and allow the other thread to execute? (Choose two.)
(A) Thread.wait();
(B) Thread.join();
(C) Thread.yield();
(D) Thread.sleep(1);
(E) Thread.notify();


32( ).
X


244. Given: 
1. public class TestSeven extends Thread{
 2. private static int x; 
3. public synchronized void doThings(){
 4. int current = x; 
5. current++; 6. x = current; 
7. } 
8. public void run(){ 
9. doThings(); 
10. }
 11. } 
Which statement is true?
(A) Compilation fails.
(B) An exception is thrown at runtime.
(C) Synchronizing the run() method would make the class thread-safe.
(D) The data in variable "x" are protected from concurrent access problems.
(E) Declaring the doThings() method as static would make the class thread-safe.


【非選題】
201. Given:
1. import java.util.*; 
2. class A{} 
3. class B extends A{}
 4. public class Test{ 
5. public static void main(Strang[] args){ 
6. List<A> listA = new LinkedList<A>(); 
7. List<B> listB = new LinkedList<B>(); 
8. List<Obect> listO = new LinkedList<Obect>(); 
9. //insert code here 
10. } 
11. public static void m1(List<? extends A> list){} 
12. public static void m2(List<A> list){}
 Place a result onto each method call to indicate what would happen if the method call were inserted at line 9. Note: Results can be used more than once. 60d0071a8cae8.jpg


【非選題】
202. Given: 
NumberNames nn = new NumberNames();
 nn.put("one", 1);
 System.out.println(nn.getNames());
 Place the code into position to create a class that maps from Strings to integer values. The result of execution must be [one]. Some options may be used more than once. public class NumberNames{ private HashMap< Place here , Place here > map = new HashMap< Place here , Place here Place here ; 
60d0076ee661b.jpg60d0078c768ee.jpg


【非選題】
216. Given: 
1. import java.util.*, 
2. public class TestGenericConversion{ 
3. public static void main(String[] args){
 4. List list = new LinkedList(); 
5. list.add("one");
 6. list.add("two"); 
7. System.out.print(((String)list.get(O)).length());
 8. } 
9. } 
Refactor this class to use generics without changing the code's behavior. 60d00cf06a171.jpg


【非選題】
217.
 Place the code into the GenericB class definition to make the class compile successfully. 60d00d3358a24.jpg


【非選題】

218. Place the code elements in position so that the Flags2 class will compile and make appropriate use of the wait/notify mechanism. Note You may reuse code elements. 60d00d6a2b9dd.jpg



【非選題】
220. Which factor or factors
 
(A) It is possible for more than two threads to deadlock at once.
(B) The JVM implementation guarantees that multiple threads cannot enter into a deadlocked state.
(C) Deadlocked threads release once their sleep() method's sleep duration has expired.
(D) Deadlocking can occur only when the wait(), notify() and notifyAll() methods are used incorrectly.
(E) It is possible for a single-threaded application to deadlock if synchronized blocks are used incorrectly. (F) If a piece of code is capable of deadlocking, you cannot eliminate the possibility of deadlocking by inserting invocations of Thread.yield().


【非選題】
225. Given: 
10. Runnable r = new Runnable(){
 11. public void run(){ 
12. try{ 
13. Thread.sleep(1000); 
14. }catch(InterruptedException e){ 
15. System.out.println("interrupted"); 
16. } 
17. System.out.println("ran"); 
18. } 
19. }; 
20. Thread t = new Thread(r); 
21. t.start(); 
22. System.out.println("started"); 
23. t.sleep(2000): 
24. System.out.println("interrupting"); 
25. t.interrupt(); 
26. System.out.println("ended"); 
Assume that sleep(n) executes in exactly n milliseconds. and all other code executes in an insignificant amount of time.
 Place the fragments in the output area to show the result of running this code. 60d00fa0a1375.jpg


【非選題】

228. Which three will compile and run without exception? (Choose three.)
(A) private synchronized Object o;
(B)60d0104555f3a.jpg
(C) public synchronized void go(){/* code here */}
(D) private synchronized(this) void go(){/* code here */}
(E) 60d01062cb01b.jpg60d010861cd34.jpg (F) 60d010208076d.jpg



【非選題】
236. Given: 
1. class Computation extends Thread{ 
2.
 3. private int num; 
4. private boolean isComplete; 
5. private int result; 
6.
 7. public Computation(int num){this.num = num;} 
8.
 9. public synchronized void run(){
 10. result = num * 2; 
11. isComplete = true; 
12. notify(); 
13. }
 14.
 15. public synchronized int getResult(){ 
16. while(!isComplete){ 
17. try{
 18. wait(); 
19. }catch(InterruptedException e){}
 20. } 
21. return result; 
22. }
 23.
 24.public static void main(String[] args){ 
 25. Computation[] computations = new Computation[4]; 
26. for(int i=0; i<computations.length; i++){ 
27. computations[i] = new Computation(i); 
28. computations[i].start(); 
29. } 
30. for(Computation c : computations)
 31. System.out.print(c.getResult() + " "); 
32. }
 33. } 
What is the result?
(A) The code will deadlock.
(B) The code may run with no output.
(C) An exception is thrown at runtime.
(D) The code may run with output "0 6".
(E) The code may run with output "2 0 6 4". (F) The code may run with output "0 2 4 6".


【非選題】

237. Place the code elements into the class so that the code compiles and prints "Run. Run. doIt. " in exactly that order. Note that there may be more than one correct solution. 60d0124f93f89.jpg



【非選題】

238. Which two code fragments will execute the method doStuff() in a separate thread? (Choose two.)
(A) 60d021e41c605.jpg
(B) 60d0222fe6f09.jpg
(C) 60d02251410c7.jpg
(D)60d0228e13505.jpg
(E) 60d022b9be00d.jpg (F) 60d022dbaa292.jpg



【非選題】

240. Place a Class on each method that is declared in the class. 60d0235235f50.jpg



試卷測驗 - 104 年 - SCJP 201-244#99410-阿摩線上測驗

timmy剛剛做了阿摩測驗,考了3分