Hung Chang

Greenhorn
+ Follow
since Oct 21, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Hung Chang

hi all,i am thinking about getting C++ certification, but "0h WOW" there are so many c++ certification providers out there.. i have no idea which c++ certification to go for..
please can someone give me some suggetions.. thanx in advance.
23 years ago
Hi, guys
What should I do next??
i am thinking about getting another programmer certification. but i dont know which one to go for.. should i go for SCJD or other kind of programmer certification.
i need some suggestions.
23 years ago
Wow, it was a long way to become a SCJP. But i made it.Yessssss!
I got about 5 Questions on Thread and about 4 on IO(You Mustknow FileOutputStream/FileInputStream,InputStreamReader/InputSream writer constructors. I have them on the test.)
One Question on GridLayout and one on GridbagLaout.
Must know the Difference between String and StringBuffer. i got one question asking me if a operator + can be use with StringBuffer.
And finally, THANK YOU ALL. ^^
23 years ago
which of the following calls will not stop a thread from executin?
assume that the thread is already started.
1.start()
2.notify()
3.wait()
4.interrupt()
5.t.join // here t is some other thread
the answer given is 1,2,3.
can anyone explain why? ^^
which of the following calls will not stop a thread from executin?
assume that the thread is already started.
1.start()
2.notify()
3.wait()
4.interrupt()
5.t.join // here t is some other thread
the answer given is 1,2,3.
can anyone explain why? ^^
can anyone explain to me what exactly is "has a" relationship..
thanx in advance
23 years ago
sorry.. ans1
23 years ago
hi,Argm
it doesnt always print ans4.
if i pick x=5.. it prints ans4
23 years ago
i need help with this question.
14. Given:
class Q14 {
public static void main(String[] args) {
int intNumber = 123456789;
float floatNumber = intNumber;
int x = (int)floatNumber;
System.out.println(intNumber - x);
System.out.println(intNumber == x );
}
}
Choose 2 answers.
1.Prints 0 and true .
2.Prints 0 and false.
3.Prints (some number due to loss of precision) and true.
4.Prints some integer due to loss of precision and false.
when it compiles, it prints ans 4.. but when i change intNumber =2147483648 or other numbers, it compiles and prints ans 1.
can anyone explain it to me plz.. thanx in advance
23 years ago
hey, guys.
is it really difficult to find a job NOW! i have being looking for a job for past 3 months and cant find any o~Q. And i live in New York.
i am a MCSE, MCDBA, and A+ Certified..and no one wants me
23 years ago
Correct me if i am wrong..
Superclass{}
Subclass extends Superclass{}
Sublcass s= new Sublclass();

The order of initialization is like this:
Static variable/block(in superclass)==> static variable/block(in subclass)==>instance variable/block(in superclass)==>constructor(in superclass)==>instance variable/block(in sublcass)==>Finally the constructor in subeclass is executed..

guys..i like to express my opinion on this Question;o~Q
Correct me if i am wrong..
superclass{}
subclass extends superclass{}
The order of initialization is like this:
Static variable/block(in superclass)==> static variable/block(in subclass)==>instance variable/block(in superclass)==>constructor(in superclass)==>instance variable/block(in sublcass)==>Finally the constructor in subeclass is executed..
>>>
this Question comes from Jtips exam at mock exam1 number#27
23 years ago
>>>
wow, now i understand^^
thanx guys..
23 years ago
>>>
True or False?
Unsigned Right Shift on a Negative Integer always returns
a Positive Integer.
the answer is false..
why it is false..can someone help plz~
23 years ago