Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Indiamart Intermesh Team. If you also belong to the team, you can get access from here

Indiamart Intermesh Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Indiamart Intermesh Software Engineer Interview Questions and Answers

Updated 31 May 2025

Indiamart Intermesh Software Engineer Interview Experiences

6 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Interview Questions 

(5 Questions)

  • Q1. My first round was an aptitude round and the questions were based on basic maths and technical skills
  • Q2. Second round was totally on java and operating system
  • Q3. Java questions included the interview for java core java
  • Q4. Post that there was an round related to SQL , i loved that round
  • Q5. Post that I had the HR discussions only.

Interview Preparation Tips

Interview preparation tips for other job seekers - Best of luck for interview . I know you will be clear the same. Thanks for everything
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Nice interview experience with easy questions

Round 2 - HR 

(2 Questions)

  • Q1. What are your projects
  • Q2. What is the experience in tech
  • Ans. 

    I have extensive experience in software development, focusing on full-stack development, agile methodologies, and collaborative teamwork.

    • Developed a web application using React and Node.js, improving user engagement by 30%.

    • Led a team of 5 in an agile environment, successfully delivering projects on time and within budget.

    • Implemented RESTful APIs for a healthcare application, ensuring data security and compliance with H...

  • Answered by AI

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Basics questions were asked

Round 3 - Coding Test 

Questions about python and java

Round 4 - Group Discussion 

They were given a topic about the students preferring studying in foreign countries than India

Round 5 - HR 

(2 Questions)

  • Q1. This was my final round and this was not so difficult than i expected
  • Q2. Tell me about one thing that's not in your resume

Interview Preparation Tips

Interview preparation tips for other job seekers - never give up

Software Engineer Interview Questions & Answers

user image B-151 Satyam Mittal

posted on 31 May 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. About preorder,postorder,inorder tree dsa implementation
  • Ans. 

    Preorder, postorder, and inorder traversals differ in node visiting order in binary trees.

    • Preorder: Visit root, then left subtree, then right subtree. Example: For tree 1-2-3, traversal is 1, 2, 3.

    • Postorder: Visit left subtree, then right subtree, then root. Example: For tree 1-2-3, traversal is 2, 3, 1.

    • Inorder: Visit left subtree, then root, then right subtree. Example: For tree 1-2-3, traversal is 2, 1, 3.

  • Answered by AI
  • Q2. Ask to write a DB query using join
  • Ans. 

    A database query using a join combines rows from two or more tables based on a related column.

    • Joins are used to retrieve data from multiple tables in a relational database.

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN.

    • Example of an INNER JOIN: SELECT * FROM Orders INNER JOIN Customers ON Orders.CustomerID = Customers.CustomerID;

    • LEFT JOIN retrieves all records from the left table a...

  • Answered by AI

I appeared for an interview in Dec 2021.

Round 1 - Coding Test 

(2 Questions)

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.

  • Q1. 

    Prime Numbers within a Range

    Given an integer N, determine and print all the prime numbers between 2 and N, inclusive.

    Input:

    Integer N

    Output:

    Prime numbers printed on separate lines

    Example:

    Input...
  • Ans. 

    Generate and print all prime numbers between 2 and N, inclusive.

    • Iterate from 2 to N and check if each number is prime

    • Use a helper function to determine if a number is prime

    • Print each prime number on a new line

  • Answered by AI
  • Q2. 

    Form a Triangle Problem Statement

    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...

  • Ans. 

    Check if it's possible to form a non-degenerate triangle using the given array elements as sides.

    • Iterate through each test case and check if the sum of any two sides is greater than the third side to form a triangle.

    • If the above condition is met for any combination of sides, return 'YES'; otherwise, return 'NO'.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

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.

  • Q1. 

    Remove Character from String Task

    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...

  • Ans. 

    Create a function to remove all occurrences of a given character from a string.

    • Iterate through the string and build a new string excluding the specified character.

    • Use string manipulation functions to remove the character efficiently.

    • Handle the case where the character is not found in the string.

    • Return the updated string after removing all occurrences of the character.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from NATIONAL INSTITUTE OF TECHONOLGY, Hamirpur. I applied for the job as Software Engineer in NoidaEligibility criteriaAbove 6 CGPAIndiaMart interview preparation:Topics to prepare for the interview - Data structures, Algorithms, OOPS , Operating systems, DBMS, SQL , NoSQL, Backend Development conceptsTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Apr 2023.

Round 1 - Coding Test 

Coding+ apti + quant

Round 2 - Technical 

(1 Question)

  • Q1. Interview: DSA and OS

Top trending discussions

View All
Salary Discussions, Hike & Promotions
2w
a senior executive
GF salary Vs. My salary
Me and my gf have been dating for 5 years. Back in 2020, I started my career with a package of ₹5 LPA. Over the years, I’ve reached ₹22 LPA in 2025. She started her journey with ₹3 LPA(2020) and is now earning ₹8 LPA(2025). We’ve been in a live-in relationship for around 2 years, and the idea was to share expenses equally. But, equal sharing never really happened. If we go to a café she likes, especially with friends, I will pay the entire bill. We only split the house rent and grocery bills. I told her lots of time to cut down these costly cafe expenses or earn more money, increase your package, study and work hard, but.....she is now in her comfort zone. Being from a tech background, I have seen people upgrade their skills and package for a good life in metro cities. I am ready to support her in her studies, but she is like I am earning enough for myself.... No, you are not. I love her, but I don't know how to overcome this issue between us. Please suggest!
Got a question about Indiamart Intermesh?
Ask anonymously on communities.

Interview questions from similar companies

Software Engineer Interview Questions & Answers

Amazon user image Rajesh Paramanandam

posted on 24 Feb 2017

I appeared for an interview in Oct 2016.

Interview Preparation Tips

Round: Test
Experience: Aptitude was quite easy they just asked us basic questions from Math,logical reasoning and english
Tips: Just think well before u do..
Duration: 1 hour 30 minutes
Total Questions: 40

Round: Behavioural Interview
Experience: It was face to face .. the interviewee asked questions from our resume... Since I m from computer science background they asked some technical questions..

Tips: Beware filling ur resume.. they will ask every stuff that you have in resume

Round: Technical Interview
Experience: Discussion about my project that i vr done in my final year.they asked me what was my role in my project

College Name: Sri ganesh college of engineering and technology
Are these interview questions helpful?

Interview Preparation Tips

Round: Test
Experience: The first test
contained 25 objective questions encompassing the basics of Computer Science ranging from
data structures, networks and operating systems to theory of computation
Duration: 45 minutes
Total Questions: 25

Round: Test
Experience: The second test contained 3 coding questions.
Duration: 45 minutes
Total Questions: 3

Round: HR Interview
Experience: After the written test, next day I appeared for 3 interviews.
They were checking if you can write code and also if you are aware of the practical issues faced while coding. In the final round they were testing if you could abstract out a real world
problem into code.
Tips: Overall I can say that you must hope for the best and prepare for the
worst. So make sure that you are prepared on all counts. You never know what might go wrong.

Interview Questionnaire 

2 Questions

  • Q1. Data struct,algo,
  • Q2. High level data structs and algos

Interview Preparation Tips

Round: Problem Statement
Experience: coding and submission before face to face interview shortlisting
Tips: practice coding ,coding is key to success for SE

Round: Resume Shortlist
Experience: based on marks ,I was called for F2F
Tips: the ppt was to be submitted explaining the approach

Round: Technical Interview
Experience: a lot of brain storming
Tips: understands the nitty gritty of the structs and algos

Round: Technical Interview
Experience: exact code was to be written instead of pseudo code
Tips: get hold of DS,Algos

I applied via Campus Placement

Interview Questionnaire 

4 Questions

  • Q1. Boundary traversal of a tree
  • Ans. 

    Boundary traversal of a tree is the process of visiting the nodes on the boundary of a tree in a specific order.

    • The boundary traversal can be done in three steps: left boundary, leaf nodes, and right boundary.

    • For the left boundary, start from the root and traverse down the left side of the tree until reaching a leaf node.

    • For the leaf nodes, perform an inorder traversal to visit all the leaf nodes of the tree.

    • For the ri...

  • Answered by AI
  • Q2. Find the nearest greater value of a given value in a BST
  • Ans. 

    Find the nearest greater value of a given value in a Binary Search Tree (BST).

    • Start from the root node and compare the given value with the current node's value.

    • If the given value is less than the current node's value, move to the left subtree.

    • If the given value is greater than the current node's value, move to the right subtree.

    • Keep track of the closest greater value encountered while traversing the tree.

    • Return the cl...

  • Answered by AI
  • Q3. There is an infinite stair case and there are n rounds. in i'th round we can jump i steps at one or discard them. it is given that k'th step is broken , find the max height we can reach with out stepping o...
  • Ans. 

    Given an infinite staircase with a broken kth step, find the maximum height we can reach in n rounds of jumping i steps.

    • We can start by jumping the maximum number of steps in each round until we reach the broken step.

    • After reaching the broken step, we can discard the i steps that would land us on the broken step and jump the remaining steps.

    • We can continue this pattern until we reach the maximum height we can reach wit...

  • Answered by AI
  • Q4. Height h was given and form a binary tree of height h and start combining bottom nodes to form a cone like structure
  • Ans. 

    Construct a binary tree of height h and merge bottom nodes to create a cone-like structure.

    • A binary tree of height h has 2^h - 1 nodes.

    • Start combining leaf nodes from the bottom level upwards.

    • Each combination can be visualized as merging two nodes into one.

    • For example, if h=3, the tree has 7 nodes, and you combine nodes at levels 2 and 1.

    • The final structure resembles a cone as nodes are merged.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: there were 20 MCQ which were on ds , networks and basic coding followed by 2 coding questions.
1) print all the distinct substrings of a given string in lexicographical order
2) find the max i-j value in the given array of 0's and 1's such that there are equal number of zeros and ones, where i is the starting index and j is the ending index of the array.
Tips: make sure that you pass atleast half the test cases for both the question.
Duration: 90 minutes
Total Questions: 22

Round: Technical Interview
Experience: 1) i printed left view then leaves and right view using three level order traversals . he asked me to use one traversal only, then i told him the approach and wrote the working code.
2) told him the approach and coded it.
Tips: look at corner cases properly. the interviewers were friendly, so i felt relaxed.

Round: Technical Interview
Experience: 1) i told him a recursive O(2^n) solution, optimised it to O(n^2). he told me to optimise further. Then i finally came up with O(n) solution after 5 min and he was satisfied . i coded it. he was satisfied finally :D .
2) came up with the approach immediately and coded it. he was satisfied.
Tips: he was very particular about corner cases and he checked the code througly tested it on some cases to ensure it was working.

General Tips: be cool. interviewers were friendly. tell them what you are thinking and be clear with the question before answering to avoid wasteage of time.
Skill Tips: solve problems from codechef, spoj and codeforces. solve interview questions from geeksforgeeks and careercup.
Skills: the way you think, coding skills and knowledge on data structures.
Duration: 3
College Name: IIT Roorkee
Motivation: some good seniors got intern, so i was inspired.
Funny Moments: on the interview day a person came into the conference room to call me for interview, i didnt thought he was interviewer. he was very simple, but intelligent and at last i felt like asking him to ask me one more coding question as it was fun solving questions infront of him, but i didnt do that as i was frightened if i would not be able to answer it would be a negative remark :P .

Skills evaluated in this interview

Indiamart Intermesh Interview FAQs

How many rounds are there in Indiamart Intermesh Software Engineer interview?
Indiamart Intermesh interview process usually has 2-3 rounds. The most common rounds in the Indiamart Intermesh interview process are Coding Test, HR and Resume Shortlist.
How to prepare for Indiamart Intermesh Software Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Indiamart Intermesh. The most common topics and skills that interviewers at Indiamart Intermesh expect are PHP, HTML, Javascript, Rabbitmq and Software Engineering.
What are the top questions asked in Indiamart Intermesh Software Engineer interview?

Some of the top questions asked at the Indiamart Intermesh Software Engineer interview -

  1. What is the experience in t...read more
  2. What are your proje...read more
  3. Java questions included the interview for java core j...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.4/5

based on 7 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 75%
2-4 weeks 25%
View more
Indiamart Intermesh Software Engineer Salary
based on 229 salaries
₹5 L/yr - ₹17 L/yr
32% more than the average Software Engineer Salary in India
View more details

Indiamart Intermesh Software Engineer Reviews and Ratings

based on 34 reviews

3.7/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.2

Salary

4.4

Job security

3.4

Company culture

3.1

Promotions

3.3

Work satisfaction

Explore 34 Reviews and Ratings
Assistant Manager
2.6k salaries
unlock blur

₹2.5 L/yr - ₹9 L/yr

Senior Executive
1.2k salaries
unlock blur

₹2 L/yr - ₹5.5 L/yr

Manager
926 salaries
unlock blur

₹3.4 L/yr - ₹10 L/yr

Sales Executive
743 salaries
unlock blur

₹1 L/yr - ₹5.6 L/yr

Relationship Manager
663 salaries
unlock blur

₹3.6 L/yr - ₹9.6 L/yr

Explore more salaries
Compare Indiamart Intermesh with

Amazon

4.0
Compare

Flipkart

3.9
Compare

Udaan

3.9
Compare

BigBasket

3.9
Compare
write
Share an Interview