sushi nair

Greenhorn
+ Follow
since Nov 21, 2005
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 sushi nair

I wish all the members of this group a very
BIG THANKS,,,,and a
BIGGER THANKS to BERT,,,,,and a
BIGGEST THANKS to KATHY for creating this site.........

Well as a fresher i took up the exam today and i scored 78%,,i dont know whether this score is a sufficient one or not,any way i am happy.

I just like to tell that "Things which seem easy are more difficult to get than which are tough" yes the exam is not so tough which u see in the mock exams.Then dont just study only from the point of exam,understand the cocepts this helps in ur future.

Well it took me arround 2 1/2 months to prepare,i first studied khalid fully and then studied k&B book fully 2-3 times and also was taking mock exams available freely on net.Dont be deppresed by scoring low in mock exams, instead go through the wrong ones and see how it works.

Hope this will help u freshers a lot........and above all................Believe in God....................................
18 years ago
I wish all the members of this group a very
BIG THANKS,,,,and a
BIGGER THANKS to BERT,,,,,and a
BIGGEST THANKS to KATHY for creating this site.........
Well as a fresher i took up the exam today and i scored 78%,,i dont know whether this score is a sufficient one or not,any way i am happy.
I just like to tell that "Things which seem easy are more difficult to get than which are tough" yes the exam is not so tough which u see in the mock exams.Then dont just study only from the point of exam,understand the cocepts this helps in ur future.
Well it took me arround 2 1/2 months to prepare,i first studied khalid fully and then studied k&B book fully 2-3 times and also was taking mock exams available freely on net.Dont be deppresed by scoring low in mock exams, instead go through the wrong ones and see how it works.
Hope this will help u freshers a lot........and above all................Believe in God....................................
18 years ago
hai all,iam a new member to this group,but a long time reader of this group.... i have a small query,i need a little bit of explanation..hope u all will respond.....well
my query is in the first prg method(a) passes value i.e "a=0" and in the method a is incremented.well! when it prints, it prints 0.ie there is no change but in the second prg the changes made will reflect back and it prints "j=4".There is a small dout about this,if u could please tell me.


/*prg 1:***************************************************/
public class est
private static int a;
public static void main(String [] args) {
modify(a);
System.out.println(a);
}
public static int modify(int a)
{
return a++;
}
}

/**************************************************/



/prg2:&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/

public class est
{
private static int j = 0;
private static boolean methodB(int k)
{
j += k;
return true;
}

public static void methodA(int i)
{
boolean b;
b = i < 10 | methodB (4);
b = i < 10 || methodB (8);
}

public static void main (String args[])
{
methodA (0);
System.out.println(j);
}
}