Filter interviews by
I appeared for an interview in Sep 2021.
Round duration - 45 minutes
Round difficulty - Hard
There were 2 coding questions to be solved in 45 minutes. Questions were a bit difficult and topics covered in my set were DP and Graphs.
You are given a graph with 'N' vertices numbered from '1' to 'N' and 'M' edges. Your task is to color this graph using two colors, such as blue and red, in a way that no two adjacen...
The problem is to color a graph with two colors such that no two connected vertices have the same color.
Use a graph coloring algorithm such as Depth First Search (DFS) or Breadth First Search (BFS).
Start with an arbitrary vertex and color it with one color (e.g., blue).
Color all its adjacent vertices with the other color (e.g., red).
Continue this process for all connected components of the graph.
If at any point, you en...
Round duration - 60 minutes
Round difficulty - Medium
I was asked questions on data structures, OOPs, OS and he grilled me on Machine Learning and Microsoft Azure (as is was mentioned in my resume).
Given an array of integers with numbers in random order, write a program to find and return the number which appears the most frequently in the array.
If multip...
The program finds the number that occurs the maximum times in an array of integers.
Iterate through the array and count the frequency of each number using a dictionary.
Keep track of the number with the maximum frequency and its index.
Return the number with the maximum frequency and the lowest index.
Round duration - 45 minutes
Round difficulty - Easy
It involved a few technical questions based on my resume followed by leadership questions.
Tip 1 : Do not cram solutions.
Tip 2 : Keep practicing and give contests.
Tip 1 : Make a 1 pager resume strictly
Tip 2 : Have 3-4 decent projects.
I applied via Recruitment Consulltant and was interviewed before Feb 2023. There was 1 interview round.
SQL, Spark, Hive, Python
I appeared for an interview in Mar 2021.
Round duration - 120 minutes
Round difficulty - Medium
This was the online round held at Hackerearth. All students who met the eligibility criteria were shared link for the online test on hackerearth.
Given a string str
of size N
, your task is to recursively remove consecutive duplicates from this string.
T (number of test cases)
N (length of the ...
Recursively remove consecutive duplicates from a given string.
Use recursion to check for consecutive duplicates in the string.
If current character is same as next character, skip the next character.
Repeat the process until no consecutive duplicates are found.
Given a binary tree of integers, your task is to calculate the sum of all the leaf nodes present at the deepest level of this binary tree. If there are no such nodes, ...
Calculate the sum of leaf nodes at the deepest level of a binary tree.
Traverse the binary tree to find the deepest level of leaf nodes.
Sum the leaf nodes at the deepest level.
Handle null nodes represented by -1.
Ensure the sum fits within a 32-bit integer.
Round duration - 60 minutes
Round difficulty - Medium
This Round was DS and Algo round and it started with formal introduction, followed by 2 problems.There were 2 interviewers. We first dicussed the approach the time complexity and proper code covering all cases.
Determine if a permutation of a given string S
can form a palindrome.
string S = "aab"
"True"
The permutation "aba" o...
Check if a permutation of a string can form a palindrome.
Create a frequency map of characters in the string.
Count the number of characters with odd frequencies.
If there is at most one character with odd frequency, return true.
Otherwise, return false.
Determine if a given word 'W' is present in the sentence 'S' as a complete word. The word should not merely be a substring of another word.
The first line contains an in...
Check if a given word is present in a sentence as a complete word.
Split the sentence into words using spaces as delimiter.
Check if the given word matches any of the words in the sentence.
Ensure that the word is not just a substring of another word in the sentence.
Round duration - 30 mintues
Round difficulty - Easy
This is a cultural fitment testing round .HR was very frank and asked standard questions. Then we discussed about my role.
Tip 1 : Have atleast one internship/project in your domain...Will help you to gain exposure
Tip 2 : Do good practice of advanced data structures like Tries,graphs etc.
Tip 3 : Be good in your communication
Tip 1 : Keep your resume up to date and mention three or four good level projects which will give a good impression to the interviewer
Tip 2 : You should be well aware and knowledgeable about all the things that are mentioned in your resume.
I applied via Naukri.com and was interviewed before Jan 2022. There were 4 interview rounds.
Program based on string manipulation
Walmart interview questions for popular designations
I applied via Company Website and was interviewed in Sep 2021. There was 1 interview round.
Get interview-ready with Top Walmart Interview Questions
I applied via Apna Jobs and was interviewed before Jan 2022. There were 2 interview rounds.
I applied via Referral and was interviewed before Nov 2021. There were 2 interview rounds.
I appeared for an interview in Nov 2020.
Round duration - 60 minutes
Round difficulty - Hard
Round was held in the morning probably 10 or 11 am, the test window was open for 90 minutes and one can give the test anytime in that 1.5 hour.
Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...
The task is to find the total number of ways to make change for a specified value using given denominations.
Use dynamic programming to solve this problem efficiently.
Create a 2D array to store the number of ways to make change for each value using different denominations.
Initialize the base cases and then iterate through the denominations to fill up the array.
The final answer will be in the last cell of the array corre
Given an array ARR
of size N
, containing each number between 1 and N-1
at least once, identify the single integer that appears twice.
The first line contains an integer...
Identify the duplicate integer in an array of size N containing numbers between 1 and N-1.
Iterate through the array and keep track of the frequency of each element using a hashmap.
Return the element with a frequency greater than 1 as the duplicate integer.
Ensure the constraints are met and a duplicate number is guaranteed to be present in the array.
Round duration - 45 minutes
Round difficulty - Medium
This round was scheduled on 12th Nov, almost after 30 days of the previous technical round. I got the confirmation of passing the previous round on 10th Nov and was asked to appear in this final round which was scheduled on 15th Nov at 11:00 am in the morning and it was going to be an HR round which probably was my favourite among all the other rounds. I prepared for the same by reading interview experiences available at coding ninjas.
You are given a binary tree with 'N' integer nodes. Your task is to determine whether this binary tree is a Binary Search Tree (BST).
A Binary Search Tr...
Validate if a given binary tree is a Binary Search Tree (BST) or not.
Check if the left subtree of a node contains only nodes with data less than the node's data.
Check if the right subtree of a node contains only nodes with data greater than the node's data.
Recursively check if both the left and right subtrees are also binary search trees.
Example: For each node, ensure all nodes in its left subtree are less and all node
Tip 1 : practice on codeforces and codechef
Tip 2 : prepare a good resume
Tip 3 : may prefer solving the SDE sheet provided by striver_79
Tip 1 : put your entire valuable experience in brief
Tip 2 : try to put those things that really attracts the recruiter, will be better if your past experiences relates to the company
I appeared for an interview before Sep 2020.
Round duration - 60 minutes
Round difficulty - Medium
The platform was HackerEarth time duration was 1 hour.
1.) 25 MCQs (Both Easy and Gate Level Based)
2.) 1 Coding Question, that needs to be solved in O(logn) time. Program for Fibonacci numbers. The basic idea behind that question is we need to crack the pattern and then based on constraints we need to solve it.
Given an integer 'N', the task is to compute the N'th Fibonacci number using matrix exponentiation. Implement and return the Fibonacci value for the provided 'N'.
Use matrix exponentiation to efficiently compute the Nth Fibonacci number modulo 10^9 + 7.
Implement matrix exponentiation to calculate Fibonacci numbers efficiently.
Use the formula F(n) = F(n-1) + F(n-2) with initial values F(1) = F(2) = 1.
Return the result modulo 10^9 + 7 to handle large Fibonacci numbers.
Optimize the solution to achieve better than O(N) time complexity.
Round duration - 40 minutes
Round difficulty - Medium
It was a technical round. The platform was Zoom time duration was 40 mins. Started with Tell me something about yourself.
Determine whether two given strings, A
and B
, both of length N
, are similar by returning a 1 if they are, otherwise return a 0.
String A
is similar to stri...
Determine if two strings are similar based on given conditions.
Check if the strings are equal first.
Then check if the strings can be divided into two halves with similar patterns.
Return 1 if the strings are similar, 0 otherwise.
Round duration - 45 Minutes
Round difficulty - Medium
The platform was Zoom time duration was 1 hour 45 mins. Started with Tell me something about yourself. I told them, that I like solving algorithms, so she was like let’s start with trees then.
Round duration - 30 minutes
Round difficulty - Medium
This was a Hiring Manager Round. The platform was Zoom time duration was 30 mins. Started with Tell me something about yourself.
Round duration - 20 minutes
Round difficulty - Easy
The platform was Zoom time duration was 20 mins. Asked me to give my introduction.
Tip 1 : Don't stick to a single topic too much. Cover all and prepare short notes for all the topics so it will be easier for revision.
Tip 2 : Do projects so that they will be an added weightage.
Tip 3 : Practice a minimum of 100 questions on that particular topic so that it will be easy to crack within no time.
Tip 1 : Projects add good weight to the resume. So the interviewer asks the questions based on that.
Tip 2 : Resume should be genuine. You have to be confident of whatever is written in your resume
I applied via Naukri.com and was interviewed before Jan 2021. There were 5 interview rounds.
Working code with edge cases is code that has been tested with extreme inputs to ensure it functions correctly.
Edge cases are inputs that are unlikely to occur but can cause unexpected behavior if not handled properly.
Examples of edge cases include empty inputs, null values, and inputs at the limits of the data type's range.
Working code with edge cases should be thoroughly tested to ensure it functions correctly in all
Top trending discussions
The duration of Walmart interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 24 interviews
Interview experience
based on 2.5k reviews
Rating in categories
Software Engineer III
1.9k
salaries
| ₹14.5 L/yr - ₹47 L/yr |
Senior Software Engineer
1.4k
salaries
| ₹19 L/yr - ₹70 L/yr |
Software Engineer
800
salaries
| ₹10.2 L/yr - ₹43 L/yr |
Software Development Engineer 3
307
salaries
| ₹15.6 L/yr - ₹46 L/yr |
Software Developer
298
salaries
| ₹12 L/yr - ₹46 L/yr |
Amazon
Reliance Retail
DMart
Future Group