Company Name: Amazon Interview Location: Hyderabad I would like to share my "Amazon" Interview Experience Written Test has 2 Sections A, B In Section A there were 20 Questions: Technical Questions: 15 Aptitude: 5 Time: 30 min The first round was online, It had 20 Multiple choice questions and 2 coding, MCQ’s where quite simple, Technical where easy it had questions on finding the Output, Complexity, and more importance was in Data Structure, and especially TREE. Some Sample Questions 1.Two tables emp(empid,name,deptid,sal) and dept(deptid,deptname) are there.write a query which displays empname,corresponding deptname also display those employee names who donot belong to any dept. 2.Display the employees whose salary is less than average salary. 3.what is the output of the program main() { int c=5; printf("%d %d %d",c,c<<2,c>> 2); } 4. main() { int a[8][10],c=0,i,j; for(i=0;i...