[algogeeks] Amazon Online Test

2012-08-16 Thread nick
Hi All, Has anyone appeared for the online test of amazon recently?? if(yes){ Please share with us :) } -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To view this discussion on the web visit

[algogeeks] amazon online test question

2012-08-05 Thread vaibhav shukla
Given a singly linked list with a random pointer pointing to any node(can be even null). Create a clone of the list. node structure can be : struct node { struct node *next; struct node *random;

Re: [algogeeks] amazon online test question

2012-08-05 Thread Prem Krishna Chettri
Wow.. You got this question... Lucky Fellow so easy.. I remember SISO asking such question long back.. its way below Amazon Standard... Basically they want to make Sure U understand the question.. Implementation is jst a copy of the content of the current SLL Node and rewiring the rest. On Sun,

Re: [algogeeks] amazon online test question

2012-08-05 Thread vaibhav shukla
yeah... i got that... just shared with algogeeks ;) questions were somewhat easy On Sun, Aug 5, 2012 at 7:25 PM, Prem Krishna Chettri hprem...@gmail.comwrote: Wow.. You got this question... Lucky Fellow so easy.. I remember SISO asking such question long back.. its way below Amazon Standard...

[algogeeks] Amazon online test

2011-09-23 Thread raju
hi all, can anyone pls share the questions amazon has been asking in online written tests. thanks raju -- 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

Re: [algogeeks] Amazon online test

2011-09-23 Thread siddharth srivastava
Hi On 23 September 2011 17:29, raju nikutel...@gmail.com wrote: hi all, can anyone pls share the questions amazon has been asking in online written tests. Search the archives This has been answered many times in the recent days. Best of Luck thanks raju -- You received this message

Re: [algogeeks] Amazon online test

2011-09-23 Thread Deoki Nandan
1)write code to find first non repeating character in given string 2)write code for image of binary tree 3)swap adjacent nodes of given linked list using one pointer 4)find pair of number in given array whose sum is given 5)write BST(Binary Search Tree) into file and read from file there were 25

[algogeeks] amazon online test format

2011-08-06 Thread nivedita arora
hi, can anyone pls tell whats the format of coding section in amazon online test. is it something like codechef ? is the format of test cases given ? Also, usually we write some part of code/function and test it if its running fine on local system , when it is then we submit at codechef. If it

Re: [algogeeks] amazon online test format

2011-08-06 Thread Atul Verma
it's not like cc format. first they'll ask ur logic and then they see ur code. (no submission process) On Sat, Aug 6, 2011 at 5:45 PM, nivedita arora vivaciousnived...@gmail.comwrote: hi, can anyone pls tell whats the format of coding section in amazon online test. is it something like

Re: [algogeeks] Amazon online test

2011-06-05 Thread venkat kumar
@balaji a can u specify the basic criteria,ie,min.cgpa,required for amazon on campus recruitment, also interview procedure? On Thu, May 26, 2011 at 11:27 PM, balaji a peshwa.bal...@gmail.com wrote: I actually attended on-campus through my college... On 26 May 2011 16:24, jagannath prasad das

Re: [algogeeks] Amazon online test

2011-05-27 Thread balaji a
I actually attended on-campus through my college... On 26 May 2011 16:24, jagannath prasad das jpdasi...@gmail.com wrote: how to register for amazon ol exm .can you plz mention ? On Sun, Apr 24, 2011 at 6:46 PM, balaji a peshwa.bal...@gmail.com wrote: yeah i did.,...there were two section

Re: [algogeeks] Amazon online test

2011-05-27 Thread Supraja Jayakumar
Hi All Is this online test open to all aspirants ie.., is it a screening or only to filtered candidates ? Can I take it as for practice ? Please tell me more about it. Thanks Supraja J On Fri, May 27, 2011 at 12:27 AM, balaji a peshwa.bal...@gmail.com wrote: I actually attended on-campus

Re: [algogeeks] Amazon online test

2011-05-26 Thread jagannath prasad das
how to register for amazon ol exm .can you plz mention ? On Sun, Apr 24, 2011 at 6:46 PM, balaji a peshwa.bal...@gmail.com wrote: yeah i did.,...there were two section Section 1 - some aptitude question + predicting output of a given program + some conceptual question(mainly in OS) Section

[algogeeks] Amazon online test

2011-04-24 Thread JeanGrey
Has anyone attended amazon online test recently ? what will be the type of questions which will be asked? -- 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

Re: [algogeeks] Amazon online test

2011-04-24 Thread balaji a
yeah i did.,...there were two section Section 1 - some aptitude question + predicting output of a given program + some conceptual question(mainly in OS) Section 2- programming section...there were three questions 1)given two sorted linked list u have to return the linked list which is the

Re: [algogeeks] Amazon Online Test

2011-02-23 Thread vinay reddy
U need to construct a binary tree given only PreOrder traversal with the condition that each node has zero or two children. On Wed, Feb 23, 2011 at 10:52 AM, murthy.krishn...@gmail.com murthy.krishn...@gmail.com wrote: hii vinay, can u elaborate the third question thanks, Krishna On

Re: [algogeeks] Amazon Online Test

2011-02-23 Thread murthy.krishn...@gmail.com
thanks vinay :-) On Wed, Feb 23, 2011 at 5:39 PM, vinay reddy gvina...@gmail.com wrote: U need to construct a binary tree given only PreOrder traversal with the condition that each node has zero or two children. On Wed, Feb 23, 2011 at 10:52 AM, murthy.krishn...@gmail.com

Re: [algogeeks] Amazon Online Test

2011-02-23 Thread murthy.krishn...@gmail.com
hii vinay, the prob is we can get many such trees given a preorder traversal with the condition that each node has zero or two children. Please correct me if I am wrong. Thanks, Krishna. On Wed, Feb 23, 2011 at 6:00 PM, murthy.krishn...@gmail.com murthy.krishn...@gmail.com wrote: thanks

[algogeeks] Amazon Online Test

2011-02-22 Thread Anurag Bhatia
Has anyone give any first round online test for Amazon? If yes, can you please share details? --Anurag -- 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

Re: [algogeeks] Amazon Online Test

2011-02-22 Thread vinay reddy
Hi Anurag, I have taken that online test there were 3 questions ... 1. given a linked list check if it is a palindrome. 2.given two sorted arrays a[m] b[2*m], each contains m elements only. You need to merge those two arrays into second array b[2*m] 3. construct a Binary tree from a given

Re: [algogeeks] Amazon Online Test

2011-02-22 Thread murthy.krishn...@gmail.com
hii vinay, can u elaborate the third question thanks, Krishna On Wed, Feb 23, 2011 at 9:34 AM, vinay reddy gvina...@gmail.com wrote: Hi Anurag, I have taken that online test there were 3 questions ... 1. given a linked list check if it is a palindrome. 2.given two sorted arrays a[m]