Tip 1: Focus on DSA (Data Structures and Algorithms) as that is the most important aspect. The first round will be purely focused on DSA.
Tip 2: Concentrate on networking-related questions, Docker, and Kubernetes-related questions, as they are also important.
Tip 3: Aim to have good projects on your resume, such as live websites and others.
Tip 1: Your resume should be limited to one page, featuring notable MNC projects with comprehensive details of your contributions.
Tip 2: Ensure your problem-solving skills are excellent to easily clear the first round.
It was in mid afternoon there were 3 coding questions asked in first round i answered all.3 of them and i got the call for the next round on the second day mid afternoon only .



Given an array consisting of N integers you need to give the count of total no of subarrays inside an array having even product.
We can solve this questions with 2 approaches one was brute force where we just defined variable as product and we created two for loop and one for loop was to choose every value in an array and second was to choose the next value and we can check the product with every value if the product is divisible by 2 we can return the count of that no
Second i gave the optimised code approach where we can count the total no of odd values in an array and we can directly subtract the total n - count of odd values in an array which will directly give the no of event product inside an array .


Given a linked list you need to find the average of all levels of that binary tree.
I solved this question with bfs approach created a queue which was initially point to the root values for the binary tree and after that start moving towards left and right one did the sum for left and right values in the tree and store it in vector and then move to the left and store the values and we can continue the process like that .



Given a graph check if the graph is cyclic or not .
We create adjacency lists we can push inside the values into that adjacency lists and post that we can create a bool condition to check that if the graph is cyclic or not
It was mostly consisting question of networking and cloud computing and first some dockerfile creations were asked to perform and what is staging in dockerfile and post that what tools apart from docker we can use as alternate to docker and then can you give the entire flow from browser to the pods with the steps .
If you have an node alpine image you need to create a dockerfile how will you create that and run on.a specific port .
Tip 1:We need to create the dockerfile and whatever configuration he want to add we can add we can add by creating stages
Tip 2: command should be on your tips so that you can easily write the codes .
Tip 3: your explaining process should also be good so that you can explain things clearly .
If you want to implement https implementation how will you change the ingress components.
Tip 1: we need to know how to create ingress.yaml
Tip 2: all the code specifications need to be very much cleared from your end
Tip 3: port knowledge is very important

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