Re: [algogeeks] need help??

2012-09-22 Thread Rohit Singhal
the very best book...no doubt..Khalid Mughal.

On Sat, Sep 22, 2012 at 2:10 PM, Ravi Ranjan ravi.cool2...@gmail.comwrote:

 khalid mugal - A Programmers guide to Java certification

 --
 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.




-- 
Rohit Singhal
09211931609

-- 
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] JAVA PROGRAM ERROR

2012-08-21 Thread Rohit Singhal
what error it is showing

On Wed, Aug 22, 2012 at 12:41 AM, Rajesh Kumar testalgori...@gmail.comwrote:

 class StringTimes
 {
 public static void main(String args[])
 {
 String str=Hi;
 long i=2;
 String get;
 get=stringTimes(str,i);
 System.out.println(get);
 }
 public static String stringTimes(String str,long x)
 {
   int i;
  String set=str;
  for(i=0;in-1;i++)
  {
  set+=str;
  }
  return set;
 }
 }

 OUTPUT should be like:HiHi

 but it gives error plz someone help me
 --
 Regards
 Rajesh Kumar


  --
 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.




-- 
Rohit Singhal
09211931609

-- 
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] DE shaw question- urgent

2011-09-06 Thread ROHIT SINGHAL
due to this singleton class i lost 6.5 lpa opportunity :( in Hcentive noida

On Tue, Sep 6, 2011 at 12:58 PM, rahul vatsa vatsa.ra...@gmail.com wrote:

 there is no restriction at all, you can create n no of objects. A member
 function can call a private constructor any number of times.

 Just 1 single object is created bcoz this is the property of singleton
 class.
 A singleton class is a class which ensures the class has only one instance
  it provides a global point of access to it.  that it provides through a
 public static member function.
 This member function when invoked , first checks if the single instance has
 already been create, if yes it doesn't create a new 1, it gives you back the
 already created one, so even if you call it multiple times, you get the same
 object. nd thatz basically the intent behind.

 If you want to have more than one objects, you can modify this member
 function  can do that.




 On Mon, Sep 5, 2011 at 12:45 PM, Neha Singh neha.ndelhi.1...@gmail.comwrote:

 Guys hv a doubt, plz clarify ..
 You mentioned that if a class has a private constructor then the object of
 that class can be created using call to a static method which internally
 calls the constructor and returns its reference. I can't understand why only
 1 object can be created as mentioned by you. As in, we can call the static
 method multiple times and create multiple objects..

 --
 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.




-- 
Regards:
Rohit Singhal

-- 
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] DE shaw question- urgent

2011-09-06 Thread ROHIT SINGHAL
:) thanks for such gud words guys

On Tue, Sep 6, 2011 at 2:47 PM, sukran dhawan sukrandha...@gmail.comwrote:

 ya dont be upset if some one who is not as good as u get a job and u don
 get it ... think positively ... think that the company don deserve u and
 start working on ur weak areas

 On Tue, Sep 6, 2011 at 2:34 PM, siddharam suresh 
 siddharam@gmail.comwrote:

 my personal experience.
 guys don't regret while placements,
 it wont bring any work-ability in the preparation.
 always look for what was missing in the last interview, prepare well.

 I didnt prepare because of the initial failure in the placements(ended up
 where i did not planed). I wish that wont happen with anybody.

 Thank you,
 Sid.



 On Tue, Sep 6, 2011 at 2:19 PM, rahul vatsa vatsa.ra...@gmail.comwrote:

 :D
 may be u lost this to gt something better :-)


 On Tue, Sep 6, 2011 at 4:32 AM, ROHIT SINGHAL rohitksingha...@gmail.com
  wrote:

 due to this singleton class i lost 6.5 lpa opportunity :( in Hcentive
 noida


 On Tue, Sep 6, 2011 at 12:58 PM, rahul vatsa vatsa.ra...@gmail.comwrote:

 there is no restriction at all, you can create n no of objects. A
 member function can call a private constructor any number of times.

 Just 1 single object is created bcoz this is the property of singleton
 class.
 A singleton class is a class which ensures the class has only one
 instance  it provides a global point of access to it.  that it provides
 through a public static member function.
 This member function when invoked , first checks if the single instance
 has already been create, if yes it doesn't create a new 1, it gives you 
 back
 the already created one, so even if you call it multiple times, you get 
 the
 same object. nd thatz basically the intent behind.

 If you want to have more than one objects, you can modify this member
 function  can do that.




 On Mon, Sep 5, 2011 at 12:45 PM, Neha Singh 
 neha.ndelhi.1...@gmail.com wrote:

 Guys hv a doubt, plz clarify ..
 You mentioned that if a class has a private constructor then the
 object of that class can be created using call to a static method which
 internally calls the constructor and returns its reference. I can't
 understand why only 1 object can be created as mentioned by you. As in, 
 we
 can call the static method multiple times and create multiple objects..

 --
 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.




 --
 Regards:
 Rohit Singhal


  --
 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.


  --
 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.




-- 
Regards:
Rohit Singhal

-- 
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] elitmus test

2011-08-26 Thread ROHIT SINGHAL
its been a while tat i had gave test bt i remebr quant was full of geometry
application so clear ur concept for geometry. and in logical they give this
kinda alphanumeric prob. my advice in quant and logical correct 3-4
questions out of 20 each u gonna get a gud percentile. for sure.

On Fri, Aug 26, 2011 at 10:59 AM, prateek gupta prateek21590gu...@gmail.com
 wrote:

 prepare well for di,
 quant and va are easy but di is really hard.
 1 ques that often appears in their test is
  ABC
  *   EFG
 -
  7JK
L4N
 PQR
 ---
 ---
 some conditions will be given and you have to find which number does a
 particular character given in ques represents.
  On Thu, Aug 25, 2011 at 9:49 AM, prasanna rockslife2...@gmail.comwrote:

 Hi
 Whosoever have taken the elitmus test, pls share the type of questions
 asked in the test.

 --
 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.




-- 
Regards:
Rohit Singhal

-- 
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] elitmus test

2011-08-24 Thread ROHIT SINGHAL
well i got 85 % in that. Its lil tricky test u need to clear ur geometry
skills for quant and prepare DI properly for logical portion.

On Thu, Aug 25, 2011 at 9:49 AM, prasanna rockslife2...@gmail.com wrote:

 Hi
 Whosoever have taken the elitmus test, pls share the type of questions
 asked in the test.

 --
 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.




-- 
Regards:
Rohit Singhal

-- 
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] Elitmus test Help

2011-08-24 Thread ROHIT SINGHAL
i guss CAT se bhi zyada diff hai Elitmus.

On Thu, Aug 25, 2011 at 12:56 AM, Khyati Gupta khyatigupt...@gmail.comwrote:

 Any body has sample paper of E-lithmus


 On Thu, Aug 25, 2011 at 12:17 AM, Abhishek Sharma 
 jkabhishe...@gmail.comwrote:

 similar to CAT though the level is little low... no technical questions
 are asked..


 On Wed, Aug 24, 2011 at 11:50 PM, Akanksha . akanksha...@gmail.comwrote:

 It is  a general aptitude test.. they ask u ques on quant, verbel n
 problems solving skills.. prepare well if u r planning to take this
 test as ques r tough..

 On Wed, Aug 24, 2011 at 11:45 PM, rohit rajuljain...@gmail.com wrote:
  Is anybody have any idea about pattern of elitmus test , Is It a C
  programming test or General aptitude test?
 
  --
  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.




 --
 Khyati Gupta

 --
 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.




-- 
Regards:
Rohit Singhal

-- 
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] Ebay Recruitment

2011-08-18 Thread ROHIT SINGHAL
Guys i m going to appear for ebay any question set or any kinda help for the
same

-- 
Regards:
Rohit Singhal

-- 
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] Ebay Recruitment

2011-08-18 Thread ROHIT SINGHAL
ebay job location- chennai

On Thu, Aug 18, 2011 at 11:28 PM, Swathi chukka.swa...@gmail.com wrote:

 Is it ebay or paypal? Job location?

 On Thu, Aug 18, 2011 at 11:26 PM, ROHIT SINGHAL rohitksingha...@gmail.com
  wrote:

 Guys i m going to appear for ebay any question set or any kinda help for
 the same

 --
 Regards:
 Rohit Singhal

  --
 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.




-- 
Regards:
Rohit Singhal

-- 
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] Ebay Recruitment

2011-08-18 Thread ROHIT SINGHAL
@siva thanks bro for info.
@rahul thru Amcat so its offcampus tey given call to specific students

On Fri, Aug 19, 2011 at 1:12 AM, Rahul Tiwari rahultiwari6...@gmail.comwrote:

 @rohit singhal
 off-campus or on-campus ?
 if on-campus ---mention ur college plz 






 --
 Rahul Tiwari aka   DONE 
 B Tech Final Year
 Information Technology
 Motilal Nehru National Institute of Technology , Allahabad
 9838339030

  --
 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.




-- 
Regards:
Rohit Singhal

-- 
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] Brain Teaser

2010-11-11 Thread Rohit Singhal
1 5 2 6

- - - - - -

3 7 4 8

On Thu, Nov 11, 2010 at 3:16 PM, Abhilasha jain mail2abhila...@gmail.comwrote:

 solution is
 5 1 6 2
 _ _ _ _

 7 3 8 4


 On Thu, Nov 11, 2010 at 1:26 PM, Amod gam...@gmail.com wrote:

 We have a rectangle
 It is divided in eight parts by three vertical and one horizontal line



 so that there are 8 chambers.
 Now we have numbers from 1-8 to be filled in these chambers.
 Rule : No two consecutive numbers must be present either side to side
 or diagonal
 Invalid situation example
 Given 5 at position 2 then 4 cannot occur at any of the give position.
 4 5 4
 _ _ _ _

 4 4 4
 _ _ _ _

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algoge...@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.comalgogeeks%2bunsubscr...@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 algoge...@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.comalgogeeks%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
Rohit Singhal
B.Tech. Part-IV,
Department Of Electronics Engineering,
Centre of Advanced Studies,
Institute Of Technology, BHU

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algoge...@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] Re: programming contest

2008-11-16 Thread Rohit Singhal
so when is the contest starting?

On 11/16/08, tania hamid [EMAIL PROTECTED] wrote:

 yah sure. Its a gud idea...:)

 On Sat, Nov 15, 2008 at 10:56 PM, sharad kumar [EMAIL PROTECTED]wrote:


 hi guys
 this is ur manager.
 i taut i would ike to ask ur sugeestion about conducting a virtual
 contest
 similar to srm and code jam for algos .wat do u say




 --
 Tania Hamid
 Computer Science and Engineering
 National Institute of Technology
 Durgapur


 



-- 
Rohit Singhal
B.Tech. Part-IV,
Department Of Electronics Engineering,
Centre of Advanced Studies,
Institute Of Technology, BHU

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/algogeeks
-~--~~~~--~~--~--~---