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

Clear (1)

Meritto Senior Software Engineer Interview Questions and Answers

Updated 21 Jul 2024

Meritto Senior Software Engineer Interview Experiences

3 interviews found

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

(2 Questions)

  • Q1. Techical questions and coding questions related profile.
  • Q2. Basic concepts about your programming skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company and positive interview response and smooth interview process and recommend to join .

I was interviewed in Sep 2021.

Interview Questionnaire 

2 Questions

  • Q1. Logical with array arrangements
  • Q2. OPPS, Abstraction, interface, traits...

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be logically strong.

Senior Software Engineer Interview Questions Asked at Other Companies

Q1. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more

I applied via Recruitment Consultant and was interviewed in Aug 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic Questions only, Oops concept, Android basic questions, work manager related, MVVM pattern, why kotlin?

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a well-motivated place in terms of work, they are really making the best use of technology that they can. The interview can be clarified by someone who has clear basics of technology, how things are really moving in technology. They are only examining the basics of technology.

Interview questions from similar companies

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

I was interviewed before May 2023.

Round 1 - Technical 

(1 Question)

  • Q1. DSA - level order traversal, sliding window.
Round 2 - One-on-one 

(1 Question)

  • Q1. Atomic transaction in distributed system
  • Ans. 

    Atomic transactions ensure that all operations in a transaction are completed successfully or none at all in a distributed system.

    • Atomic transactions guarantee that all operations within a transaction are either all successful or all rolled back.

    • In distributed systems, atomic transactions are crucial for maintaining data consistency across multiple nodes.

    • ACID properties (Atomicity, Consistency, Isolation, Durability) a...

  • Answered by AI
Round 1 - One-on-one 

(2 Questions)

  • Q1. Internal Working Of Hashmap, Java 8 features and two DSA questions one was based on the array and the second one was based on LinkedList. The first interview round was very excellent that's why they conduc...
  • Q2. Detect loop in a LinkedList,
  • Ans. 

    Detect loop in a LinkedList

    • Use two pointers, one moving at twice the speed of the other

    • If there is a loop, the faster pointer will eventually catch up to the slower one

    • If there is no loop, the faster pointer will reach the end of the list

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. System Design HLD and LLD round which was the final round.
  • Q2. HLD and LLD Designing round: Desing Architecture for ChatBot and Company Employee Data Management System.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have Good Practice in DSA and System Desing, Basic and OOPS concept of any One Programming Language should be very clear

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic js question closure, async defer and all
  • Q2. Create autosuggest debounce, pollyfill
  • Ans. 

    Autosuggest debounce is a feature that delays the search suggestions until the user stops typing, and a polyfill is a piece of code that provides functionality that is not natively supported by the browser.

    • Implement a debounce function to delay the autosuggest feature until the user stops typing.

    • Use a polyfill to provide support for the autosuggest feature in browsers that do not natively support it.

    • Example: Implement ...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. A programming question
  • Q2. React-native architecture and flatlist
  • Q3. Kadanes algorithm
  • Ans. 

    Kadane's algorithm is used to find the maximum subarray sum in an array of integers.

    • Iterate through the array and keep track of the maximum sum ending at each index.

    • At each index, choose between extending the previous subarray or starting a new subarray.

    • Example: For array [-2, 1, -3, 4, -1, 2, 1, -5, 4], the maximum subarray sum is 6 (from index 3 to 6).

  • Answered by AI
  • Q4. Scalablity, performance

Interview Preparation Tips

Interview preparation tips for other job seekers - Advance js topics and programming questions, scalablity and performance optimization

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Android activity lifecycle
  • Q2. Android MVVM architecture
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I was interviewed before Jun 2023.

Round 1 - Coding Test 

Hackerrank Online Coding test. DSA Questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. Create Traffic Lights in react.js with lights changing color with time config
  • Ans. 

    Create a traffic light simulation in react.js with changing colors based on time configuration.

    • Use React state to manage the current color of the traffic light

    • Set up a timer to change the color of the traffic light at specified intervals

    • Use CSS to style the traffic light and different colors for each light

  • Answered by AI
  • Q2. Polyfills of map, reduce, call, apply
  • Ans. 

    Polyfills are used to provide fallback support for older browsers that do not support certain JavaScript methods like map, reduce, call, and apply.

    • Polyfills are JavaScript code that replicate the functionality of newer features in older browsers.

    • They are commonly used for methods like map, reduce, call, and apply which may not be supported in all browsers.

    • For example, a polyfill for the map method would involve iterati...

  • Answered by AI
  • Q3. Other Javascript concept questions like closures, teporal dead zone, let const var difference, arrow function vs normal function
Round 3 - One-on-one 

(6 Questions)

  • Q1. Web app Optimization Techniques
  • Ans. 

    Web app optimization techniques focus on improving performance and user experience.

    • Minify and compress CSS, JavaScript, and HTML files

    • Optimize images and use lazy loading

    • Reduce server response time by caching data and using CDNs

    • Implement asynchronous loading for non-essential resources

    • Use browser caching and enable Gzip compression

  • Answered by AI
  • Q2. Javascript optimzation tehniques
  • Q3. Infinite scroll - how to handle large size data, efficient and smooth loading by scrolling up & down.
  • Ans. 

    To handle large size data for infinite scroll, use virtual scrolling, lazy loading, and optimize data fetching/rendering.

    • Implement virtual scrolling to render only the visible items on the screen, reducing memory usage and improving performance.

    • Use lazy loading to fetch more data as the user scrolls, avoiding loading all data at once.

    • Optimize data fetching and rendering by using efficient algorithms and data structures...

  • Answered by AI
  • Q4. Serverside vs clientside rendering
  • Ans. 

    Serverside rendering is when the HTML is generated on the server before being sent to the client, while clientside rendering is when the HTML is generated on the client's browser using JavaScript.

    • Serverside rendering is better for SEO as search engines can easily crawl the content.

    • Clientside rendering can provide a faster initial load time as only data is sent from the server.

    • Serverside rendering is more secure as sens...

  • Answered by AI
  • Q5. Microservices vs Monolithic architecture
  • Ans. 

    Microservices allow for modular and scalable architecture, while monolithic architecture is simpler but less flexible.

    • Microservices break down applications into smaller, independent services that communicate through APIs.

    • Monolithic architecture involves building the entire application as a single unit, making it easier to develop but harder to scale.

    • Microservices offer better fault isolation and scalability, while mono...

  • Answered by AI
  • Q6. How to acheive responsive acrooss all screen sizes
  • Ans. 

    Achieve responsive design by using media queries, flexible layouts, and fluid grids.

    • Use media queries to adjust styles based on screen size

    • Create flexible layouts that adapt to different screen sizes

    • Implement fluid grids to ensure content scales proportionally

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Create useDebounce hook
  • Ans. 

    Custom hook for debouncing user input in React applications

    • Accepts a value and delay as arguments

    • Uses useEffect to set a timeout to update the debounced value after the specified delay

    • Returns the debounced value and a function to update the input value

  • Answered by AI
  • Q2. Create language change functionality using useContext and useReducer
  • Ans. 

    Implement language change functionality using useContext and useReducer

    • Create a LanguageContext to store the current language state

    • Use useReducer to handle state changes for language selection

    • Dispatch actions to update the language state based on user selection

  • Answered by AI

Skills evaluated in this interview

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

Moving 0's in matrix
graph based question

Round 2 - Coding Test 

Array based question

Round 3 - Behavioral 

(1 Question)

  • Q1. Basic questions about project and work experience
Contribute & help others!
anonymous
You can choose to be anonymous

Meritto Interview FAQs

How many rounds are there in Meritto Senior Software Engineer interview?
Meritto interview process usually has 1 rounds. The most common rounds in the Meritto interview process are One-on-one Round.
How to prepare for Meritto Senior 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 Automation Testing, Functional Testing, JIRA, Manual Testing and Regression Testing.
What are the top questions asked in Meritto Senior Software Engineer interview?

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

  1. Basic Questions only, Oops concept, Android basic questions, work manager relat...read more
  2. Techical questions and coding questions related profi...read more
  3. Basic concepts about your programming skil...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Bajaj Auto

No Interviews

DESIGNATION

INTERVIEWS

Genpact

No Interviews

INTERVIEWS

Ketto

No Interviews

DESIGNATION

INTERVIEWS

Voylla

No Interviews

INTERVIEWS

Pace

No Interviews

INTERVIEWS

intellimation.ai

No Interviews

Tell us how to improve this page.

Meritto Senior Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Meritto Senior Software Engineer Salary
based on 17 salaries
₹8 L/yr - ₹14.8 L/yr
30% less than the average Senior Software Engineer Salary in India
View more details

Meritto Senior Software Engineer Reviews and Ratings

based on 7 reviews

3.6/5

Rating in categories

4.0

Skill development

3.4

Work-life balance

3.8

Salary

3.4

Job security

3.4

Company culture

3.6

Promotions

3.6

Work satisfaction

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

₹0 L/yr - ₹0 L/yr

Developer
27 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
26 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Manager
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
22 salaries
unlock blur

₹0 L/yr - ₹0 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent