Netapp Interview Round1
Summary
I recently attended the first interview round at Netapp, which involved a discussion on Docker and Kubernetes, followed by a coding question and a system design problem.
Full Experience
I had my first interview round at Netapp. The interview began with a long discussion covering Docker and Kubernetes concepts, which took a significant portion of the time. Following this technical discussion, I was presented with a coding problem: to find all prime numbers up to a given integer n. I spent about 15 minutes working on this. After the coding challenge, I was given a design-based DSA problem. The task was to design a chess game from scratch, including defining the necessary classes. I also had to implement key methods such as nextPossibleMoves() to identify valid moves and makenextmove() to execute them, ensuring that the game's state and all moves were properly saved within the board class to manage game flow effectively.
Interview Questions (2)
Implement a function to find all prime numbers up to a given integer n.
Design a chess game. This involves designing the necessary classes, implementing a nextPossibleMoves() method to determine all valid moves for a given piece, and a makenextmove() method to execute a move. Ensure all moves are saved within the board class to maintain game state and prevent conflicts with previous moves.