Tip 1 : Be prepared with whatever mentioned in your Resume
Tip 2 : Be prepared with your Projects
Tip 1 : Describe the technologies, on which you have worked
Tip 2 : Provide your coding platform links
50 MCQ questions based on Core Fundamentals subjects like OS, DBMS and Computer Networks. 1 Coding Question and 1 SQL Question



A substring is a contiguous segment of a string.
This Problem was based on dynamic Programming where I use consider 3 cases - one for single chars, one for double chars and other was for remaining ones.
Write a SQL query to fetch records of employees who joined after January 2005 and are having a pay greater than 25000.
Practice SQL Queries
Asked 2 Coding question


The given linked list is 1 -> 2 -> 3 -> 2-> 1-> NULL.
It is a palindrome linked list because the given linked list has the same order of elements when traversed forwards and backward.
Can you solve the problem in O(N) time complexity and O(1) space complexity iteratively?
Not a tough Problem, I divide Linked list in 2 parts from middle and reverse 1 part and then compare both of them


I told 2 approaches one is simple to iterate through every index of the matrix and the other is using 2 pointer Approach
This round is basically based on OOPS Concepts of C++, JavaScript and React based questions as I did project on them, and lot of Questions of OS, CN, DBMS.



1. There will be no leading zeros in any string in the list ‘BINARYNUMS’.
Consider N = 5 and the list ‘binaryNums’= [“0”, “01”, “010”, “100”, “101”]. This list consists of the binary representation of numbers [0, 1, 2, 4, 5]. Clearly, the missing number is 3 and its binary representation will be “11”. So you should return string “11”.
I told 3 Approaches : One was using extra Space by creating an vector Array, other is using xor and last one was by calculating Sum.
It was a basic HR Round
Just stay confident and remain calm.
Reply with a smile

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?