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 for Freshers

Updated 20 Aug 2023

Top Indiamart Intermesh Associate Software Engineer Interview Questions and Answers for Freshers

  • Q1. Why java is known as platform independent language?
  • Q2. What are fundamental pillars of OOPS programming. Explain each of them in detail.
  • Q3. Given a list of custom class objects. Write a program to sort that list based on one of its properties.

Indiamart Intermesh Associate Software Engineer Interview Experiences for Freshers

2 interviews found

I applied via Campus Placement and was interviewed before May 2021. 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 - 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 applied via Campus Placement 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.

Associate Software Engineer Interview Questions Asked at Other Companies for undefined

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
Q4. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more
Q5. Add K Nodes Problem Statement You are given a singly linked list ... read more

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduction with basic knowledge of coding
  • Q2. OOPS concepts, Collection Qustions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(6 Questions)

  • Q1. What is difference between list and tuple?
  • Ans. 

    List is mutable and can be modified, while tuple is immutable and cannot be modified.

    • List is defined using square brackets [], while tuple is defined using parentheses ().

    • Elements in a list can be added, removed, or modified, while elements in a tuple cannot be modified.

    • Lists are typically used for collections of similar items, while tuples are used for collections of different items.

    • Lists have more built-in methods an...

  • Answered by AI
  • Q2. Find second highest salary of employee using django orm?
  • Ans. 

    Find second highest salary of employee using Django ORM.

    • Use the Django ORM to query the Employee model

    • Order the employees by salary in descending order

    • Skip the first employee (highest salary) and get the second employee (second highest salary)

  • Answered by AI
  • Q3. Find no of occurance in list output in dict
  • Ans. 

    The question asks to find the number of occurrences of each element in a list and output the result in a dictionary.

    • Iterate through the list and use a dictionary to keep track of the count of each element.

    • If an element is already in the dictionary, increment its count by 1. Otherwise, add it to the dictionary with a count of 1.

    • Finally, return the dictionary with the counts of each element.

  • Answered by AI
  • Q4. What is django middleware?
  • Ans. 

    Django middleware is a component that sits between the web server and the view, allowing for processing of requests and responses.

    • Middleware is a way to modify or process requests and responses globally in a Django application.

    • It can be used for authentication, session management, caching, logging, and more.

    • Middleware classes are defined in settings.py and executed in order.

    • Examples of middleware include Authentication...

  • Answered by AI
  • Q5. What is decorator?
  • Ans. 

    A decorator is a design pattern that allows behavior to be added to an individual object dynamically.

    • Decorators enhance the functionality of an object without modifying its structure.

    • They provide a flexible alternative to subclassing for extending functionality.

    • Decorators can be stacked to add multiple behaviors to an object.

    • Examples of decorators include logging, caching, and authentication decorators.

  • Answered by AI
  • Q6. What is generator?
  • Ans. 

    A generator is a function that can be paused and resumed, allowing it to produce a sequence of values over time.

    • Generators are defined using the function* syntax in JavaScript.

    • They use the yield keyword to pause execution and return a value.

    • Generators can be iterated over using a for...of loop.

    • They are useful for generating infinite sequences or lazily computing values.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - go feel free no such hard question any one can crack interview.

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Nth maximum element in an array with efficiency O(n) time
  • Ans. 

    Find the nth maximum element in an array efficiently in O(n) time

    • Iterate through the array once to find the maximum element

    • Repeat the process n times to find the nth maximum element

    • Use a variable to keep track of the current maximum element

  • Answered by AI
  • Q2. Python specific generator , decorator etc
Round 2 - Coding Test 

Few medium coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - medium question ,prepare well and succeed

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

This was MCQ+Coding round.

  • Q1. How can you check if two strings are anagrams of each other?
  • Ans. 

    Check if two strings are anagrams by comparing the sorted versions of the strings.

    • Sort both strings and compare if they are equal.

    • Use a hashmap to store the frequency of characters in each string and compare the maps.

    • Ignore spaces and punctuation when comparing the strings.

  • Answered by AI
Round 2 - Face to Face 

Round duration - 90 minutes
Round difficulty - Easy

This was face to face interview round.

Round 3 - Face to Face 

Round duration - 90 minutes
Round difficulty - Easy

This was face to face interview round.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute Of Technology, Silchar, Assam. I applied for the job as SDE - 1 in SiddharthnagarEligibility criteria6 CGPAAmazon interview preparation:Topics to prepare for the interview - Basic Computer Science backgroundTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Participate in live contests on websites like Codechef, Codeforces etc as much as possible.
Tip 2 : Practice previous interview questions from LeetCode, GeeksForGeeks.
Tip 3 : Revise Computer Science subjects like DBMS, OOPS thoroughly.

Application resume tips for other job seekers

Add projects and Internships if you have done any and add only those things which you really know.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

Interview started at 11:00 am. It was an online round. During the coding round I submitted optimized solution and got full acceptance of the solutions.

  • Q1. 

    Detect Cycle in a Directed Graph

    You are provided with a directed graph composed of 'N' nodes. You have a matrix called 'EDGES' with dimensions M x 2, which specifies the 'M' edges in the graph. Each edge...

  • Ans. 

    Detect cycle in a directed graph using depth-first search (DFS) algorithm.

    • Use DFS to traverse the graph and detect back edges indicating a cycle.

    • Maintain a visited array to keep track of visited nodes during traversal.

    • If a node is visited again during traversal and it is not the parent node, then a cycle exists.

    • Return true if a cycle is detected, false otherwise.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 80 Minutes
Round difficulty - Medium

Interview started at 10:00 am. Interview went well, I was able to connect with the interviewer and enjoyed the whole interview

  • Q1. 

    Next Smallest Palindrome Problem Statement

    Find the next smallest palindrome strictly greater than a given number 'N' represented as a string 'S'.

    Explanation:

    You are given a number in string format, a...

  • Ans. 

    Find the next smallest palindrome greater than a given number represented as a string.

    • Convert the string to an integer, find the next greater palindrome, and convert it back to a string.

    • Handle cases where the number is a palindrome or has all digits as '9'.

    • Consider both odd and even length numbers when finding the next palindrome.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 80 Minutes
Round difficulty - Medium

Interview started at 11:00 am. Interview went well.

  • Q1. 

    Boundary Traversal of a Binary Tree

    Given a binary tree of integers, your task is to return the boundary nodes of the tree in Anti-Clockwise direction starting from the root node.

    Input:

    The first line ...
  • Ans. 

    Return the boundary nodes of a binary tree in Anti-Clockwise direction starting from the root node.

    • Traverse the left boundary nodes in a top-down manner

    • Traverse the leaf nodes from left to right

    • Traverse the right boundary nodes in a bottom-up manner

    • Handle cases where duplicates occur in the boundary nodes

    • Implement the function without printing as printing is already managed

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaGood knowledge of Data Structures, Some great projects which are used by the usersAmazon interview preparation:Topics to prepare for the interview - Data Structures, Web development, System Design, Algorithms, Dynamic Programming, Database, OS, Networking, OOPS, DevOpsTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : For Data Structures number of questions doesn't matter. Try to understand the logic behind them and try to apply them in creating multiple scenario's. Learn them by heart. 
Tip 2 : For Web.Development Try to learn full stack development. See which part interests you more, Increase your knowledge horizon, Always try to build a system a system considering It will be served to millions of customers. By doing this 1-2 projects will increase and cover all the major things which one should learn in their career/college.

Application resume tips for other job seekers

Tip 1 : Always try to make it a single page 
Tip 2 : Always make resume company specific. eg. Data Structures part more if you are applying for MNC's eg. Amazon, Google, DE Shaw, browserstack.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Aug 2017.

Interview Questionnaire 

7 Questions

  • Q1. Implement Merge Sort.
  • Ans. 

    Merge Sort is a divide and conquer algorithm that sorts an array by dividing it into two halves, sorting them separately, and then merging the sorted halves.

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

  • Answered by AI
  • Q2. Given a BST containing distinct integers, and a number ‘X’, find all pairs of integers in the BST whose sum is equal to ‘X’.
  • Ans. 

    Find pairs of integers in a BST whose sum is equal to a given number.

    • Traverse the BST and store the values in a hash set.

    • For each node, check if (X - node.value) exists in the hash set.

    • If yes, add the pair (node.value, X - node.value) to the result.

    • Continue traversal until all nodes are processed.

  • Answered by AI
  • Q3. Given a set of time intervals in any order, merge all overlapping intervals into one and output the result which should have only mutually exclusive intervals.
  • Ans. 

    Merge overlapping time intervals into mutually exclusive intervals.

    • Sort the intervals based on their start time.

    • Iterate through the intervals and merge overlapping intervals.

    • Output the mutually exclusive intervals.

    • Example: [(1,3), (2,6), (8,10), (15,18)] -> [(1,6), (8,10), (15,18)]

  • Answered by AI
  • Q4. What are the different types of hashing? Suggest an alternative and a better way for Linear Chaining.
  • Ans. 

    Different types of hashing and alternative for Linear Chaining

    • Different types of hashing include division, multiplication, and universal hashing

    • Alternative for Linear Chaining is Open Addressing

    • Open Addressing includes Linear Probing, Quadratic Probing, and Double Hashing

  • Answered by AI
  • Q5. Implement AVL Tree.
  • Ans. 

    An AVL tree is a self-balancing binary search tree where the heights of the left and right subtrees differ by at most one.

    • AVL tree is a binary search tree with additional balance factor for each node.

    • The balance factor is the difference between the heights of the left and right subtrees.

    • Insertion and deletion operations in AVL tree maintain the balance factor to ensure the tree remains balanced.

    • Rotations are performed ...

  • Answered by AI
  • Q6. Minimum number of squares whose sum equals to given number n.
  • Ans. 

    Find the minimum number of squares whose sum equals to a given number n.

    • Use dynamic programming to solve the problem efficiently.

    • Start with finding the square root of n and check if it is a perfect square.

    • If not, then try to find the minimum number of squares required for the remaining number.

    • Repeat the process until the remaining number becomes 0.

    • Return the minimum number of squares required for the given number n.

  • Answered by AI
  • Q7. Insertion sort for a singly linked list.
  • Ans. 

    Insertion sort for a singly linked list.

    • Traverse the list and compare each node with the previous nodes

    • If the current node is smaller, swap it with the previous node

    • Repeat until the end of the list is reached

    • Time complexity is O(n^2)

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 2 coding questions (no penalty for wrong submission) and 20 Multiple Choice Questions(with negative marking). We were given 90 minutes to solve them. MCQs were based on Data Structures, OS, CN, C outputs, OOP etc.
Tips: Experience in Competitive Programming might help in solving coding questions. No constraints were mentioned and detailed Instructions related to problem were stated vaguely. So code carefully.
Duration: 1 hour 30 minutes
Total Questions: 22

Round: Technical Interview
Experience: The interviewer asked me to introduce myself and a brief introduction of the projects that I have done. She first asked me questions related to my project. After that she moved on to the data structures part.
Tips: Take your time to approach the problems and if the question is not clear ask the interviewer to explain it again.

Round: Technical Interview
Experience: The interviewer asked me about how my previous round went. After that, he asked me to introduce myself and a brief introduction of the projects that I have done. He first asked me a few questions related to my project. Then he moved on to the data structures part. In this round the interviewer gave me strict time limit for coding the solution on paper for each problem and as soon as I was done coding he gave me 2-3 minutes every time to find errors and debug my code.
Tips: Do not panic even if the interviewer sets time limit while solving problems. If the question is not clear ask the interviewer to explain it again.

College Name: The LNM Institute Of Information Technology, Jaipur

Skills evaluated in this interview

I was interviewed before May 2021.

Round 1 - Coding Test 

Round duration - 90 minutes
Round difficulty - Medium

 Around 65-70 people sat for the test. 15 people were shortlisted. It consisted of the following to be done in 90 minutes.

- 28 MCQs based on core CS 

- 2 Coding questions – everyone had different and random questions. Most questions were custom logic based (easy level) including some standard questions – LCS, LIS, topological sort.

Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Interviewer was very friendly. It started with the standard – tell me about yourself / introduce yourself type of question. Then he proceeded and asked two coding questions

  • Q1. 

    Remove Duplicates from a Sorted Linked List

    Your friend has homework to complete. Help him by removing duplicates from a sorted linked list.

    You are given the 'Head' of a sorted linked list. Modify the l...

  • Ans. 

    Remove duplicates from a sorted linked list without adjacent duplicates.

    • Traverse the linked list while comparing current and next nodes.

    • If they are equal, skip the next node by updating the current node's next pointer.

    • Repeat until the end of the list is reached.

  • Answered by AI
  • Q2. 

    Course Schedule Problem Statement

    You are enrolled as a student and must complete N courses, numbered from 1 to N, to earn your degree.

    Some courses have prerequisites, which means that to take course i,...

  • Ans. 

    Check if it is feasible to complete all courses with prerequisites.

    • Create a graph representing the prerequisites with courses as nodes and edges as prerequisites.

    • Perform a topological sort on the graph to check if there is a cycle (if there is, then it's not feasible to complete all courses).

    • If there is no cycle, then it is feasible to complete all courses.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

This round had only 1 question. The interviewer introduced himself. And he advised me to clearly understand the problem before proceeding.

  • Q1. 

    LCA of Binary Tree Problem Statement

    You are given a binary tree of distinct integers, along with two nodes, ‘X’ and ‘Y’. Your task is to determine the Lowest Common Ancestor (LCA) of ‘X’ and ‘Y’.

    The LC...

  • Ans. 

    Find the Lowest Common Ancestor of two nodes in a binary tree.

    • Traverse the binary tree to find the paths from the root to nodes X and Y.

    • Compare the paths to find the last common node, which is the Lowest Common Ancestor.

    • Implement a recursive function to efficiently find the LCA.

    • Handle cases where one node is an ancestor of the other.

    • Consider edge cases like when X or Y is the root node.

  • Answered by AI
Round 4 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Pretty Good Round. Fast Paced. We covered a lot of ground.

  • Q1. 

    Binary Search Tree Iterator Problem Statement

    Design and implement a class BSTIterator to perform an in-order traversal over a Binary Search Tree (BST). Your implementation should include the following me...

  • Ans. 

    Design and implement a class BSTIterator to perform in-order traversal over a Binary Search Tree (BST).

    • Implement a parameterized constructor to initialize the iterator with the root of the BST.

    • Implement a method 'next()' to return the next smallest element in in-order traversal.

    • Implement a method 'hasNext()' to check if there exists a next smallest element in traversal.

    • Ensure the output is the in-order traversal of the

  • Answered by AI
  • Q2. 

    Maximum Consecutive Ones Problem Statement

    Given a binary array 'ARR' of size 'N', your task is to determine the maximum length of a sequence consisting solely of 1’s that can be obtained by converting at...

  • Ans. 

    Find the maximum length of a sequence of 1's by converting at most K zeroes into ones in a binary array.

    • Iterate through the array and keep track of the current window of 1's and zeroes.

    • Use a sliding window approach to find the maximum length of consecutive 1's by flipping at most K zeroes.

    • Update the window based on the number of zeroes flipped and keep track of the maximum length found so far.

    • Return the maximum length ...

  • Answered by AI
  • Q3. 

    BFS in Graph Problem Statement

    You are given an undirected and disconnected graph G(V, E) having V vertices numbered from 0 to V-1 and E edges. Your task is to print its BFS traversal starting from the 0t...

  • Ans. 

    BFS traversal of an undirected and disconnected graph starting from vertex 0.

    • Start BFS traversal from vertex 0 and visit all connected nodes in sorted order.

    • Use a queue to keep track of nodes to visit next.

    • Keep a visited array to avoid revisiting nodes.

    • Print the BFS traversal path as the nodes are visited.

    • Example: For input V=5, E=4 and edges 0-1, 0-2, 1-3, 2-4, the BFS traversal will be [0, 1, 2, 3, 4].

  • Answered by AI
  • Q4. 

    Dijkstra's Shortest Path Problem Statement

    Given an undirected graph with V vertices (labeled 0, 1, ..., V-1) and E edges, each edge connects two nodes X and Y with a specified weight representing the dis...

  • Ans. 

    Dijkstra's algorithm is used to find the shortest path distance from a source node to all other nodes in an undirected graph.

    • Implement Dijkstra's algorithm to find the shortest path distance from node 0 to all other nodes in the graph.

    • Use a priority queue to efficiently select the next node with the shortest distance.

    • Initialize distances to all nodes as infinity, except for the source node which is 0.

    • Update distances t...

  • Answered by AI
Round 5 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Hard

Bar Raised Round. Definitely felt the difficulty.

  • Q1. 

    First Non-Repeating Character Problem Statement

    You are given a string consisting of English alphabet characters. Your task is to identify and return the first character in the string that does not repeat...

  • Ans. 

    Identify and return the first non-repeating character in a string, or the first character if all characters repeat.

    • Iterate through the string to count the frequency of each character

    • Iterate through the string again to find the first character with frequency 1

    • If no such character is found, return the first character of the string

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo criteriaAmazon interview preparation:Topics to prepare for the interview - Linked Lists, Trees, BFS, DFS, Backtracking, Graphs.Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 250 Questions, Give yourself enough time for preparation. Cramming won't take you very far. In books, I really liked Elements of Programming Interviews. 
Tip 2 : Make sure to brush up your basics - coding style, OOPs, Language features. They help in making an impression.
Tip 3 : Don't worry about solving the question in the interview. Learn to tackle any random problem with the best of your ability. More often than not, that'd be enough.

Application resume tips for other job seekers

Tip 1 : Keep your resume clean - no graphics, no multiple fonts. Keep it one page.
Tip 2 : Don't go over board in mentioning skills, only mention the things you are truly confident about.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

Round duration - 60 minutes
Round difficulty - Easy

Round 2 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

Round 3 - Face to Face 

Round duration - 60 minutes
Round difficulty - Easy

At the beginning of this round, the interviewer asked me about the data structures I knew. Linked lists, trees, graphs, arrays etc. was my answer. He asked me how well I knew Dynamic Programming. I said I wasn’t strong in that and he said that he would ask me a question on dynamic programming for sure.

Round 4 - Face to Face 

Round duration - 40 minutes
Round difficulty - Easy

 

The interviewer asked me if I was comfortable with the interview process so far and how the previous interviews were. I said it was good and he gave me the first problem to solve.

Round 5 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

The interviewer asked me some Com­puter Sci­ence‍ fundamentals in this round as well as some behavioural questions.

  • Q1. Implement a Trie data structure and write functions to insert and search for a few words in it.
  • Ans. 

    Implement a Trie data structure with insert and search functions.

    • Create a TrieNode class with children and isEndOfWord attributes.

    • Implement insert function to add words by iterating through characters.

    • Implement search function to check if a word exists by traversing the Trie.

    • Example: Insert 'apple', 'banana', 'orange' and search for 'apple' and 'grape'.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteria 7 CGPA Amazon interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Operating System, Database Management System, Object-Oriented Programming SystemTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Do lot of hard work and practice of  Data Structures and Algorithms based questions. I personally recommend you Coding Ninjas and Geeks For Geeks for interview preparation.

Application resume tips for other job seekers

Make your resume short and try to make it of one page only and do mention all your skills which you are confident of in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Indiamart Intermesh Interview FAQs

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

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

  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.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Swiggy Interview Questions
3.8
 • 428 Interviews
BigBasket Interview Questions
3.9
 • 359 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
CARS24 Interview Questions
3.6
 • 331 Interviews
JustDial Interview Questions
3.5
 • 328 Interviews
Info Edge Interview Questions
3.9
 • 317 Interviews
Lenskart Interview Questions
3.2
 • 304 Interviews
Square Yards Interview Questions
3.8
 • 198 Interviews
View all
Indiamart Intermesh Associate Software Engineer Salary
based on 94 salaries
₹5 L/yr - ₹10.8 L/yr
61% 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

₹0 L/yr - ₹0 L/yr

Senior Executive
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
894 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Executive
677 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