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
3.7

based on 148 Reviews

Filter interviews by

Meritto Software Engineer Interview Questions and Answers

Updated 20 Sep 2024

Meritto Software Engineer Interview Experiences

2 interviews found

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

(1 Question)

  • Q1. Oops Inheritance and Incapsulation
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I was interviewed before Sep 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Sql join questions
  • Q2. Python decorartors

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find DuplicateYou have been given an integer array/list(ARR) of s ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Python Theory questions, Memory management
  • Q2. Basic Data Structures and Algorithms
Round 2 - Technical 

(2 Questions)

  • Q1. Basic data structure and algorithms
  • Q2. Development and deployment of python django projects
  • Ans. 

    Python Django is a popular web framework for developing and deploying web applications.

    • Use virtual environments to manage dependencies

    • Utilize Django's built-in admin interface for managing data

    • Deploy Django projects using platforms like Heroku or AWS

    • Consider using Docker for containerization

    • Implement continuous integration and deployment pipelines

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. High Level Design Components

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

2 dsa questions of easy/medium

Round 2 - Technical 

(1 Question)

  • Q1. Asked two dsa questions of leetcodeeasy/medium
Round 3 - Technical 

(1 Question)

  • Q1. Asked two dsa questions of leetcode easy/medium
Round 4 - Behavioral 

(1 Question)

  • Q1. Asked one dsa question on tree and discussion on resume and dbms os
Round 5 - HR 

(1 Question)

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

I applied via Internshala and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Easy to medium, can solve with leetcode medium

Round 2 - One-on-one 

(2 Questions)

  • Q1. Number of islands count
  • Ans. 

    Count the number of islands in a grid of '1's and '0's

    • Iterate through the grid and for each '1' encountered, perform a depth-first search to mark all connected '1's as visited

    • Increment the island count for each new island found

    • Ensure to handle boundary cases and check for visited nodes

  • Answered by AI
  • Q2. First and last index of a particular element in an array
  • Ans. 

    Find the first and last index of a specific element in an array of strings.

    • Iterate through the array and keep track of the index of the first and last occurrence of the element.

    • Return the first and last index once the iteration is complete.

    • Example: Array ['apple', 'banana', 'apple', 'orange'], element 'apple' - First index: 0, Last index: 2.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Design Questions to build a scalable micro service
  • Q2. Salary Discussion

I applied via Recruitment Consulltant and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Concurrency related general question

Interview Preparation Tips

Interview preparation tips for other job seekers - Concurrency related questions, prepare well on multithreading, locks.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 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 - Technical 

(2 Questions)

  • Q1. DSA round and medium level
  • Q2. Merge sort type/variation
Round 3 - Technical 

(1 Question)

  • Q1. Data Structure and Algorithms
Round 4 - Technical 

(1 Question)

  • Q1. System Design LLD round

I applied via Recruitment Consultant and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Merge the two list which has different intervals. So merge them on the basis where they are overlapping.
  • Ans. 

    Merge two lists with different intervals based on overlapping intervals.

    • Sort both lists based on start time.

    • Iterate through both lists and compare intervals for overlap.

    • Merge overlapping intervals and add non-overlapping intervals to the result list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more of the competitive coding interview questions, such as from the coding practice website like leetcode, careercup, geekfor geeks.

Skills evaluated in this interview

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

(5 Questions)

  • Q1. What are decorators
  • Ans. 

    Decorators are functions that modify the behavior of other functions or methods.

    • Decorators are used to add functionality to existing functions without modifying their code.

    • They are commonly used in Python to modify the behavior of functions or methods.

    • Decorators are often used for logging, authentication, caching, and more.

    • Example: @staticmethod or @classmethod decorators in Python.

  • Answered by AI
  • Q2. What is python and is application
  • Ans. 

    Python is a high-level programming language known for its simplicity and readability, commonly used for web development, data analysis, artificial intelligence, and more.

    • Python is versatile and can be used for various applications such as web development, data analysis, artificial intelligence, scientific computing, and automation.

    • It is known for its clean syntax and readability, making it a popular choice for beginner...

  • Answered by AI
  • Q3. What oops define it with coding examples
  • Ans. 

    Object-oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • Encapsulation: bundling data and methods that operate on the data into a single unit

    • Inheritance: creating new classes based on existing classes

    • Polymorphism: the ability for objects to be treated as instances of their parent class

    • Abstraction: hiding the complex implementation details and showing only th

  • Answered by AI
  • Q4. Write a code to print infinite fibonacci series
  • Ans. 

    Use a loop to continuously calculate and print Fibonacci numbers

    • Use a loop to calculate the next Fibonacci number by adding the previous two numbers

    • Print each Fibonacci number as it is calculated

    • Consider using a while loop to continuously calculate and print Fibonacci numbers

  • Answered by AI
  • Q5. Write a code to check palindrome using two pointer
  • Ans. 

    Code to check palindrome using two pointers in an array of strings

    • Initialize two pointers, one at the start of the string and one at the end

    • Compare characters at the two pointers, moving them towards each other until they meet or cross

    • If all characters match, the string is a palindrome

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare dsa

Skills evaluated in this interview

Meritto Interview FAQs

How many rounds are there in Meritto Software Engineer interview?
Meritto interview process usually has 1 rounds. The most common rounds in the Meritto interview process are One-on-one Round and Technical.
How to prepare for Meritto Software 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 Meritto . The most common topics and skills that interviewers at Meritto expect are Django, Flask, MySQL, Python and Angularjs.
What are the top questions asked in Meritto Software Engineer interview?

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

  1. Oops Inheritance and Incapsulat...read more
  2. Python decorart...read more
  3. Sql join questi...read more

Tell us how to improve this page.

Meritto Software Engineer Salary
based on 13 salaries
₹6.5 L/yr - ₹11 L/yr
11% more than the average Software Engineer Salary in India
View more details

Meritto Software Engineer Reviews and Ratings

based on 6 reviews

3.3/5

Rating in categories

3.4

Skill development

2.3

Work-life balance

2.9

Salary

2.5

Job security

2.5

Company culture

2.7

Promotions

2.9

Work satisfaction

Explore 6 Reviews and Ratings
Customer Success Manager
32 salaries
unlock blur

₹7 L/yr - ₹21 L/yr

Software Developer
30 salaries
unlock blur

₹2.4 L/yr - ₹10.5 L/yr

Developer
26 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Associate Manager
23 salaries
unlock blur

₹9 L/yr - ₹14 L/yr

Senior Software Developer
22 salaries
unlock blur

₹7 L/yr - ₹16 L/yr

Explore more salaries
Compare Meritto with

Paytm

3.3
Compare

upGrad

3.7
Compare

BYJU'S

3.1
Compare

Freshworks

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