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

Clear (1)

Indiamart Intermesh Software Developer Interview Questions and Answers

Updated 29 Oct 2024

Indiamart Intermesh Software Developer Interview Experiences

7 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. About yourself hobbies
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Asked 2-3 coding problems and OOPS concept

Round 2 - One-on-one 

(2 Questions)

  • Q1. How is MVC model works
  • Ans. 

    MVC is a software design pattern that separates an application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application

    • View is responsible for displaying the data to the user

    • Controller acts as an intermediary between Model and View, handling user input and updating the Model accordingly

    • MVC helps in achieving separation of concerns, making the code more orga

  • Answered by AI
  • Q2. Describe yourself

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Oct 2022. There were 3 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 Resume tips
Round 2 - Coding Test 

Easy DSA questions that can be solved easily.

Round 3 - Technical 

(1 Question)

  • Q1. Concepts of DBMS, OS and searching and Sorting algorithms, Trees

Interview Preparation Tips

Topics to prepare for Indiamart Intermesh Software Developer interview:
  • DSA
  • DBMS
  • OS
  • OOPS
Interview preparation tips for other job seekers - Can crack interviews by practising regular asked interviews questions and little bit of in depth concepts. Be confident while attending the interview.

Software Developer Interview Questions & Answers

user image HITESH BADABHAGNI

posted on 2 May 2024

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

I was interviewed before May 2023.

Round 1 - Aptitude Test 

60 mins - aptitude test, then followed by mcq's and 2 coding questions for total 2 hrs in mettl platform

Round 2 - Technical 

(1 Question)

  • Q1. Reverse elements in an array OOPS concepts Reverse LinkedList all with efficent time complexities Project related,Acid Properties
Round 3 - HR 

(1 Question)

  • Q1. General questions like where do you see yourself in next 5 years, why should we hire you etc...

Indiamart Intermesh interview questions for designations

 Software Engineer

 (4)

 Software Trainee

 (1)

 Software Programmer

 (1)

 PHP Developer

 (1)

 Associate Software Engineer

 (5)

 Software Engineer Trainee

 (2)

 Business Developer

 (1)

 QA Engineer

 (3)

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

I applied via Referral and was interviewed before Apr 2022. 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 Resume tips
Round 2 - Coding Test 

Coding Questions which includes comcept of DataStructure and Algorithms

Round 3 - Technical 

(1 Question)

  • Q1. Concept of OOPs DBMS SQL DataStructure
Round 4 - HR 

(1 Question)

  • Q1. Self Introduction Reason of Leaving previous company if you are not a fresher Expected salary

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be influent in your Coding Skills

Software Developer Interview Questions & Answers

user image Brhamanc Brhamanc

posted on 21 Dec 2020

Interview Questionnaire 

7 Questions

  • Q1. Some of The most important Salary Immideyetly Processes
  • Q2. Oneandof Yaer NoukrNoukri.com *****
  • Q3. Noukri.com Online Payment
  • Q4. Fast forward Noukri.com
  • Q5. Brhamanc IT Course hdca and core java programming language Brhamanc IT Information Technology World Asia Pacific region India Tamilnadu Coimbatore Chinnathdagam 641108
  • Q6. Brhamanc IT Course hdca and core java programming language
  • Q7. QUALIFICATION:10TH STANDARD

I applied via Company Website and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Fibonacci series, Prime function, linked lisk value access, query

Interview Preparation Tips

Interview preparation tips for other job seekers - First a test based on amcat. Followed by two technical interview. First Tech Interview basis and overview of you concept of ds and algo will ne asked. In second Tech interview indepth concept of topics such as arrays, linked list, os,algo, etc will be asked. Prepare ds and algo concept, dbms query & concept, internet basis such as protocols, methods,etc.

Best of luck

Interview questions from similar companies

I was interviewed before Dec 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round was purely based on Data Structures and Algorithms . One has to be fairly comfortable in solving Algorithmic problems to pass this round . Both the questions asked were quite common and luckily I had already prepared them from CodeStudio and LeetCode.

  • Q1. 

    Binary Tree Traversals Problem Statement

    Given a Binary Tree with 'N' nodes, where each node holds an integer value, your task is to compute the In-Order, Pre-Order, and Post-Order traversals of the binar...

  • Ans. 

    Compute the In-Order, Pre-Order, and Post-Order traversals of a Binary Tree given in level-order format.

    • Implement functions to perform In-Order, Pre-Order, and Post-Order traversals of a Binary Tree.

    • Use level-order input to construct the Binary Tree.

    • Traverse the Binary Tree recursively to generate the required traversals.

    • Ensure proper handling of null nodes represented by -1 in the input.

    • Return the three traversals as

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a Singly Linked List of integers, your task is to reverse the Linked List by altering the links between the nodes.

    Input:

    The first line of input is an intege...
  • Ans. 

    Reverse a singly linked list by altering the links between nodes.

    • Iterate through the linked list and reverse the links between nodes

    • Use three pointers to keep track of the current, previous, and next nodes

    • Update the links between nodes to reverse the list

    • Return the head of the reversed linked list

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

This round basically tested some concepts from Data Structures and File Manipulation .

  • Q1. 

    Intersection of Two Arrays Problem Statement

    Given two arrays A and B with sizes N and M respectively, both sorted in non-decreasing order, determine their intersection.

    The intersection of two arrays in...

  • Ans. 

    The problem involves finding the intersection of two sorted arrays efficiently.

    • Use two pointers to iterate through both arrays simultaneously.

    • Compare elements at the pointers and move the pointers accordingly.

    • Handle cases where elements are equal and update the intersection array.

    • Return the intersection array as the result.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPABig Basket interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating Systems, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Given a Linked list , print yes if it is palindrome else print no
  • Q2. Print the level order traversal of the binary tree in the spiral form
  • Ans. 

    Print the level order traversal of binary tree in spiral form

    • Perform level order traversal of the binary tree

    • Alternate the direction of traversal for each level

    • Use a stack to reverse the order of nodes in each level

    • Print the nodes in the order of traversal

  • Answered by AI
  • Q3. Maximum of all subarrays of size k(Expected Time Complexity O(N). Input : arr[] = {1, 2, 3, 1, 4, 5, 2, 3, 6} k = 3 Output : 3 3 4 5 5 5 6
  • Ans. 

    Find the maximum element in each subarray of size k in a given array.

    • Iterate through the array from index 0 to n-k.

    • For each subarray of size k, find the maximum element.

    • Store the maximum elements in a separate array.

    • Return the array of maximum elements.

  • Answered by AI
  • Q4. Given Two sorted array of size size n each. Find the Kth largest element in these two array (Expected Time Complexity Log(n))
  • Ans. 

    To find the Kth largest element in two sorted arrays, we can use the merge step of merge sort algorithm.

    • Merge the two arrays into a single sorted array using a modified merge sort algorithm.

    • Return the Kth element from the merged array.

  • Answered by AI
  • Q5. Website having several web-pages. And also there are lot many user who are accessing the web-site. say user 1 has access pattern : x->y->z->a->b->c->d->e->f user 2 has access pattern : z->a->b->c->d user 3...
  • Q6. Given two array , one of size m+n and contains m element and other position are empty , 2nd array is of size n and contains n element. both array are sorted , now merge the second array to first one such t...
  • Ans. 

    Merge two sorted arrays into one sorted array with expected time complexity of (m+n).

    • Use a two-pointer approach to compare elements from both arrays and merge them into the first array.

    • Start comparing elements from the end of both arrays and place the larger element at the end of the first array.

    • Continue this process until all elements from the second array are merged into the first array.

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 90 minutes

Skills: Algorithm , OS, DBMS, data structure
College Name: NIT BHOPAL

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: Coding questions were comparatively easy. There were three questions.1. Given a string map each character of which to the corresponding digit in a 10 digit mobile phone keypad.2. Don't remember, will add when it comes to my mind.3. Don't remember, will add when it comes to my mind.

Skills: Coding ability, Complete knowledge of working of internet.,
College Name: IIT Bombay
Contribute & help others!
anonymous
You can choose to be anonymous

Indiamart Intermesh Interview FAQs

How many rounds are there in Indiamart Intermesh Software Developer interview?
Indiamart Intermesh interview process usually has 2-3 rounds. The most common rounds in the Indiamart Intermesh interview process are Coding Test, Technical and Resume Shortlist.
How to prepare for Indiamart Intermesh Software Developer 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 Devops, Machine Learning, Python, Server Administration and Software Development.
What are the top questions asked in Indiamart Intermesh Software Developer interview?

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

  1. How is MVC model wo...read more
  2. Brhamanc IT Course hdca and core java programming language Brhamanc IT Informat...read more
  3. Concepts of DBMS, OS and searching and Sorting algorithms, Tr...read more

Recently Viewed

SALARIES

Eidiko Systems Integrators

INTERVIEWS

ivy

No Interviews

LIST OF COMPANIES

IVY SOFTWARE DEVELOPMENT SERVICES

Overview

INTERVIEWS

Thomson Reuters

No Interviews

JOBS

T-Machine Software Solutions

No Jobs

INTERVIEWS

T-Machine Software Solutions

No Interviews

CAMPUS PLACEMENT

Indo German Tool Room, Indore

SALARIES

EMERSON PROCESS MANAGEMENT

INTERVIEWS

EMERSON PROCESS MANAGEMENT

No Interviews

SALARIES

Eidiko Systems Integrators

Tell us how to improve this page.

Indiamart Intermesh Software Developer Interview Process

based on 6 interviews

Interview experience

4.3
  
Good
View more
Indiamart Intermesh Software Developer Salary
based on 38 salaries
₹5 L/yr - ₹15 L/yr
19% more than the average Software Developer Salary in India
View more details

Indiamart Intermesh Software Developer Reviews and Ratings

based on 15 reviews

4.3/5

Rating in categories

3.5

Skill development

4.3

Work-life balance

4.0

Salary

4.2

Job security

3.9

Company culture

3.6

Promotions

4.0

Work satisfaction

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

₹0 L/yr - ₹0 L/yr

Senior Executive
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
891 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Executive
674 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Relationship Manager
656 salaries
unlock blur

₹0 L/yr - ₹0 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent