meire afe

Greenhorn
+ Follow
since Mar 18, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by meire afe

I'll love to have a free copy of your book. I am preparing to take the SCWCD cetifucation and i need all the book resources i can get. I would appreciate if you can supply any tips on passing the exam
meire
I'll love to have a free copy of your book. I am preparing to take the SCWCD cetifucation and i need all the book resources i can get. I would appreciate if you can supply any tips on passing the exam
meire
I am trying to walk through the J2EE tutorial on sun's site but cant seem to get the required applications working properly. I have downloaded j2ee as well as the ant utility and set the variables as described but dont know what i am doing wrong or what do i do next. I am in the process of building and runing the examples but the system doesn't seem to recognise j2ee and ant
Is there a simplier site that can breakdown the installation process so i know where i went wrong?
Can you outline the installation process in simplier terms for me?
I know i am asking alot but this is a really green horn
Thanks
Meire
Thanks Shiv hari.
21 years ago
can someone answer this question and give an explanation?
interface I
{
int i = 1, ii = Test.out("ii", 2);
}
interface J extends I
{
int j = Test.out("j", 3), jj = Test.out("jj", 4);
}
interface K extends J
{
int k = Test.out("k", 5);
}
class Test
{
public static void main(String[] args) { System.out.println(K.j); }
public static int out(String s, int i)
{
System.out.println(s + "=" + i);
return i;
}
}
What will be the output when class Test is run ?
21 years ago
can someone explain in simple terms about streams, readers and writers.
21 years ago