Upload Button Icon Add office photos
Engaged Employer

i

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

Matrimony.com Verified Tick

Compare button icon Compare button icon Compare
4.3

based on 1.6k Reviews

Filter interviews by

Matrimony.com Mean Stack Developer Interview Questions and Answers

Updated 25 Nov 2024

Matrimony.com Mean Stack Developer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is service dependency injection?
  • Ans. 

    Service dependency injection is a design pattern where a service is passed to a dependent object rather than the object creating the service itself.

    • Service dependency injection helps in achieving loose coupling between components.

    • It allows for easier testing as dependencies can be easily mocked or replaced.

    • Commonly used in frameworks like Angular for injecting services into components.

  • Answered by AI
  • Q2. What is lazy loading in Angular?
  • Ans. 

    Lazy loading in Angular is a technique used to load modules only when they are needed, improving performance by reducing initial load time.

    • Lazy loading helps in reducing the initial bundle size of the application.

    • It allows for faster loading times as only the required modules are loaded on demand.

    • Lazy loading is achieved by using the loadChildren property in the route configuration of Angular.

    • Lazy loading is commonly u...

  • Answered by AI
Round 2 - Coding Test 

Event loop, MongoDB Queries, Angular Basics

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - HR 

(5 Questions)

  • Q1. Why Amazon Software Developer?
  • Ans. 

    Amazon offers challenging projects, innovative technologies, and a collaborative work environment.

    • Opportunity to work on cutting-edge projects like Amazon Web Services (AWS) or Alexa

    • Access to vast resources and tools for development

    • Collaborative work culture that encourages learning and growth

    • Opportunity to impact millions of customers worldwide

    • Competitive compensation and benefits package

  • Answered by AI
  • Q2. Why do you want to work at amazon ?
  • Ans. 

    I want to work at Amazon because of their innovative culture, vast resources, and opportunities for growth.

    • Amazon is known for its innovative culture and cutting-edge technology.

    • They have vast resources and a global reach, providing opportunities to work on impactful projects.

    • Amazon offers great career growth and development opportunities for software developers.

    • I admire Amazon's customer-centric approach and focus on

  • Answered by AI
  • Q3. What are your strengths and weakness?
  • Ans. 

    My strengths include problem-solving skills and attention to detail. My weakness is sometimes being too critical of my own work.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Weakness: being too critical of my own work

  • Answered by AI
  • Q4. How would you solve?
  • Ans. 

    I would solve the problem by breaking it down into smaller tasks, analyzing requirements, designing a solution, coding, testing, and debugging.

    • Analyze requirements thoroughly before starting the development process

    • Break down the problem into smaller tasks to make it more manageable

    • Design a solution architecture that meets the requirements and is scalable

    • Code the solution using best practices and coding standards

    • Test th...

  • Answered by AI
  • Q5. What are the short term and long-term for teame or organisation?
  • Ans. 

    Short term goals focus on immediate tasks and objectives, while long-term goals involve strategic planning and growth.

    • Short term goals may include completing a specific project, improving team communication, or implementing a new software feature.

    • Long-term goals could involve expanding the team, increasing market share, or developing new products or services.

    • Short term goals help keep the team focused and motivated, wh...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Amazon Software Developer interview:
  • Excel
  • Data Entry
  • Project Management
  • Ms World
  • Programming
  • Google software developer
  • Microsoft software developer
Interview preparation tips for other job seekers - Here are some tips and advice for seekers looking to land a role at amazon software developer....
1. Understand Amazon's culture:?
2. Review job description ?
3.update your resume.? B
INTERVIEW PREPARATION
1.Research the team and role ?
2. Prepare to talk about your experience?
3.How would you solve?
4.What are your strengths and weakness?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. MC question on desing pattern
  • Q2. Graph question, tree and hash
  • Q3. Design Book my show
Round 2 - Coding Test 

Dp question of jump game

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is ambitionbox
  • Q2. How many questions are there in that
Round 2 - One-on-one 

(2 Questions)

  • Q1. Same as above questions
  • Q2. Same as above questions second one
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

BFS Implementation of a jug question.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Few hashmap questions
  • Q2. Object Oriented Programming questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was mostly around Frontend and JavaScript, asked basic questions on javascript. Then they gave me a problem to make form with multiple steps where every step has some form fields, handle state and validations for such form. After building the solution he asked follow up questions like what if form is dynamic.

Round 2 - Technical 

(1 Question)

  • Q1. It was a normal discussion around my past projects and experiences.
Round 3 - HR 

(1 Question)

  • Q1. Genral Discussion
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indraprastha Institute of Information Technology (IIIT), Delhi and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Maximum Sum Subarray
  • Q2. Insert node in binary search tree
  • Ans. 

    To insert a node in a binary search tree, compare the value of the node to be inserted with the current node and traverse left or right accordingly.

    • Start at the root node and compare the value of the node to be inserted with the current node.

    • If the value is less than the current node, move to the left child node. If it is greater, move to the right child node.

    • Repeat this process until reaching a leaf node, then insert ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Given an array of n numbers , find the kth largest find the sum from a th largest to bth largest n can be huge
  • Ans. 

    Find the sum of kth to bth largest numbers in a huge array efficiently.

    • Sort the array in descending order to easily find the kth and bth largest numbers.

    • Use a priority queue or min heap to efficiently find the kth and bth largest numbers without sorting the entire array.

    • Once you have the kth and bth largest numbers, iterate through the array and sum the numbers between them.

  • Answered by AI
  • Q2. Mostly elasticsearch related and company work related questions

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. System design Shortner URL
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Coding Test 

DSA Problem statement of Trie

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with DS ALgo

Matrimony.com Interview FAQs

How many rounds are there in Matrimony.com Mean Stack Developer interview?
Matrimony.com interview process usually has 2 rounds. The most common rounds in the Matrimony.com interview process are Technical and Coding Test.
What are the top questions asked in Matrimony.com Mean Stack Developer interview?

Some of the top questions asked at the Matrimony.com Mean Stack Developer interview -

  1. What is lazy loading in Angul...read more
  2. What is service dependency injecti...read more

Tell us how to improve this page.

Matrimony.com Mean Stack Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
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
 • 426 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
PolicyBazaar Interview Questions
3.6
 • 335 Interviews
JustDial Interview Questions
3.5
 • 328 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
Info Edge Interview Questions
3.9
 • 316 Interviews
Zomato Interview Questions
3.8
 • 316 Interviews
View all
Senior Relationship Manager
283 salaries
unlock blur

₹2.3 L/yr - ₹5.3 L/yr

Relationship Manager
241 salaries
unlock blur

₹1.7 L/yr - ₹5.1 L/yr

Senior Executive
132 salaries
unlock blur

₹1.5 L/yr - ₹5.4 L/yr

Customer Service Executive
111 salaries
unlock blur

₹1 L/yr - ₹4 L/yr

Team Lead
111 salaries
unlock blur

₹1.9 L/yr - ₹8.1 L/yr

Explore more salaries
Compare Matrimony.com with

Info Edge

3.9
Compare

JustDial

3.5
Compare

Naukri

4.0
Compare

99acres

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