Panda Guru LogoPanda
Guru

Oracle | Application Developer | July 2024

Round 1

Questions:

  1. Easy level SQL question: Finding the employee with the highest salary in each department.
  2. DSA question (medium): N horses problem, similar to the N queen problem.
  3. DSA question (medium): If n is odd, then n = 3n + 1; if n is even, then n = n / 2. The rank of number n is how many steps it will take for the given n to become 4. (Example: n = 10 → 10 → 5 → 16 → 8 → 4, total 4 steps). Given a range from 1 to N, find the number with the maximum rank.
  4. Two more easy DSA questions related to arrays, solved using frequency count (details not remembered).
  5. A few HR questions.
Candidate's Approach

No approach provided.

Interviewer's Feedback

No feedback provided.


Round 2

Questions:

  1. Implementation of a sorted circular singly linked list. Asked to write functions for insertion, deletion, and searching.
  2. Printing a pyramid:
1 1 2 1 1 3 4 3 1 1 4 7 8 7 4 1
Candidate's Approach

No approach provided.

Interviewer's Feedback

No feedback provided.


Round 3

Questions:

  1. Find the next greater element using a stack.
  2. Merge sort implementation.
  3. Question on arrays using prefix sum (exact question not remembered).
Candidate's Approach

No approach provided.

Interviewer's Feedback

No feedback provided.