i
Flipkart
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by
I applied via LinkedIn and was interviewed before Jun 2023. There was 1 interview round.
DS algo, cant remember questions
posted on 5 Dec 2024
I applied via Referral and was interviewed in Nov 2024. There was 1 interview round.
Find lowest common ancestor in tree
I applied via Referral and was interviewed in Mar 2024. There were 3 interview rounds.
A small app was to be built using recycler view and consuming a given api.
Seeking new challenges and growth opportunities.
Looking for new challenges and opportunities for growth.
Interested in working with new technologies and tools.
Seeking a more collaborative and innovative work environment.
Want to expand my skill set and knowledge in a different industry.
Current organization lacks career advancement opportunities.
To delete the nth node from the end in a linked list, we can use a two-pointer approach.
Use two pointers, one to traverse the list and another to keep track of the nth node from the end.
Move the second pointer n steps ahead of the first pointer.
When the second pointer reaches the end of the list, the first pointer will be at the nth node from the end.
Adjust the pointers to delete the nth node.
Logical and qunatative
Microservices are a software architecture pattern where applications are built as a collection of small, loosely coupled services.
Microservices are independent and autonomous services that communicate with each other through APIs.
Each microservice is responsible for a specific business capability and can be developed, deployed, and scaled independently.
Microservices promote flexibility, scalability, and resilience in s...
SOAP APIs are a protocol for exchanging structured information in web services using XML-based messages.
SOAP stands for Simple Object Access Protocol
It is a messaging protocol that allows programs running on different operating systems to communicate with each other
SOAP APIs use XML to format the data being sent
They are commonly used in enterprise-level applications for integrating different systems
SOAP APIs provide a
REST APIs are a set of rules and protocols that allow different software applications to communicate and interact with each other over the internet.
REST stands for Representational State Transfer
REST APIs use HTTP methods like GET, POST, PUT, DELETE to perform operations on resources
REST APIs are stateless, meaning each request from a client to a server contains all the necessary information
REST APIs typically return d...
I applied via Approached by Company and was interviewed in Jul 2022. There were 4 interview rounds.
Cookies and cache in a PHP application can be handled by setting and retrieving cookies, using caching mechanisms like memcached or Redis, and implementing cache control headers.
Set cookies using setcookie() function in PHP
Retrieve cookies using $_COOKIE superglobal
Use caching mechanisms like memcached or Redis to store frequently accessed data
Implement cache control headers to control caching behavior in the applicati
Redis is an open-source, in-memory data structure store used as a database, cache, and message broker.
Redis is often used for caching data to improve performance in web applications.
It can also be used as a database to store key-value pairs for fast retrieval.
Redis can be used as a message broker for real-time applications by implementing pub/sub messaging.
Examples: Storing session data, caching frequently accessed dat
AI recommendation systems use algorithms to analyze user data and provide personalized suggestions.
AI recommendation systems collect and analyze user data such as browsing history, preferences, and interactions.
They use machine learning algorithms to identify patterns and similarities between users and items.
Based on this analysis, the system generates personalized recommendations for users, such as movies, products, o...
I was interviewed in Dec 2021.
Round duration - 60 minutes
Round difficulty - Medium
This round was easy for me because this round only has Basic Math, OS, Programming and English Grammar questions.
There were also two easy coding problems.
Given an integer N, determine and print all the prime numbers between 2 and N, inclusive.
Integer N
Prime numbers printed on separate lines
Step 1 : Run a for loop from 2 to N
Step 2 : check each number if it is prime or not
Step 3 : if prime then print
You are given an array of integers ARR
with a length of N
. Your task is to determine whether it's possible to construct at least one non-degenerate triangle using the val...
Step 1 : We will Iterate through the array and pivot each element as the first side of the triangle. Let’s say we are at ‘I’ th index, So we will pivot ‘I’th index as our first side of the triangle.
Step 2 : And for the second side of the triangle, we will start exploring from the next index of ‘I’ and pivot each element from (I+1) till the end as the second side of the triangle. Let’s say we are at the ‘J’th inde...
Round duration - 45 minutes
Round difficulty - Medium
This was interview round where one indiamart senior lead engineer was interviewer. Initially I was nervous but interviewer was very gentle so I was very comfortable at the middle of interview. Interview was based on my resume and some basic problem solving questions.
Given a string str
and a character X
, your task is to create a function that removes all occurrences of X
from the given string.
If the character X
is not found in the s...
string remove_duplicate(string str)
{
int v[256];
for (int i = 0; i < 256; i++) {
v[i] = 0;
}
string ans = "";
for (int i = 0; i < str.length(); i++) {
int asc = int(str[i]);
if (v[asc] == 0) {
ans.push_back(str[i]);
v[asc] = 1;
}
}
return ans;
}
Tip 1 : Practice At least 100 easy and 200 medium DS & Algorithms based questions.
Tip 2 : Make 2 to 3 good projects based on any technology you like and show them on your portfolio website or resume.
Tip 3 : Contribute to open source projects. At least make a pull request if you are able to solve the bug.
Tip 1 : Your resume must be simple and easy to read.
Tip 2 : You should add all your experiences which you have achieved in your career.
Tip 3 : Only add 2 top projects which you like.
Coding , decoding, numerical
based on 1 interview
Interview experience
based on 1 review
Rating in categories
Senior Executive
2.7k
salaries
| ₹2 L/yr - ₹9 L/yr |
Operations Executive
1.8k
salaries
| ₹1.2 L/yr - ₹6.3 L/yr |
Team Lead
1.8k
salaries
| ₹1.2 L/yr - ₹9.9 L/yr |
Assistant Manager
1.5k
salaries
| ₹6 L/yr - ₹21 L/yr |
Executive
1.3k
salaries
| ₹1.2 L/yr - ₹7 L/yr |
Amazon
Myntra
Snapdeal
Meesho