Tip 1 : Do at least 1 proper working project to showcase in interview
Tip 2 : Study basic concepts from core CS subjects as they are frequently asked
Tip 3 : Solve as many coding questions as you can for practice
Tip 1 : Have a good project in your resume and understand it thoroughly to answer the questions
Tip 2 : Put only those things in your resume on which you can handle questions
There was an online coding test conducted on HakerRank platform in morning. It had two coding questions and the time limit was 90 minutes.



If all characters of one string are printed and some characters of other string are remaining, then you have to print the remaining characters of the other string at the end of the resulting string.
Can you solve the problem in O(N) time complexity and O(1) space complexity?
A = “abc” B = “fdh” then answer will be afbdch.
The interview was scheduled at morning on Microsoft Teams platform.



Can you solve this in logarithmic time and space complexity?
There were some questions from Operating systems like deadlock, race condition and process threads. He asked me to explain Producer-consumer problem which is a popular synchronization problem of Operating System. I explained him then he gave me a link of an IDE in which I was required to code it in whichever language I am comfortable in.
Tip 1 : According to me, explaining your approach properly to the interviewer while coding is very important.
Tip 2 : Basic concepts of OS should be very clear
The interviewer was asking some questions from things in my resume like my previous internships and project. I made a simple movie review portal and hosted the site on webhost. So the interviewer opened the link of the site and asked various questions regarding the project like-
- what are it’s features,
- what new functionally can I add
- questions regarding the tech stack
- the coding structure of the project.
-What all modules and objects I used in the code and how will I do the authentication.
Tip 1 : It’s better to add a quite decent project in your resume and be prepared for questions regarding it during the interview.
Tip 2 : A full stack working project will be better
Some concepts of OOPS like polymorphism and abstraction. As he was short of time I was required to give a short definition with a practical example.
Tip 1 : Prepare basic principles of OOPS with proper example
He asked me difference in time complexity and space complexity and nothing much was asked from DSA part
Tip 1 : Overall the interview had many questions from OS, web dev and system design and it’s advisable to be clear with fundamental topics of core CS subjects
It was conducted virtually on Microsoft Teams platform at morning. After clearing the technical interview round I got the mail for HR round in around 15-20 minutes. The interviewer was very polite.
This round started with questions like-
-Tell me about yourself
-My internship experience
-What are you passionate about
-What your friends do
-What are your ambitions and hobbies
-Tell me something you are proud of
-My overall experience in college
Tip 1 : It was more of a discussion about myself
Tip 2 : Descibe your internship details/experience properly
Tip 3 : Overall this round went very well and my suggestion is to stay confident and calm for this round.

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?