| Author |
HI
|
viswanath balam
Greenhorn
Joined: Jun 25, 2007
Posts: 15
|
|
Hi Everybody Can anybody has Enthuware free mock exams, or efficient mock exams. Bcz im trying to write scjp 1.5 next week. Im able to write some mock exams available on internet but not able to findout at what %xx im standing. What can i do pls help me in this and provide more mock exam links. Pls its very urgent for me.
|
visu
|
 |
Chinni Bujji
Ranch Hand
Joined: Jan 31, 2007
Posts: 60
|
|
class Comp2 { public static void main(String[] args) { float f 1 = 2.3 f; float [] [] f2 = {{42.0f} , {1.7f,2.3 f},{2.6f,2.7f}}; float [] f3 ={2.7 f}; Long x = 42 L; // insert code here if(f1==f2) //Error because you are comparing an array to an element if(f1==f2[2][1])//compiles and no output becoz f2[2][1] value is 2.7f if(x==f2[0][0])//compiles and gives the output true if(f1==f2[1,1])//syntax error because it should be f2[1][1] not f2[1,1] if(f3==f2[2])//compiles but no output becuase you are comparing address with value System.out.println("true"); } so three statements compile and one statement gives the "true" result }
|
 |
anita dhar
Ranch Hand
Joined: Jul 14, 2007
Posts: 69
|
|
hello , this is a good mock test according to topic wise , you can find it http://www.danchisholm.net/oct1/mybook/ http://www.examulator.com/phezam/login.php
|
 |
 |
|
|
subject: HI
|
|
|