Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Meritto Team. If you also belong to the team, you can get access from here

Meritto Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Meritto Softwaretest Engineer Interview Questions and Answers

Updated 18 Sep 2024

Meritto Softwaretest Engineer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Python basic questions
  • Q2. Sql questions on joins, update aggregate, update quries
Round 2 - Technical 

(2 Questions)

  • Q1. Decorator function in python, tell about blueprints
  • Ans. 

    Decorator function in Python is used to modify or extend the behavior of functions or methods without changing their code.

    • Decorators are functions that take another function as an argument and extend its behavior.

    • They are denoted by @decorator_name above the function definition.

    • Blueprints in Flask are decorators that are used to define routes for web applications.

    • Example: @app.route('/home') defines a route for the '/h

  • Answered by AI
  • Q2. Program to reverse a string
  • Ans. 

    Program to reverse a string

    • Create a function that takes a string as input

    • Convert the string into an array of characters

    • Use a loop to iterate through the array in reverse order

    • Append each character to a new string

    • Return the reversed string

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I appeared for an interview in Dec 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Senior taking technical round
Round 2 - Technical 

(1 Question)

  • Q1. Manger Taking technical round
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Program for a palindrome Number.
  • Ans. 

    Program to check if a number is a palindrome.

    • Convert the number to a string to easily check for palindrome

    • Reverse the string and compare it with the original string

    • If they are the same, the number is a palindrome

  • Answered by AI
  • Q2. React Lifecycle methods
  • Q3. Hooks in react?
  • Ans. 

    Hooks are a feature in React that allow you to use state and other React features in functional components.

    • Hooks were introduced in React 16.8.

    • They allow you to use state and other React features without writing a class.

    • Commonly used hooks include useState, useEffect, useContext, and useReducer.

    • Hooks must be used at the top level of your functional component.

    • Example: const [count, setCount] = useState(0);

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Create a High-level design
  • Ans. 

    Design a high-level architecture for a software system

    • Identify the main components of the system

    • Define the interactions between the components

    • Consider scalability, security, and performance

    • Choose appropriate technologies and frameworks

    • Create a diagram to visualize the architecture

  • Answered by AI
  • Q2. Questions on the design you created

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Delete nth node from end in linked list
  • Ans. 

    To delete the nth node from the end in a linked list, we can use a two-pointer approach.

    • Use two pointers, one to traverse the list and another to keep track of the nth node from the end.

    • Move the second pointer n steps ahead of the first pointer.

    • When the second pointer reaches the end of the list, the first pointer will be at the nth node from the end.

    • Adjust the pointers to delete the nth node.

  • Answered by AI
  • Q2. Project discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - revise your latest projects and technologies used thoroughly, prepare trees and linked list in DSA

Skills evaluated in this interview

I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Ds algo questions
  • Q2. Js basics
  • Q3. React.js

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good you should mainly focus on Ds algo part and basics of Js or other technology for which you are applying .

Interview Questionnaire 

1 Question

  • Q1. Three 2d matrix questions in first round from leetcode. One was simple dp question. Two questions in second round one questions was on trees. One questions was of strings. In third round which was engineer...
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

DSA medium leetcode questions - easy to solve

Round 2 - Coding Test 

DSA medium 2 questions and core questions 1.5 hrs

Round 3 - HR 

(5 Questions)

  • Q1. Managerial round and company fit check
  • Q2. Tell about company
  • Q3. Why should we hire you?
  • Q4. Tell something not in your resume
  • Q5. How would you handle deadlines?
  • Ans. 

    I prioritize tasks, communicate with stakeholders, and adjust resources as needed to meet deadlines.

    • Prioritize tasks based on importance and urgency

    • Regularly communicate with stakeholders to provide updates and address any issues that may impact deadlines

    • Adjust resources or seek help from team members if necessary to meet deadlines

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DSA and core concepts and be confident
Interview experience
4
Good
Difficulty level
-
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Question on dsa and string theory along with oops concepts

Round 2 - Technical 

(1 Question)

  • Q1. Question on java strings and arrays
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Coding Test 

Increasing triple subsequence, rest is easy hashmap

Interview Questionnaire 

2 Questions

  • Q1. Design Facebook
  • Ans. 

    Designing Facebook involves creating a social networking platform with features like user profiles, news feed, messaging, and more.

    • Create a user registration and login system

    • Develop a news feed algorithm to display relevant content

    • Implement a messaging system for users to communicate

    • Design a user profile page with customizable options

    • Incorporate features like groups, events, and pages

    • Ensure scalability and security of

  • Answered by AI
  • Q2. Reverse the linked list
  • Ans. 

    Reverse a linked list

    • Iterative approach using three pointers

    • Recursive approach with base case and recursive call

    • In-place reversal using stack

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare system design fhf rhf rhd r rhrhf rhfbt rhrif jdbtj djht jdbbtb fjjt

Skills evaluated in this interview

Meritto Interview FAQs

How many rounds are there in Meritto Softwaretest Engineer interview?
Meritto interview process usually has 2 rounds. The most common rounds in the Meritto interview process are Technical.
What are the top questions asked in Meritto Softwaretest Engineer interview?

Some of the top questions asked at the Meritto Softwaretest Engineer interview -

  1. Decorator function in python, tell about bluepri...read more
  2. Program to reverse a str...read more
  3. Sql questions on joins, update aggregate, update qur...read more

Tell us how to improve this page.

Meritto Softwaretest Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

MagicPin Interview Questions
2.6
 • 50 Interviews
Tokopedia Interview Questions
4.1
 • 25 Interviews
Furlenco Interview Questions
3.4
 • 21 Interviews
Droom Interview Questions
3.8
 • 19 Interviews
Nestaway Interview Questions
3.8
 • 18 Interviews
Inshorts Interview Questions
3.9
 • 16 Interviews
Ketto Interview Questions
3.8
 • 14 Interviews
Confluent Interview Questions
3.7
 • 14 Interviews
IndiQube Interview Questions
3.9
 • 13 Interviews
View all
Customer Success Manager
36 salaries
unlock blur

₹7 L/yr - ₹18 L/yr

Developer
27 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Software Developer
26 salaries
unlock blur

₹1.8 L/yr - ₹9.5 L/yr

Associate Manager
24 salaries
unlock blur

₹9 L/yr - ₹16 L/yr

QA Engineer
20 salaries
unlock blur

₹3 L/yr - ₹9.5 L/yr

Explore more salaries
Compare Meritto with

MagicPin

2.6
Compare

Awign Enterprises

3.9
Compare

Nestaway

3.8
Compare

Ketto

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