[algogeeks]

2011-09-04 Thread mani walia
ph elitmus test??


what is that??

and how to prepare for that??


can anyone provide me with good sources for preparation??  please

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] very urgent .. help

2011-09-04 Thread mani walia
ph elitmus test??


what is that??

and how to prepare for that??


can anyone provide me with good sources for preparation??  please

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] informatica

2011-08-29 Thread mani walia
can anyone tell me about their procedure and written test .. plz

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: PLz help urgent

2011-08-26 Thread mani walia
i also want to know buddy.. if u knw thn help me buddy

On Thu, Aug 25, 2011 at 11:01 PM, vivek vivek.thapar2...@gmail.com wrote:

 hello  buddy...hows u...american express
 also cuming to our campus,..have u got any info abt its
 technical written and apti written test that questions mainly comes from
 whch technical subject and whch portions of aptitude...
 pls  help me buddy

 its very urgent..

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/algogeeks/-/AZssvRAIlA8J.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] AMERICAN EXPRESS

2011-08-26 Thread mani walia
Guys american express coming to our college for training.

Plz anyone who  has faced the written test and procedure.. please share
their views.. it wud be helpful for us..

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] PLz help urgent

2011-08-23 Thread mani walia
Guys american express coming to our college for training.

Plz anyone who  has faced the written test and procedure.. please share
their views.. it wud be helpful for us..



thnks.

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] c programe explain

2011-08-21 Thread mani walia
output :  interview

reason

in main  ii gets a value 7 thru the statement (ii+ (++j))  --  (1+6)

so we pass(7 campus interview)  which will be treated as

7[base address of campus interview]   which further means

*( base address of campus interview   + 7)

and so the output  interview


am i clear?





On Sun, Aug 21, 2011 at 10:50 PM, SuDhir mIsHra
sudhir08.mis...@gmail.comwrote:

 funct(char* str)
 {
 printf(%s\n,str);
 }
 main()
 {
 static int ii = 1;
 int jj = 5;
 ii+=++jj;
 funct(ii+++Campus Interview);
 }

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] c programe explain

2011-08-21 Thread mani walia
output :  interview

reason

in main  ii gets a value 7 thru the statement (ii+ (++j))  --  (1+6)

so we pass(7 campus interview)  which will be treated as

7[base address of campus interview]   which further means

*( base address of campus interview   + 7)

and so the output  interview


am i clear?

On Sun, Aug 21, 2011 at 10:56 PM, Puneet Chawla
puneetchawla...@gmail.comwrote:

 We are converting const char* into char * here


 On Sun, Aug 21, 2011 at 10:55 PM, Puneet Chawla puneetchawla...@gmail.com
  wrote:

 how..???


 On Sun, Aug 21, 2011 at 10:53 PM, Sanjay Rajpal srn...@gmail.com wrote:

 the o/p wil be Interview.



 Sanju
 :)



 On Sun, Aug 21, 2011 at 10:20 AM, SuDhir mIsHra 
 sudhir08.mis...@gmail.com wrote:

  funct(char* str)
 {
 printf(%s\n,str);
 }
 main()
 {
 static int ii = 1;
 int jj = 5;
 ii+=++jj;
 funct(ii+++Campus Interview);
 }

 --
 You received this message because you are subscribed to the Google
 Groups Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 With regards
   
 Puneet Chawla
 Computer Engineering Student
 NIT Kurukshetra




 --
 With regards
   
 Puneet Chawla
 Computer Engineering Student
 NIT Kurukshetra

  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] VERY URGENT .. PLZ HELP

2011-08-20 Thread mani walia
ORACLE COMING TO OUR COLLEGE FOR TRAINING...

CAN ANYONE FROM THIS GROUP TELL ME ABOUT HOW TO PREPARE FOR THAT?

I WILL BE REALLY THANKFUL TO THAT PERSON..

PLEASE HELP ME..





THANKS
MANI

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] VERY URGENT .. PLZ HELP

2011-08-20 Thread mani walia
yeah


On Sat, Aug 20, 2011 at 11:33 AM, sukran dhawan sukrandha...@gmail.comwrote:

 for training ?

 On Sat, Aug 20, 2011 at 11:32 AM, mani walia manis...@gmail.com wrote:

 ORACLE COMING TO OUR COLLEGE FOR TRAINING...

 CAN ANYONE FROM THIS GROUP TELL ME ABOUT HOW TO PREPARE FOR THAT?

 I WILL BE REALLY THANKFUL TO THAT PERSON..

 PLEASE HELP ME..





 THANKS
 MANI

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] VERY URGENT .. PLZ HELP

2011-08-20 Thread mani walia
no they are not asking for money , even they are providing gud stipend and
if performance is good , then we can get the PPO.

please help me regarding that , i dnt want to let that opportunity go..
please help

On Sat, Aug 20, 2011 at 11:43 AM, Rahul raikra...@gmail.com wrote:

 dude ,are they asking for money , if they are then they might not ask
 even questions .

 On 8/20/11, mani walia manis...@gmail.com wrote:
  yeah
 
 
  On Sat, Aug 20, 2011 at 11:33 AM, sukran dhawan
  sukrandha...@gmail.comwrote:
 
  for training ?
 
  On Sat, Aug 20, 2011 at 11:32 AM, mani walia manis...@gmail.com
 wrote:
 
  ORACLE COMING TO OUR COLLEGE FOR TRAINING...
 
  CAN ANYONE FROM THIS GROUP TELL ME ABOUT HOW TO PREPARE FOR THAT?
 
  I WILL BE REALLY THANKFUL TO THAT PERSON..
 
  PLEASE HELP ME..
 
 
 
 
 
  THANKS
  MANI
 
  --
  You received this message because you are subscribed to the Google
 Groups
  Algorithm Geeks group.
  To post to this group, send email to algogeeks@googlegroups.com.
  To unsubscribe from this group, send email to
  algogeeks+unsubscr...@googlegroups.com.
  For more options, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.
 
 
   --
  You received this message because you are subscribed to the Google
 Groups
  Algorithm Geeks group.
  To post to this group, send email to algogeeks@googlegroups.com.
  To unsubscribe from this group, send email to
  algogeeks+unsubscr...@googlegroups.com.
  For more options, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.
 
 
  --
  You received this message because you are subscribed to the Google Groups
  Algorithm Geeks group.
  To post to this group, send email to algogeeks@googlegroups.com.
  To unsubscribe from this group, send email to
  algogeeks+unsubscr...@googlegroups.com.
  For more options, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.
 
 


 --
 Rahul

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] help

2011-08-20 Thread mani walia
ORACLE COMING TO OUR COLLEGE FOR TRAINING...

CAN ANYONE FROM THIS GROUP TELL ME ABOUT HOW TO PREPARE FOR THAT?

I WILL BE REALLY THANKFUL TO THAT PERSON..

PLEASE HELP ME..

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] VERY URGENT .. PLZ HELP

2011-08-20 Thread mani walia
Guys suggest me some topics , some sites , some stuffs and watever known to
the best of ur knowledge ,  it will be helpful for me

On Sat, Aug 20, 2011 at 11:47 AM, mani walia manis...@gmail.com wrote:

 no they are not asking for money , even they are providing gud stipend and
 if performance is good , then we can get the PPO.

 please help me regarding that , i dnt want to let that opportunity go..
 please help


 On Sat, Aug 20, 2011 at 11:43 AM, Rahul raikra...@gmail.com wrote:

 dude ,are they asking for money , if they are then they might not ask
 even questions .

 On 8/20/11, mani walia manis...@gmail.com wrote:
  yeah
 
 
  On Sat, Aug 20, 2011 at 11:33 AM, sukran dhawan
  sukrandha...@gmail.comwrote:
 
  for training ?
 
  On Sat, Aug 20, 2011 at 11:32 AM, mani walia manis...@gmail.com
 wrote:
 
  ORACLE COMING TO OUR COLLEGE FOR TRAINING...
 
  CAN ANYONE FROM THIS GROUP TELL ME ABOUT HOW TO PREPARE FOR THAT?
 
  I WILL BE REALLY THANKFUL TO THAT PERSON..
 
  PLEASE HELP ME..
 
 
 
 
 
  THANKS
  MANI
 
  --
  You received this message because you are subscribed to the Google
 Groups
  Algorithm Geeks group.
  To post to this group, send email to algogeeks@googlegroups.com.
  To unsubscribe from this group, send email to
  algogeeks+unsubscr...@googlegroups.com.
  For more options, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.
 
 
   --
  You received this message because you are subscribed to the Google
 Groups
  Algorithm Geeks group.
  To post to this group, send email to algogeeks@googlegroups.com.
  To unsubscribe from this group, send email to
  algogeeks+unsubscr...@googlegroups.com.
  For more options, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.
 
 
  --
  You received this message because you are subscribed to the Google
 Groups
  Algorithm Geeks group.
  To post to this group, send email to algogeeks@googlegroups.com.
  To unsubscribe from this group, send email to
  algogeeks+unsubscr...@googlegroups.com.
  For more options, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.
 
 


 --
 Rahul

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] output

2011-08-11 Thread mani walia
this is the question in de shaw written test

On Thu, Aug 11, 2011 at 11:48 PM, Anika Jain anika.jai...@gmail.com wrote:

 this code has so many errors

 On Thu, Aug 11, 2011 at 11:36 PM, manvir siyo manis...@gmail.com wrote:

  output of the program?

 #define prn(a) printf(%d,a)
 #define print(a,b,c) prn(a), prn(b), prn(c)
 #define max(a,b) (a

 main()
 {
 int x=1, y=2;
 print(max(x++,y),x,y);
 print(max(x++,y),x,y);
 }

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.