Open In App

Amazon Interview Experience | Set 177 (First Round in Pool Campus)

Today Amazon Took a Pool campus drive, including our college and many other. In which the First round was Online in our campus itself, those selected students would go for further rounds in other campus.

The First Round Was very Standard, first we had to open its Hiring test portal, in which it had 20 MCQ and 2 coding questions, which we had to complete in 1:30 Hrs.
MCQ:



Coding:
1: given 3 Numbers in Linked list, we had to return the Linked List of representing sum of all three, covering all base and condition of addition.

  eg:   for addition of
           234+993+1 :
     input Linked Lists are: 4->3->2->NULL, 3->9->NULL, 1->NULL
     output linked list :  8->2->2->1->NULL 

2: Simple and same Vertical traversal of a BST as given in Geeksforgeeks.org



Article Tags :