Tip 1 : Practice atleast 200 leetcode easy to medium level questions
Tip 2 : Take part in hackathon to learn time management during coding test
Tip 3 : Make 2-3 good projects
Tip 1 : It should be ATS friendly
Tip 2 : Do not be repetitive
Tip 3 : Be confident about techs you mention on your resume



You can use any string of A multiple times.
A =[“coding”, ”ninjas”, “is”, “awesome”] target = “codingninjas”
Ans = true as we use “coding” and “ninjas” to form “codingninjas”



1. The given graph may have self-loops and parallel edges.
Consider ‘N’ = 4, ‘EDGES’ = [[0, 1], [0, 3], [1, 2], [3, 2]], ‘SRC’ = 0 and ‘DEST’ = 2. The given directed graph is shown below.

Here, all the paths that start from node 0 are -:
1. 0->1->2
2. 0->3->2
Both of these paths eventually end at node ‘2’ i.e node ‘DEST’. Thus we should return True.



A subsequence of an array/list is obtained by deleting some number of elements (can be zero) from the array/list, leaving the remaining elements in their original order.



1. Both STR and PTR consist of English uppercase letters.
2. Length of string 'STR' will always be greater than or equal to the length of string ‘PTR’.
3. In case, there is no anagram substring, then return an empty sequence.
4. In case of more than one anagrams, return the indices in increasing order.
First half of the interview was based on DBMS, OS and some puzzles. Second half was dedicated to projects related questions.
1. SQL query to find second highest salary?
2. Join questions
3. Write a query to find the Nth highest salary from the table without using TOP/limit keyword.
Tip 1 : Do Top 30 SQl questions from edureka https://www.edureka.co/blog/interview-questions/sql-query-interview-questions
1. Camel and Banana Puzzle
2. Tell me about the projects you worked on
3. Asked me some questions related to my projects
Tip 1 : Do Top 20 Puzzles Commonly Asked During SDE Interviews
Tip 2 : Be confident about everything you mention on your resume
1. Tell me your biggest strength and weakness
2. Why do you want to join our company?
3. What will you do if someone in your team is not contributing to the project at all?
Tip 1 : Be prepared with HR questions and don't be negative in your answers

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the output of print(type("Python"))?