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 Associate Software Engineer Interview Questions, Process, and Tips

Updated 20 Aug 2023

Top Indiamart Intermesh Associate Software Engineer Interview Questions and Answers

  • 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 ...read more
  • Q2. Queue Using Stacks Implementation Design a queue data structure following the FIFO (First In First Out) principle using only stack instances. Explanation: Your task is t ...read more
  • Q3. Swap Kth Elements in an Array Given an array ARR of size N , perform the operation to swap the Kth element from the beginning with the Kth element from the end of the ar ...read more
View all 16 questions

Indiamart Intermesh Associate Software Engineer Interview Experiences

5 interviews found

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

I applied via Referral and was interviewed in Jul 2023. There were 4 interview rounds.

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 

Aptitude Question on various standard topics .

Round 3 - Technical 

(2 Questions)

  • Q1. Application of stack in real life.
  • Ans. 

    Stacks are used in real life for managing undo operations in text editors, backtracking in maze solving, and managing function calls in programming.

    • Undo operations in text editors - allows users to go back to previous states of a document

    • Backtracking in maze solving - helps in keeping track of visited paths and backtracking when necessary

    • Managing function calls in programming - helps in keeping track of function calls

  • Answered by AI
  • Q2. Difference between i++ and ++i through implementation.
  • Ans. 

    i++ and ++i are both increment operators in C++ but have different behaviors.

    • i++ is a post-increment operator which increments the value of i after using it in an expression.

    • ++i is a pre-increment operator which increments the value of i before using it in an expression.

    • Example: int i = 5; int a = i++; // a = 5, i = 6; int b = ++i; // b = 7, i = 7;

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. About your intro and family background.

Interview Preparation Tips

Interview preparation tips for other job seekers - Instead of focusing on theoretical concepts entire focus must be on conceptual preparation.

Skills evaluated in this interview

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

It was an MCQ + coding based round consisting of multiple choice questions from topics like Aptitude, Logical reasoning, English, Programming ,etc. and 2 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...
  • Q2. 

    Print All Permutations of a String

    Given an input string STR, generate and print all possible permutations of the string.

    Input:

    str

    Output:

    All permutations of the input string, each on a new line.

    ...

Round 2 - Video Call 

(3 Questions)

Round duration - 75 minutes
Round difficulty - Medium

There were 2 interviewers. Firstly, they asked me to give my introduction. Then they asked me to explain any one of my projects in detail along with its demonstration. After this, they began with the DSA and computer fundamentals part.

  • Q1. 

    Find All Pairs Adding Up to Target

    Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target.

    Input:

    The first line ...
  • Q2. 

    Queue Using Stacks Implementation

    Design a queue data structure following the FIFO (First In First Out) principle using only stack instances.

    Explanation:

    Your task is to complete predefined functions t...

  • Q3. 

    Swap Kth Elements in an Array

    Given an array ARR of size N, perform the operation to swap the Kth element from the beginning with the Kth element from the end of the array.

    Example:

    Input:
    N = 5, K = 2
    ...

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from J.C. Bose University of Science and Technology, YMCA. I applied for the job as Associate Software Engineer in NoidaEligibility criteria10th and 12th : 85% and above, B.Tech : 60% and aboveIndiaMart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, DBMS, Operating SystemsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on solving good quality DSA problems rather than quantity 
Tip 2 : Study computer science fundamental subjects like OOPS, DBMS and Operating systems thoroughly

Application resume tips for other job seekers

Tip 1 : Mention at least 1 good development project
Tip 2 : Don't put unnecessary or non technical details in your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Clarivate
Q2. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in CGI Group
Q4. Frog Jump Problem Statement A frog is positioned on the first ste ... read more
asked in Gainsight
Q5. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more

I applied via Campus Placement and was interviewed before May 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

An online test was taken on Aspiring Minds platform. The test duration was of 1 hour and test consists of questions related to aptitude, english and coding.

Round 3 - Technical 

(5 Questions)

  • Q1. Why java is known as platform independent language?
  • Ans. 

    Java is platform independent because it uses the concept of bytecode and virtual machine.

    • Java code is compiled into bytecode, which is a platform-independent representation of the code.

    • The bytecode is then executed by the Java Virtual Machine (JVM), which is specific to each platform.

    • This allows Java programs to run on any platform that has a compatible JVM.

    • The JVM acts as an interpreter, translating the bytecode into ...

  • Answered by AI
  • Q2. What is exception handling. How to implement it?
  • Ans. 

    Exception handling is a mechanism to handle runtime errors and prevent program crashes.

    • Exception handling is used to catch and handle errors that occur during program execution.

    • It involves the use of try-catch blocks to catch exceptions and handle them gracefully.

    • The try block contains the code that might throw an exception, and the catch block handles the exception.

    • Multiple catch blocks can be used to handle different...

  • Answered by AI
  • Q3. Given a list of custom class objects. Write a program to sort that list based on one of its properties.
  • Ans. 

    Sort a list of custom class objects based on one of its properties.

    • Use a sorting algorithm like bubble sort, insertion sort, or merge sort.

    • Implement a comparison function to compare the desired property of the objects.

    • Apply the sorting algorithm to the list of objects using the comparison function.

  • Answered by AI
  • Q4. Write a SQL query to print number of rows in a table.
  • Ans. 

    A SQL query to count the number of rows in a table.

    • Use the COUNT() function in SQL to count the number of rows in a table.

    • Specify the table name in the FROM clause.

    • Use the result of the COUNT() function to print the number of rows.

  • Answered by AI
  • Q5. What are fundamental pillars of OOPS programming. Explain each of them in detail.
  • Ans. 

    The fundamental pillars of OOPS programming are encapsulation, inheritance, and polymorphism.

    • Encapsulation: It is the process of hiding the internal details of an object and providing a public interface for interacting with it.

    • Inheritance: It allows creating new classes by inheriting properties and behaviors from existing classes, promoting code reuse.

    • Polymorphism: It enables objects of different classes to be treated ...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. Tell me about your experience and learnings which you got from your internships.
  • Answered by Aman Mehta
  • Q2. Where do you see yourself after 5 years?

Interview Preparation Tips

Topics to prepare for Indiamart Intermesh Associate Software Engineer interview:
  • OOPS
  • Data Structures
  • DBMS
  • REST API
Interview preparation tips for other job seekers - For this job role, there is strong eligibility criteria set by the company -
The candidate must have more than 85% in Class X & XII and more than 70% in graduation degree.
If you meet the criteria, then focus mainly on your DSA skills. Mention atleast 2 good level projects in your resume. Your fundamentals of OOPS concept should be very clear. Having knowledge of SQL queries is a plus.

Skills evaluated in this interview

I was interviewed in Jul 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

This round had questions related to aptitude and coding

  • Q1. 

    Find Duplicates in an Array Problem Statement

    You are provided with an array/list ARR of size 'N', containing integers ranging from 0 to N - 1. Some elements in this array might be repeating. Your task is...

Round 2 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round had some questions from OOPS and some from DBMS

  • Q1. What is compile-time polymorphism, and how does it differ from runtime polymorphism?
  • Q2. What are the ACID properties in DBMS?
  • Q3. What are the various types of inheritance in Object-Oriented Programming?
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

This was my last round and I hoped it to go good just like the other rounds. The interviewer was very straight to the point and professional. The interview lasted for 30 minutes.

  • Q1. What is something about you that is not included in your resume?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Associate Software Engineer in NoidaEligibility criteriaAbove 7 CGPAIndiaMart Intermesh pvt. ltd. interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare for DSA
Tip 2 : Good communication skills and confidence
Tip 3 : Proper knowledge of computer-related subjects

Application resume tips for other job seekers

Tip 1 : Just mention your area of interest in your resume
Tip 2 : Mention only those things which you have a proper knowledge. Also mention about the final year project

Final outcome of the interviewSelected

Skills evaluated in this interview

Indiamart Intermesh interview questions for designations

 Software Engineer

 (4)

 Software Engineer Trainee

 (2)

 Associate Engineer

 (3)

 Software Developer

 (7)

 Software Trainee

 (1)

 Software Programmer

 (1)

 Associate Consultant

 (2)

 Associate

 (17)

I applied via campus placement at Guru Nanak Dev University (GNDU) and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic concepts of OOPS, web development, some easy-medium level coding questions. Your projects and aspirations.
  • Q2. Theoretical concepts of DBMS, OS & Computer Network, basic SQL queries.
Round 2 - HR 

(3 Questions)

  • Q1. Why should we hire you?
  • Q2. What are your strengths and weaknesses?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics strong. Only write those things in resume of which you are confident. Be polite in interview and try to interact as much as possible.

Get interview-ready with Top Indiamart Intermesh Interview Questions

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was an online assessment. Some coding questions. Some cs fundamental mcqs. SQL query, Rest Api question.

Round 2 - Assignment 

An assignment to create a game using nodejs/ go lang/ java.

Round 3 - Technical 

(2 Questions)

  • Q1. Discussion related to Assignment. Told some changes and told to add some more functionalities.
  • Q2. Some APIS were given. It was case study. You had to show the dishes to a customer according to his preferences.

I was interviewed in Jun 2022.

Round 1 - Technical 

(1 Question)

  • Q1. Focus on algorithms - trees, graphs. Questions on improving algorithm performance. Converting algorithm to code.

Interview Preparation Tips

Interview preparation tips for other job seekers - Deep Study - Graph data structure, Tree Data Structure, and solve as many problems as you can on Graph and Tree

I was interviewed in Mar 2022.

Round 1 - Group Discussion 

AI

Round 2 - Coding Test 

C#

Interview Preparation Tips

Topics to prepare for Info Edge Associate Software Engineer interview:
  • Class and object
  • Construction
  • Access modifier
  • Polymorphism
  • Inheritance
Interview preparation tips for other job seekers - I am a fresher student. Thank a lot
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Insert node in BST
  • Ans. 

    Insert a node in a Binary Search Tree (BST)

    • Start at the root node and compare the value of the node to be inserted with the current node

    • If the value is less than the current node, move to the left child. If greater, move to the right child

    • Repeat the process until reaching a leaf node, then insert the new node as a left or right child

  • Answered by AI
  • Q2. Design Lift system
  • Ans. 

    Design a lift system for efficient vertical transportation

    • Consider the number of floors in the building

    • Include safety features like emergency stop button

    • Optimize for speed and energy efficiency

    • Implement a user-friendly interface for passengers

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Implement an iterator to flatten 2D vector

Round 2 - One-on-one 

(1 Question)

  • Q1. Find shortest path to get all keys
  • Ans. 

    Use Dijkstra's algorithm to find the shortest path to get all keys

    • Implement Dijkstra's algorithm to find the shortest path in a graph

    • Consider the keys as nodes in the graph and the paths between keys as edges

    • Keep track of the keys collected and update the shortest path accordingly

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice algorithmic questions

Skills evaluated in this interview

Indiamart Intermesh Interview FAQs

How many rounds are there in Indiamart Intermesh Associate Software Engineer interview?
Indiamart Intermesh interview process usually has 3-4 rounds. The most common rounds in the Indiamart Intermesh interview process are Technical, HR and Resume Shortlist.
What are the top questions asked in Indiamart Intermesh Associate Software Engineer interview?

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

  1. Why java is known as platform independent langua...read more
  2. What are fundamental pillars of OOPS programming. Explain each of them in detai...read more
  3. Given a list of custom class objects. Write a program to sort that list based o...read more

Tell us how to improve this page.

Indiamart Intermesh Associate Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Swiggy Interview Questions
3.8
 • 430 Interviews
BigBasket Interview Questions
3.9
 • 355 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
JustDial Interview Questions
3.5
 • 329 Interviews
CARS24 Interview Questions
3.6
 • 325 Interviews
Info Edge Interview Questions
3.9
 • 319 Interviews
Lenskart Interview Questions
3.2
 • 299 Interviews
Square Yards Interview Questions
4.0
 • 198 Interviews
View all
Indiamart Intermesh Associate Software Engineer Salary
based on 94 salaries
₹5 L/yr - ₹10.8 L/yr
62% more than the average Associate Software Engineer Salary in India
View more details

Indiamart Intermesh Associate Software Engineer Reviews and Ratings

based on 13 reviews

4.3/5

Rating in categories

4.2

Skill development

4.1

Work-life balance

4.0

Salary

4.8

Job security

4.1

Company culture

4.4

Promotions

4.1

Work satisfaction

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

₹2.4 L/yr - ₹9 L/yr

Senior Executive
1.2k salaries
unlock blur

₹2 L/yr - ₹5.5 L/yr

Manager
886 salaries
unlock blur

₹3.4 L/yr - ₹9.5 L/yr

Sales Executive
671 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Relationship Manager
644 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