Tip 1 : Practice quality questions on leetcode.
Tip 2 : Learn some basics of system design as it will be asked in big tech companies and startups as well.
Tip 3 : Don't fear interviewers. Always keep this mindset that they are there to recruit you not reject you.
Tip 4 : Must have at least 1 project and you should know how it works.
Tip 1 : Having at least 1 project in resumw
Tip 2 : resume should be one page only strictly
Tip 3 : Put some achievements like you got a good rank in a coding contest help youy to stand out
It was in the afternoon time.
It was conducted in the computer lab of our college and the interviewer were there to ensure no unfair means take place



String 'S' is NOT case sensitive.
Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.


At each level we have to put the nodes into a array and we have to find the minimum swaps required to sort it.
Morning time 8 am.
Interviewer was the CTO of the Byju's (Akash)
Abouts OOPs.
Polymorphism.
Operator overloading.
Overloading vs overriding


You can’t engage in multiple transactions simultaneously, i.e. you must sell the stock before rebuying it.
Input: N = 6 , PRICES = [3, 2, 6, 5, 0, 3] and K = 2.
Output: 7
Explanation : The optimal way to get maximum profit is to buy the stock on day 2(price = 2) and sell it on day 3(price = 6) and rebuy it on day 5(price = 0) and sell it on day 6(price = 3). The maximum profit will be (6 - 2) + (3 - 0) = 7.
Just like any other DP problem, we can start with a subproblem, and a subproblem here is determining the maximumProfit when k=1, k=2,... all the way to when k=k.
If we can do at most k transactions, it means that we can do (2 * k) operations .
For example,
For prices [3,2,6,5,0,3]
And for k = 2, we can perform only four operations (two buys and two sells) for maximum profit.
Discussion about my project and internship
Evening time 4 pm
Interviewer was one of the senior member of the company.
Interviewer introduced himself and asked the same from me.
Asked about my previous round and then about my internship and project
Asked to design the database of my project and lastly asked a coding question
Abut my internship and project
Asked to design the database of my project.
If you have done the project then only you can able to design it.
Asked about primary key.
Which normal form is the data is.
About joins




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?