Ioana Danescu

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

Recent posts by Ioana Danescu

Thank you very much.
I have to try it this way. I thought they are included in WSAD-IE.
[ April 30, 2003: Message edited by: Ioana Danescu ]
[ April 30, 2003: Message edited by: Ioana Danescu ]
21 years ago
Hello,
I have problems installing Portal Toolkit plug-in for WebSphere Studio. I have "WebSphere Studio Application Developer Integration Edition - 5.0" and I would like to start learning about portals/portlets.
I have downloaded PortalToolkit425, but when I run install.but it says "WebSphere Studio Application Developer or WebSphere Studio Site
Developer is not installed."
I get a bit confused - can anybody tell me what do I have to install? Thank you.
21 years ago
Yes, of course it is a good reference.
For the rest it depends how much time and effort you put in something.
22 years ago
Hello,
I passed the exam with 83% this morning.
I want to thank to all the people from this forum and to Marcus and Dan for their work on mock exams and tutorials that were very useful for me.
I used JLS, tutorials from Sun (for Threads and Assertions) and Dan's mock exams during my preparation. And, of course, I checked this forum regularly!
At the end I read Marcus tutorial and I did his mock exams.
From the questions that I've got at the exam, the most confusing/difficult were those about threads - I don't have so much experience with threads.
Thank you!
Ioana
[ September 27, 2002: Message edited by: Ioana Danescu ]
[ September 27, 2002: Message edited by: Ioana Danescu ]
22 years ago
Thank you for your good questions!
I'm looking forward for more questions about assertions, maybe using the other form of the statement too?
Thank you, Isabel,
Yes, I made a new java file, I typed again everything and now it works fine.
Thank you! I was also surprised by the compile error.
I have java version "1.4.0_01".
If I change both c and d to be byte:
static double a;
static float b;
static byte c;
static byte d;
then it works and it prints true.
Question number 6:
class Sienna {
static double a;
static float b;
static int c;
static char d;
public static void main(String[] args) {
a = b = c = d = 'a';
System.out.println(a+b+c+d == 4 * 'a');
}
}
What is the result of attempting to compile and run the above program?
a. Prints: true
b. Prints: false
c. Compiler error.
d. Run time error.
e. None of the above.
the answer is Prints: true, but I get a compile error on
a = b = c = d = 'a';
saying 'possible loss of precision, found int require byte', about variable c.
[ August 28, 2002: Message edited by: Ioana Danescu ]