Tip 1 : Never leave any topic from any chapter or subject
Tip 2 : Learn to explain your thoughts well
Tip 3 : Learn from previous experiences / interviews / problems asked.
Tip 4 : At least have 4 projects in Resume
Tip 1 : At least have 4 projects on Resume
Tip 2 : Do not write false things. You always get caught. Be genuine.
Had to solve 2 easy coding problems. Could be solved in 25 minutes if you are well prepared with DS-Algo.



Let there be three jobs ‘A’, ‘B’, and ‘C’-
•Profit and deadline associated with job ‘A’ being 20 and 1.
•Profit and deadline associated with job ‘B’ being 30 and 2.
•Profit and deadline associated with job ‘C’ being 40 and 2.
We will perform job ‘C’ at time t = 1 and job ‘B’ at time t = 2. The total profit will be 70. There is no other sequence of jobs which can fetch us a better overall profit.
I used maxheap to keep track of max element [(frequency, taskname),...] and queue to keep track of used elements [(time last used, (frequency, taskname)),...] I used t as current time. I removed max from heap, added max to result , updated the timestamp and pushed to queue each time Then I checked from queue if I could use it based on timestamp, if yes I pushed to heap and repeated above step again




Hint: DFS on matrix
I had solved this problem before. Didn't require much thinking on the spot. Always prepare company archives.
Questions on Computer science subjects like OS, DBMS, OOP
What is virtual class in OOP?
Questions on Data Abstractions and polymorphism
Tip 1 : Do not use bookish language
Tip 2 : Use examples
Tip 3 : Be to the point
Questions on types of memories
Tip 1 : Do not use bookish language
Tip 2 : Use examples
Tip 3 : Be to the point
General Discussion on Resume, some in depth questions on a project of interviewer's choice.
Web development based questions, server-client questions and some questions on javascript.
Tip 1 : Do not use bookish language
Tip 2 : Use examples
Tip 3 : Be to the point

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