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 Web Developer Interview Questions and Answers

Updated 19 Sep 2015

Matrimony.com Web Developer Interview Experiences

1 interview found

Web Developer Interview Questions & Answers

user image Anonymous

posted on 30 Jun 2015

Interview Preparation Tips

Round: Test
Experience: It was normal aptitude test involving maths and puzzles. There was no coding.

Round: HR Interview
Experience: They shortlisted some 25(not sure) after the test and first 10 had only HR and remaining 15 had both HR and technical interviews. I had only HR in which they asked about my project,why software,why our company,blah blah blah and normal stuff like this.

Skill Tips: First give some practise tests online, solve puzzles, learn atleast C till lists(linked lists etc), and do sorting algorithms.
Skills: Web Technologies, PHP, javascript, HTML, Mysql, redis, sphinx
College Name: IIT MADRAS

Interview questions from similar companies

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

Quantitative test on general questions like math , grammer

Round 2 - Technical 

(2 Questions)

  • Q1. Project details
  • Q2. How to handle the issues
  • Ans. 

    Handling issues in web development involves identifying, troubleshooting, and resolving technical problems.

    • Identify the root cause of the issue by debugging code and analyzing error messages

    • Troubleshoot by testing different solutions and checking for compatibility issues

    • Resolve the issue by implementing the appropriate fix and testing it thoroughly

    • Document the issue and solution for future reference

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via AmbitionBox and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Html coding, css coding, Javascript coding , bootstrap

Round 2 - Coding Test 

Html coding , javascript coding ,css coding

Interview Preparation Tips

Topics to prepare for Naukri Web Developer interview:
  • Web Development
Interview preparation tips for other job seekers - Hello, you can get the suitable job here. I advice you to continuously improve your skills and don't skip any point . Like this you can add something in your skills .
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on optimizations
  • Q2. Question on React Js
Round 2 - Coding Test 

Medium level DSA question in JS

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

I was interviewed in May 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Javascript output-based questions
  • Q2. React- search query
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

There was an online coding test on signal consisting of leetcode easy medium and hard

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Dec 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 

(2 Questions)

  • Q1. Asked about fundamentals of javascript and react
  • Q2. React lifecycle in functional components
  • Ans. 

    React lifecycle in functional components

    • useEffect hook replaces lifecycle methods

    • useEffect runs after every render by default

    • useEffect can be controlled by dependencies array

    • useEffect cleanup function can be used to clean up effects

    • useLayoutEffect hook runs synchronously after DOM mutations

  • Answered by AI
Round 3 - Coding Test 

Return numbers in array equal to sum

Interview Preparation Tips

Interview preparation tips for other job seekers - better understanding of javascript fundamentals and react

Skills evaluated in this interview

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

(5 Questions)

  • Q1. Self introduction?
  • Q2. How much struggle you faced to get this position?
  • Q3. What is your short term goal?
  • Q4. What is your long term goal?
  • Q5. Salary package?

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't get nervous while present any interview or any presentation and you must have good communication skills for this job.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via AmbitionBox and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Html coding, css coding, Javascript coding , bootstrap

Round 2 - Coding Test 

Html coding , javascript coding ,css coding

Interview Preparation Tips

Topics to prepare for Naukri Web Developer interview:
  • Web Development
Interview preparation tips for other job seekers - Hello, you can get the suitable job here. I advice you to continuously improve your skills and don't skip any point . Like this you can add something in your skills .

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Easy

  • Q1. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

  • Ans. Brute Force
    • The most trivial approach would be to find all triplets of the array and count all such triplets whose ‘SUM’ = 'K'.
    • We can find the answer using three nested loops for three different indexes and check if the values at those indexes sum up to 'K'.
    • Create a set  to keep the track of triplets we have visited. Run first loop from i = 0 to i = ‘N’ - 3, second loop from j = i + 1 to j = ‘N’ - 2 and third loop ...
  • Answered Anonymously
  • Q2. 

    Find Magic Index in Sorted Array

    Given a sorted array A consisting of N integers, your task is to find the magic index in the given array, where the magic index is defined as an index i such that A[i] = i...

  • Ans. Brute Force Approach
    • In this brute force approach, we will check each element one by one and try to find if there is any magic index in the given array or not.
    • In this approach, we will initialize our answer variable (say, ans) with ans = -1.
    • Then we will iterate in the array one by one (say, loop variable i) from the beginning and check if there is any magic index in our array or not.
    • If we find any index in the array suc...
  • Answered Anonymously
Round 2 - Video Call 

(3 Questions)

Round duration - 50 Minutes
Round difficulty - Hard

  • Q1. 

    Alien Dictionary Problem Statement

    You are provided with a sorted dictionary (by lexical order) in an alien language. Your task is to determine the character order of the alien language from this dictiona...

  • Ans. Permutations Approach

    Approach:

    • Find all the distinct characters present in all the words.
    • Generate all permutations of these distinct characters.
    • Treat each of the permutations as a correct sequence of alphabets. Now check if the given words are sorted according to this sequence. In order to do this, we will:-
      • For all words from 1 to n - 1, let the current word be ‘currWord’ and the next word be ‘nextWord’.
      • One by one compa...
  • Answered Anonymously
  • Q2. 

    Jumping Numbers Problem Statement

    Given a positive integer N, your goal is to find all the Jumping Numbers that are smaller than or equal to N.

    A Jumping Number is one where every adjacent digit has an a...

  • Ans. Brute Force Approach

    This is the basic solution to this problem.

     

    • Traverse all numbers from 0 to N.
    • For every traversed number, check if it is a Jumping Number or not.
    • To check if a number is jumping or not, we’ll make a boolean function named check(), which will return true if the number is a jumping number.
    • Inside this check function, we’ll first extract all the digits of the number and store it in an array.
    • Then we c...
  • Answered Anonymously
  • Q3. 

    Matching Prefix Problem Statement

    Given an integer N representing the number of strings in an array Arr composed of lowercase English alphabets, determine a string S of length N such that it can be used t...

  • Ans. Brute Force

    For each string in the array consider each of its prefix string one by one, now check what will be the cost if the current prefix string is used to delete matching prefixes from all the strings in the array. Keep track of the prefix string that had the lowest cost and finally return that string. 


     The steps are as follows :

    • Initialize minCost to INT_MAX it will store the minimum cost so far, and init...

  • Answered Anonymously
Round 3 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Frontend Developer in NoidaEligibility criteriaNo critertiaInfo Edge India (Naukri.com) interview preparation:Topics to prepare for the interview - Data Structure, Algorithms, JavaScript, HTML/CSS, ReactTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Be consistent, practice regularly whatever you read/study.
Tip 2 : Apply what you learn through code.

Application resume tips for other job seekers

Tip 1 : Have some projects on your resume.
Tip 2 : If you have an internship or training explain it in a proper way like what are the techniques you learned during your training.

Final outcome of the interviewSelected

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Swiggy Interview Questions
3.8
 • 424 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
JustDial Interview Questions
3.5
 • 327 Interviews
Meesho Interview Questions
3.7
 • 327 Interviews
PolicyBazaar Interview Questions
3.6
 • 319 Interviews
Info Edge Interview Questions
4.0
 • 316 Interviews
Zomato Interview Questions
3.8
 • 315 Interviews
View all
Matrimony.com Web Developer Salary
based on 5 salaries
₹3 L/yr - ₹4.5 L/yr
18% less than the average Web Developer Salary in India
View more details

Matrimony.com Web Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
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