Tip 1 : DSA is the key basic and medium level of DSA is must which includes stack, queue, Linked-list, trees and DP
Tip 2 : Other than DSA a good knowledge of OPPs and DBMS is required (you can prepare OPPs in same language as of your DSA link C++, JAVA, Python etc).
Tip 3 : Try to save some time by going through interview questions for small topics like networking, operating system and even for your training technology
Tip 4 : Have a good clarity of your project and 2+ projects is considered as an advantage
Tip 1 : Write what you are please do not mention any false details less information is far better than false once.
Tip 2 : Try to build a single-page resume with better readability.
Tip 3 : Must mention Duration and your role in projects and internships.
3 DSA questions with 1.5 hours time in total.
the level was medium for all the 3 questions.
One has to clear all test cases in order to clear the round.



1.’Left’ and ‘Right’ both are inclusive in the range ‘Left’ to ‘Right’.
‘Left’ = ‘23’ and ‘Right’ = ‘37’

All prime numbers from ‘23’ to ‘37’ are 23, 29, 31, 37
23 is ‘megaprime’ number because ‘2’ and ‘3’ both are prime
29 is not ‘megaprime’ number because ‘9’ is not a prime
31 is not a ‘megaprime’ number because ‘1’ is not a prime number
37 is ‘megaprime’ number because ‘3’ and ‘7’ both are prime numbers
Hence there are two ‘megaprime’ numbers 23, 37 out of 23, 29, 31, 37.
It was an easy problem solved with brute force.



simple DSA and brute force.



A substring is a contiguous sequence of elements within a string (for example, “bcd” is a substring of “abcde” while “bce” is not).
A string is said to be palindrome if the reverse of the string is the same as the actual string. For example, “abba” is a palindrome, but “abbc” is not a palindrome.
Simple algo
There were 2 interviewers both were very supportive
the main focus of this round was on DSA and DBMS
Write an SQL query for finding the second-largest salary from the given table.
From the given string return the Uppercase characters, Lowercase characters, and Numerical characters present in it.
Tip 1 : Do practice for SQL queries.
Tip 2 : Do prepare syntax for DSA
Tip 3 : have a transparency in your answers saying "I don't know this" is fine rather than giving a wrong answer
There were 2 interviewers both were very supportive
the main focus of this round was on DSA and DBMS
Define Transaction.
Difference between C++ and Java
Why is Java better than C++
Given a tree, give its preorder, postorder and inorder traversal
What is Graph
What is Heap
How to implement Queue using Stack
Define Hashing
Difference between interface and abstract class.
Define interface
Define garbage collection.
Tip 1 : Do prepare syntex for DSA
Tip 2 : Have transparency in your answers saying "I don't know this" is fine rather than giving a wrong answer
Final HR round just for a basic introduction and package discussion
Just a basic introduction.
Asked my strengths and weaknesses.
Tip 1 : Feel good
Tip 2 : You are selected now

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?