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

Filter interviews by

Indiamart Intermesh Test Engineer Interview Questions and Answers

Updated 25 Jul 2023

Indiamart Intermesh Test Engineer Interview Experiences

1 interview found

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 25 Jul 2023

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

I applied via Company Website and was interviewed before Jul 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 tips
Round 2 - Aptitude Test 

Basic questions related to thinking

Round 3 - Coding Test 

Selenium, manual ,automation, JIRA

Round 4 - HR 

(2 Questions)

  • Q1. Why you want to join this organisation?
  • Q2. Salary expectation from this job

Interview questions from similar companies

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

It was general maths and English questions

Interview Questionnaire 

3 Questions

  • Q1. 1. Find mistakes in the Json
  • Ans. 

    Identify mistakes in the given JSON.

    • The keys should be enclosed in double quotes.

    • The value of 'age' should be a number, not a string.

    • The value of 'isActive' should be a boolean, not a string.

    • The last item in the array should not have a comma after it.

  • Answered by AI
  • Q2. 2. Scenarios on a pen
  • Q3. 3. Database queries, sql

Skills evaluated in this interview

I was interviewed in Oct 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Consecutive Characters Problem Statement

    Given a matrix of lowercase characters with dimensions 'N' rows and 'M' columns, and a string 'STR', your goal is to find the longest consecutive character path le...

  • Ans. Recursive Approach

    In this approach, we are going to implement a recursive function. We will traverse the array matrix for each character of STR as a starting character. We will check if matrix[i][j] is equal to STR[index] then, we will create a function call to find the longest path. 

    1. We will create a recursive call on all 8 sides to find the next consecutive character in the function. We have to maintain a variabl...
  • Answered Anonymously
  • Q2. 

    Remove Duplicates Problem Statement

    You are given an array of integers. The task is to remove all duplicate elements and return the array while maintaining the order in which the elements were provided.

    ...

  • Ans. Brute Force

    We will traverse the whole array and check if that element previously occurred or not.

     

    The steps are as follows:

    • We initialize a vector ‘ans’ to store the final non-duplicate elements.
    • We will iterate over all the elements of the array, i.e., i = 0 to i = N - 1:
      • We will iterate over all the elements of the array excluding present element, i.e., j = 0 to j = N - 1:
        • If we get such positions such that arr[i] e...
  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Testing concepts and given scenarios and was asked to create test cases

  • Q1. How will you measure 4 liters using a 3-liter mug and a 5-liter mug?
  • Q2. What are all the possible test cases you would write for a login page?
Round 3 - HR 

Round duration - 45 minutes
Round difficulty - Medium

It was basic Hr round to know about personality of the candidate

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Test engineer in NoidaEligibility criterianoInfoedge interview preparation:Topics to prepare for the interview - java, testing concepts, oops, sql, seleniumTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : go through top 100 interview questions of selenium and java
Tip 2 : prepare java and oops concepts
Tip 3 : go through at least on framework with hands on experience

Application resume tips for other job seekers

Tip 1 : presice and mention all keywords. given in the job description
Tip 2 : resume should not be boring and leangthy with spell error

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Simple questions
Round 2 - Technical 

(1 Question)

  • Q1. Question related to string manupulation
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation

I applied via Naukri.com and was interviewed in Jul 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 tips
Round 2 - Coding Test 

It was a good coding round and i took almost 5 days to clear the interviews

Round 3 - Aptitude Test 

Good aptitude test, baitha ke acche se maari hamari

Round 4 - One-on-one 

(3 Questions)

  • Q1. How are you today, in the office?
  • Q2. What is regression testing?
  • Ans. 

    Regression testing is the process of testing changes made to a software application to ensure that existing functionalities are not affected.

    • It is performed after making changes to the software application

    • It ensures that existing functionalities are not broken

    • It helps in identifying defects that may have been introduced due to changes made

    • It can be automated to save time and effort

    • Examples include testing after bug fix

  • Answered by AI
  • Q3. How will you use selenium in software testing
  • Ans. 

    Selenium can be used for automated testing of web applications by simulating user interactions.

    • Selenium can automate repetitive manual testing tasks

    • It can be used to test web applications across different browsers and platforms

    • Selenium can simulate user interactions such as clicking buttons, filling forms, and navigating pages

    • It can also be used for regression testing and load testing

    • Selenium can generate detailed repo

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Info Edge Software Tester interview:
  • SQL
  • Data Admin
  • Dubai
Interview preparation tips for other job seekers - it was a new cmd and what i tested was very tough the you and me of the new company unicorn and my pop corn

Skills evaluated in this interview

I was interviewed in Oct 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Consecutive Characters Problem Statement

    Given a matrix of lowercase characters with dimensions 'N' rows and 'M' columns, and a string 'STR', your goal is to find the longest consecutive character path le...

  • Ans. Recursive Approach

    In this approach, we are going to implement a recursive function. We will traverse the array matrix for each character of STR as a starting character. We will check if matrix[i][j] is equal to STR[index] then, we will create a function call to find the longest path. 

    1. We will create a recursive call on all 8 sides to find the next consecutive character in the function. We have to maintain a variabl...
  • Answered Anonymously
  • Q2. 

    Remove Duplicates Problem Statement

    You are given an array of integers. The task is to remove all duplicate elements and return the array while maintaining the order in which the elements were provided.

    ...

  • Ans. Brute Force

    We will traverse the whole array and check if that element previously occurred or not.

     

    The steps are as follows:

    • We initialize a vector ‘ans’ to store the final non-duplicate elements.
    • We will iterate over all the elements of the array, i.e., i = 0 to i = N - 1:
      • We will iterate over all the elements of the array excluding present element, i.e., j = 0 to j = N - 1:
        • If we get such positions such that arr[i] e...
  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Testing concepts and given scenarios and was asked to create test cases

  • Q1. How will you measure 4 liters using a 3-liter mug and a 5-liter mug?
  • Q2. What are all the possible test cases you would write for a login page?
Round 3 - HR 

Round duration - 45 minutes
Round difficulty - Medium

It was basic Hr round to know about personality of the candidate

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Test engineer in NoidaEligibility criterianoInfoedge interview preparation:Topics to prepare for the interview - java, testing concepts, oops, sql, seleniumTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : go through top 100 interview questions of selenium and java
Tip 2 : prepare java and oops concepts
Tip 3 : go through at least on framework with hands on experience

Application resume tips for other job seekers

Tip 1 : presice and mention all keywords. given in the job description
Tip 2 : resume should not be boring and leangthy with spell error

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 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 tips
Round 2 - Coding Test 

It was a good interview all the time, and you too

Round 3 - Coding Test 

Coding test was on hacker eratch round and was very difficult question

Interview Preparation Tips

Topics to prepare for Info Edge Software Tester interview:
  • SQL Server
  • DBMS
  • Ninja
  • Operating Systems
Interview preparation tips for other job seekers - Yes it was a good interview and i validated it very hard way to get the customer success.

I was interviewed in Nov 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

  • Q1. 

    Sorting Characters by Frequency

    Given a string S, sort this string in increasing order based on the frequency of its characters. If two characters have the same frequency, the character with a lesser ASCI...

Round 2 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

  • Q1. You have two buckets, one with a capacity of 3 liters and the other with a capacity of 5 liters. How can you measure exactly 4 liters using these buckets?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Senior SDET in NoidaEligibility criteria7 CGPAInfoedge interview preparation:Topics to prepare for the interview - Arrays, Strings, Data Structure basics, OOPS, javaTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : programming a lot of it
Tip 2 : solve questions in différént ways

Application resume tips for other job seekers

Tip 1 : it should be unique to your personality 
Tip 2 : concise and clear

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Sep 2021. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java code to get second max number from an array
  • Ans. 

    Java code to get second max number from an array

    • Sort the array in descending order

    • Return the second element

  • Answered by AI
  • Q2. Few Selenium related and collection related concepts
Round 2 - Technical 

(1 Question)

  • Q1. Code to find max number second max salary query testng API related questions
Round 3 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident During the process...Make your approach clear

Skills evaluated in this interview

Indiamart Intermesh Interview FAQs

How many rounds are there in Indiamart Intermesh Test Engineer interview?
Indiamart Intermesh interview process usually has 4 rounds. The most common rounds in the Indiamart Intermesh interview process are Resume Shortlist, Aptitude Test and Coding Test.
How to prepare for Indiamart Intermesh Test 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 Automation Testing, Bug, Bug Life Cycle, Bug Reporting and Bugzilla.

Tell us how to improve this page.

Indiamart Intermesh Test 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
 • 429 Interviews
BigBasket Interview Questions
3.9
 • 350 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
JustDial Interview Questions
3.5
 • 328 Interviews
CARS24 Interview Questions
3.6
 • 322 Interviews
Info Edge Interview Questions
3.9
 • 318 Interviews
Lenskart Interview Questions
3.2
 • 296 Interviews
Square Yards Interview Questions
4.0
 • 197 Interviews
View all
Indiamart Intermesh Test Engineer Salary
based on 21 salaries
₹2 L/yr - ₹7 L/yr
17% less than the average Test Engineer Salary in India
View more details

Indiamart Intermesh Test Engineer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

3.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

5.0

Work satisfaction

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

₹2.3 L/yr - ₹9 L/yr

Senior Executive
1.2k salaries
unlock blur

₹2 L/yr - ₹5.5 L/yr

Manager
871 salaries
unlock blur

₹3.4 L/yr - ₹9.5 L/yr

Sales Executive
668 salaries
unlock blur

₹1 L/yr - ₹5.5 L/yr

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