Tip 1 : Prepare on fundamentals (Any language, clean code,)
Tip 2 : The interview will be mostly to test the application knowledge. Like how we apply the things we learned.
Tip 3 : Practice problem solving
Tip 1 : Do have the projects that you have really worked on
Tip 2 : Have knowledge on depth and breadth of technologies. Showcase what you know.
To understand the nature of work we already did.
What we do in work on a regular basis.
Tools and technologies that we work on.
A face to Face video call interview.
A problem statement was given which was simple but expected to solve using oops.
Need to draft solution using basic oops concept to make it scalable.
Need to run the code.


1) ‘#’ (HASH) represents an unrevealed mine.
2) ‘.’ (DOT) represents an unrevealed empty cell.
3) ‘_’ (UNDERSCORE) represents a revealed blank cell that has no neighbouring mines.
4) Digits (‘1’ to ‘8’) represents the number of neighbouring mines corresponding to the current cell.
5) ‘*’ (ASTERISK) represents a revealed mine.
1) If the revealed cell contains a mine (‘#’), then the game is over - change it to ‘*’.
2) If the revealed cell is empty ('.') with no neighbouring mines revealed, then change it to revealed blank ('_'), and all of its neighbouring unrevealed cells should be revealed recursively.
3) If the revealed cell is empty ('.') with at least one neighbouring mine revealed, then change it to a digit ('1' to '8') representing the number of neighbouring mines.
1) Two cells are neighbours if they share a corner or an edge, i.e., cells corresponding above, below, left, right, and all four diagonals.
2) For simplicity, ignore the rules which are not mentioned in this problem. For example, when the game is over, you don't need to reveal all the unrevealed mines.
created a classes for the required places like for the grid system, input system etc.
Make the code clean, naming conventions
Based on previous experience , projects
basics of SQL, DSA, problem solving
Just a general round on social view. On any specific topics to check our inclusivity .
General HR round . To check our character, attitude, behaviour.
Are you a team player?
How you keep yourself motivated?

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?