Tip 1 : Practice Atleast 250 Questions
Tip 2 : Focus on OS, DBMS
Tip 3 : Make your concepts clear
Tip 1 : Be honest and confident
Tip 2 : Keep it short and precise
The online test was held on the Hirepro platform. The test had four broad sections (each section was separately timed), namely:
Section 1. English (10 MCQ’s – 15 minutes)- Standard English questions on fill up with an appropriate word, passage comprehension, and synonyms of underlined sections of sentences.
Section 2. Technical (20 MCQ’s – 30 minutes) – Basic CS fundamentals and DSA questions.
Section 3. Coding (2 – 60 minutes) – 2 questions



1. The input string may contain the same characters, so there will also be the same permutations.
2. The order of permutation does not matter.
In our recursive function to find all permutations, we can use unordered_set for taking care of duplicate element remaining in the active string. While iterating over the elements of the string, we will check for that element in the unordered_set and if it found then we will skip that iteration or otherwise we will insert that element into unordered_set. As on an average all the unordered_set operations like insert() and find() are in O(1) time then the algorithm time complexity will not change by using unordered_set.



For Amount = 70, the minimum number of coins required is 2 i.e an Rs. 50 coin and a Rs. 20 coin.
It is always possible to find the minimum number of coins for the given amount. So, the answer will always exist.
This problem is a simple variation of coin change problem. Here Greedy approach works as the given system is canonical
After introducing himself, the interviewer asked for my introduction.
Discussion into my projects (My project was Android Application connected with firebase.).
Simultaneously, he was glancing over my resume and inquiring about the section on achievements and certifications.
What do you know about cloud storage?
Tip 1 : Understand OS thoroughly.
Tip 2 : Do practice for SQL queries.
Basic HR round
Any achievement that isn’t related to your studies.
Have you ever been in charge of a team or a project?
Why do you want to work for our company?
What are your strengths?
How do you work as a team or as an individual?
We discussed my project as well.
Tip 1 : Be confident
Tip 2 : Clarify your doubts if any

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?