Upload Button Icon Add office photos

Filter interviews by

Merative Interview Questions, Process, and Tips

Updated 29 Aug 2024

Top Merative Interview Questions and Answers

Merative Interview Experiences

Popular Designations

2 interviews found

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

I applied via Referral and was interviewed before Oct 2022. There were 3 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 - Technical 

(4 Questions)

  • Q1. Selenium webdriver basic knowledge. CI and AWS/Azure
  • Q2. What do you understand about ad hoc testing?
  • Ans. 

    Ad hoc testing is informal testing without any predefined test cases or plans.

    • Ad hoc testing is performed without any specific guidelines or documentation.

    • It is usually done randomly to explore the system and find defects.

    • Testers use their domain knowledge and experience to perform ad hoc testing.

    • Ad hoc testing can be useful for uncovering unexpected issues in the software.

    • Example: Clicking randomly on different button...

  • Answered by AI
  • Q3. What should be added to automation?
  • Ans. 

    Automation should include continuous integration, robust error handling, and integration testing.

    • Implement continuous integration to ensure code is regularly tested and integrated.

    • Include robust error handling to catch and handle exceptions during automation execution.

    • Integrate automation tests with other systems for end-to-end testing.

    • Consider adding performance testing to automation suite for comprehensive testing.

    • Ut...

  • Answered by AI
  • Q4. How to reverse and count individual character in a string
  • Ans. 

    To reverse and count individual characters in a string, iterate through the string and store each character count in a map.

    • Iterate through the string and store each character count in a map

    • Reverse the string by iterating from the end to the beginning

    • Count the individual characters by checking the map for each character

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Work under stress, how to react

Skills evaluated in this interview

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Ci/cd pipeline methodology
  • Q2. What is crm analytics detail
  • Ans. 

    CRM analytics detail refers to the analysis of customer data to gain insights and improve business strategies.

    • CRM analytics involves analyzing customer interactions, behaviors, and preferences.

    • It helps businesses make data-driven decisions to improve customer satisfaction and retention.

    • Examples of CRM analytics tools include Salesforce Einstein Analytics and Microsoft Dynamics 365 Customer Insights.

  • Answered by AI
  • Q3. Give an example sales pipeline in salesforce
  • Ans. 

    A sales pipeline in Salesforce is a visual representation of the stages a lead goes through before becoming a customer.

    • Prospecting: Identifying potential leads

    • Qualification: Determining if the lead is a good fit

    • Proposal: Presenting a solution to the lead

    • Negotiation: Discussing terms and closing the deal

    • Closed-Won: Lead becomes a customer

    • Closed-Lost: Lead does not become a customer

  • Answered by AI

Skills evaluated in this interview

Salesforce Developer Interview Questions asked at other Companies

Q1. Write a trigger to update contact when accounts phone changed.
View answer (6)

Jobs at Merative

View all

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Speak 5 minutes on Delhi metro, Women empowerment, Facebook, Social media, Politics, motivation, trending Etc.
  • Q2. Tell me about your previous day that what you have done from morning to evening?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident because if you are not confident in front of the interviewed then you can't reply properly to any question of him, You should have to be confident.

Interview Questionnaire 

1 Question

  • Q1. Python questions on data structure, pandas, beautifulsoup.

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

Interview Questionnaire 

1 Question

  • Q1. Oops concepts, angular , .net core middlewares

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic concepts well

I applied via Campus Placement and was interviewed in Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Best sorting although and its working they asked
  • Q2. Write a program to replace the character with another character in java.
  • Ans. 

    A program to replace a character with another character in Java.

    • Create a string variable with the original text

    • Use the replace() method to replace the character with another character

    • Print the new string with the replaced character

  • Answered by AI
  • Q3. SQL queries on order by, group by, and it's difference they asked.
  • Q4. Project management experience they asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare on the basis concepts and be perfect on your resume they are not expecting much from you as you are a fresher.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. It's was basic testing questios, specific to selenium and Java.
  • Q2. Explain framework
  • Ans. 

    A framework is a set of guidelines, standards, and tools used to develop software applications.

    • A framework provides a structure for developers to build upon

    • It includes pre-written code and libraries to simplify development

    • Frameworks can be specific to a programming language or platform

    • Examples include React for web development and TensorFlow for machine learning

  • Answered by AI
  • Q3. Basic java programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared, basically on manual testing, Selenium and Java

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Basically in any interview most common question is Biodata, next the things included in resume..... nothing more than that
  • Q2. Literally my answer is empty.....I started saying out of box so that the interviewer might get impressed but end of day I got rejected...😂😂😂
  • Q3. Not only these I faced more than 79 interview....not less than 250-300 rounds....but none has picked me

I applied via Naukri.com and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Case Study 
Round 2 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process is smooth and majorly asked direct questions and some scenarios

I applied via Campus Placement and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Swap two number with and without temporary variable
  • Ans. 

    Swap two numbers with and without temporary variable

    • Without temporary variable: Use addition and subtraction

    • With temporary variable: Use a third variable to store the value of one of the numbers

    • Example without temporary variable: a=5, b=7; a=a+b; b=a-b; a=a-b;

    • Example with temporary variable: a=5, b=7; temp=a; a=b; b=temp;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be afraid. It companies take interview to select you. And if you are selected in this company you are not lucky enough so try hard.

Skills evaluated in this interview

Merative Interview FAQs

How many rounds are there in Merative interview?
Merative interview process usually has 2 rounds. The most common rounds in the Merative interview process are One-on-one Round, Resume Shortlist and Technical.
How to prepare for Merative 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 Merative. The most common topics and skills that interviewers at Merative expect are Life Sciences, SQL, Javascript, Healthcare and Oracle.
What are the top questions asked in Merative interview?

Some of the top questions asked at the Merative interview -

  1. how to reverse and count individual character in a str...read more
  2. What do you understand about ad hoc testi...read more
  3. what should be added to automati...read more

Tell us how to improve this page.

Merative Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k Interviews
Accenture Interview Questions
3.8
 • 8.3k Interviews
Infosys Interview Questions
3.6
 • 7.7k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.7k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
LTIMindtree Interview Questions
3.7
 • 2.9k Interviews
View all

Merative Reviews and Ratings

based on 20 reviews

3.9/5

Rating in categories

3.4

Skill development

4.2

Work-life balance

3.6

Salary

3.2

Job security

3.8

Company culture

2.9

Promotions

3.5

Work satisfaction

Explore 20 Reviews and Ratings
Sr. Analyst, Product Support

Hyderabad / Secunderabad

2-5 Yrs

Not Disclosed

Sr. Network Engineer

Hyderabad / Secunderabad,

Chennai

12-15 Yrs

₹ 30-33.25 LPA

Workday Compensation Functional Consultant

Hyderabad / Secunderabad,

Bangalore / Bengaluru

1-4 Yrs

Not Disclosed

Explore more jobs
Software Developer
17 salaries
unlock blur

₹7.2 L/yr - ₹20 L/yr

Data Research Associate
8 salaries
unlock blur

₹2.8 L/yr - ₹3.3 L/yr

Data Engineer
6 salaries
unlock blur

₹7 L/yr - ₹9 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹13.6 L/yr - ₹19.8 L/yr

Senior Analyst
6 salaries
unlock blur

₹6 L/yr - ₹8.7 L/yr

Explore more salaries
Compare Merative with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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