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
3.6

based on 4.6k Reviews

Filter interviews by

Indiamart Intermesh Software Engineer Interview Questions and Answers

Updated 28 Aug 2024

Indiamart Intermesh Software Engineer Interview Experiences

4 interviews found

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
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 Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

I was interviewed 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. 

    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

  • Answered Anonymously
  • 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. 

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

  • Answered Anonymously
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. 
    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;
    }
  • Answered Anonymously

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 was interviewed before Apr 2023.

Round 1 - Coding Test 

Coding+ apti + quant

Round 2 - Technical 

(1 Question)

  • Q1. Interview: DSA and OS

Indiamart Intermesh interview questions for designations

 Associate Software Engineer

 (5)

 Software Engineer Trainee

 (2)

 Software Developer

 (7)

 Software Trainee

 (1)

 Software Programmer

 (1)

 QA Engineer

 (3)

 System Engineer

 (1)

 Test Engineer

 (1)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. General DSA question leetcode style
Round 2 - Technical 

(1 Question)

  • Q1. Discussion on previous project
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was a machine coding round

Round 2 - Technical 

(2 Questions)

  • Q1. Similar to the other question
  • Q2. Give an array and an element sort the array with difference of that number to array elements
  • Ans. 

    Sort an array of strings by the difference of a given element to each array element.

    • Iterate through the array and calculate the absolute difference between the given element and each array element.

    • Sort the array based on the calculated differences.

    • Return the sorted array.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Stack based question Medium Difficulty DSA.
  • Q2. Theory questions related Java, Spring, OOPs
Round 2 - Technical 

(3 Questions)

  • Q1. Medium-hard DSA question.
  • Q2. Project related questions
  • Q3. Design Patterns
Round 3 - HR 

(1 Question)

  • Q1. Company fit questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Based on linked list
Round 2 - Technical 

(1 Question)

  • Q1. Based in tree Data Structure
Round 3 - Technical 

(1 Question)

  • Q1. Based on the graph and one from aptitude

Interview Preparation Tips

Interview preparation tips for other job seekers - Medium-level DSA questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Find the leaves of the tree.
  • Ans. 

    Leaves of a tree are the nodes with no children in a tree data structure.

    • Traverse the tree and identify nodes with no children.

    • Use depth-first search or breadth-first search algorithms to find leaves.

    • Examples: In a binary tree, leaves are nodes with no left or right child.

    • In a general tree, leaves are nodes with no children in their child list.

  • Answered by AI
  • Q2. Find the LCA of tree.
  • Ans. 

    The Lowest Common Ancestor (LCA) of a tree is the shared ancestor of two nodes farthest from the root.

    • Start from the root and traverse the tree to find the paths from the root to the two nodes.

    • Compare the paths to find the last common node between them, which is the LCA.

    • If one of the nodes is an ancestor of the other, then the ancestor node is the LCA.

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What projects you worked upon?
  • Ans. 

    I have worked on projects involving web development, mobile app development, and data analysis.

    • Developed a web application using React and Node.js for a client in the e-commerce industry

    • Created a mobile app using Flutter for a startup in the healthcare sector

    • Performed data analysis on customer behavior using Python and SQL for a marketing company

  • Answered by AI
  • Q2. What internships you did?
  • Ans. 

    I completed internships at ABC Company and XYZ Company during my undergraduate studies.

    • Interned at ABC Company working on web development projects

    • Interned at XYZ Company assisting with software testing and quality assurance

    • Gained hands-on experience in coding, debugging, and problem-solving

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare tree and graph well.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

1. PEAK ELEMENT QUESTION.
2. COIN DENOMINATION

Indiamart Intermesh Interview FAQs

How many rounds are there in Indiamart Intermesh Software Engineer interview?
Indiamart Intermesh interview process usually has 3 rounds. The most common rounds in the Indiamart Intermesh interview process are Coding Test, HR and Group Discussion.
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. this was my final round and this was not so difficult than i expec...read more
  2. What is the experience in t...read more
  3. What are your proje...read more

Tell us how to improve this page.

Indiamart Intermesh Software Engineer Interview Process

based on 5 interviews

1 Interview rounds

  • Coding Test Round
View more
Indiamart Intermesh Software Engineer Salary
based on 190 salaries
₹5 L/yr - ₹16.1 L/yr
45% more than the average Software Engineer Salary in India
View more details

Indiamart Intermesh Software Engineer Reviews and Ratings

based on 31 reviews

3.7/5

Rating in categories

3.4

Skill development

3.8

Work-life balance

3.2

Salary

4.5

Job security

3.6

Company culture

3.2

Promotions

3.5

Work satisfaction

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

₹2.4 L/yr - ₹8.7 L/yr

Senior Executive
1.2k salaries
unlock blur

₹0.2 L/yr - ₹5.5 L/yr

Manager
872 salaries
unlock blur

₹3.4 L/yr - ₹9.5 L/yr

Sales Executive
665 salaries
unlock blur

₹1 L/yr - ₹5.5 L/yr

Relationship Manager
639 salaries
unlock blur

₹3.8 L/yr - ₹10 L/yr

Explore more salaries
Compare Indiamart Intermesh with

Alibaba Group

4.1
Compare

TradeIndia (Infocom Network Private Limited)

3.4
Compare

Global Sources

4.1
Compare

ExportersIndia

4.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview