Open In App

ABCO Interview Experience | Set 5

Round 1

15 Technical Aptitude (predominantly DS), 3 Queries, 2 Coding Question hosted in HackerRank



Round 2 (F2F Technical Interview)

  1. Find the number of rotations in a rotated and sorted array



    https://www.geeksforgeeks.org/find-rotation-count-rotated-sorted-array/amp/

  2. Find the pair of numbers with given sum

    https://www.geeksforgeeks.org/check-if-two-numbers-have-sum-exactly-x/

  3. Check if two nodes are cousins

    www.geeksforgeeks.org/check-two-nodes-cousins-binary-tree/

  4. Assume a round robin tournament of n students in which each student plays every other student exactly once. Arrange the students in such a way that each student is lost to the person to student to his left and won against the person to his right.

    (I suggested a topological sort based solution. The correct approach is to build a BST and followed by Binary Search)

  1. Applications of Inorder, Preorder, Postorder Tree Traversals

  2. Questions on SQL using aggregate functions

    1. Given scores of all the students in each subject, write a single query to find the student ranking 1st in the class

    2. Every student has an entry for each day he came to school, calculate the number of days he came to school

  3. A question was asked if you are ready to work on Business Intelligence tools when filling up the credentials for online round. Why did you choose “yes”?

  4. Why were you rejected in previous companies? Have you rectified your mistakes?

Round 3 (F2F Technical Interview)

  1. Syntax of a select statement in SQL and explain every keyword in it

  2. Discussion on “group by” and “having”

  3. Indexing and types of indexing

  4. Syntax to create index

CREATE INDEX index_name ON table_name (column1column2, …);

  1. Various ways by which kth smallest element can be found

https://www.geeksforgeeks.org/kth-smallestlargest-element-unsorted-array/

  1. List all the Data Structures you know and suggest an application in the computer science field

  2. Greatest Achievement in your life

Round 4 (HR Interview)

  1. Why CSE? Why PSG?

  2. Why ABCO?

  3. How do you see yourself after 5 years?

  4. Why won’t you do higher studies?

  5. Family Background

Also Remember

 

 

Article Tags :