Upload Button Icon Add office photos
Engaged Employer

i

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

Naukri Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 706 Reviews

Filter interviews by

Naukri Web Developer Interview Questions and Answers

Updated 7 May 2024

Naukri Web Developer Interview Experiences

1 interview found

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 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 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 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.

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Easy

  • Q1. Triplets with Given Sum

    You are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K.

    An array is said 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. Magic Index

    You are given a sorted array A consisting of N integers. Your task is to find the magic index in the given array.

    Note :
    A magic index in an array A[0 ... N - 1] is defined to be an index i s...
  • 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

    You have been given a sorted (lexical order) dictionary of an alien language. Write a function that finds the order of characters in the alien language. This dictionary will be given to yo...

  • 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

    You are given a positive integer N, your task is to find all the Jumping Numbers smaller than or equal to N.

    A number is defined as a Jumping Number if all adjacent digits in it have an ...

  • 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

    You are given an integer ’N’ denoting the length of the array ‘Arr’ of strings made up of lower case English alphabets. The cost of this array is equal to the sum of length of each string i...

  • 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

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Group Discussion 

What is your name
From
Qualification
Family background
Hobbies
Weekness strength
Thanks you

Round 2 - Aptitude Test 

Mathematics,communication skills,

Round 3 - HR 

(5 Questions)

  • Q1. Self introduction
  • Q2. My name is mounika
  • Q3. I caming form narasaraopet,palnadu district
  • Q4. Caming to my familybackground we have 4 members My mother name is pravathi My father name is narasi reddy I have one sister she studying b.tech 3rd year My father is a farmer My mother is farmer
  • Q5. My hobbies are reading books, movies, playing kho kho no weakness My goal is to became a software engineer

Interview Preparation Tips

Topics to prepare for Amazon Web Developer interview:
  • Web developer,lyuxer security,

Naukri Interview FAQs

How many rounds are there in Naukri Web Developer interview?
Naukri interview process usually has 2 rounds. The most common rounds in the Naukri interview process are Aptitude Test and Coding Test.

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
 • 315 Interviews
Zomato Interview Questions
3.8
 • 315 Interviews
View all

Naukri Web Developer Reviews and Ratings

based on 2 reviews

4.5/5

Rating in categories

3.8

Skill development

4.0

Work-life balance

3.0

Salary

3.8

Job security

3.8

Company culture

3.0

Promotions

3.8

Work satisfaction

Explore 2 Reviews and Ratings
Assistant Manager
130 salaries
unlock blur

₹3.8 L/yr - ₹10 L/yr

Senior Executive
99 salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Senior Executive Corporate Sales
95 salaries
unlock blur

₹4.5 L/yr - ₹8 L/yr

Assistant Manager Corporate Sales
75 salaries
unlock blur

₹4.3 L/yr - ₹9.5 L/yr

Deputy Manager
74 salaries
unlock blur

₹5 L/yr - ₹14 L/yr

Explore more salaries
Compare Naukri with

Info Edge

3.9
Compare

Quikr

3.8
Compare

Foundit

3.6
Compare

Times Business Solutions

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