Upload Button Icon Add office photos
Engaged Employer

i

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

Nippon Data Systems Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 106 Reviews

Filter interviews by

Nippon Data Systems Node JS Developer Interview Questions and Answers

Updated 8 Dec 2024

Nippon Data Systems Node JS Developer Interview Experiences

1 interview found

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

I applied via Job Portal and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is event loop and work flow?
  • Q2. How to handle asynchronous function

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Javacript MCQ 

(1 Question)

  • Q1. 21 MCQ's on javascript concepts
Round 2 - Technical 

(2 Questions)

  • Q1. What is apply , call ,bind method?
  • Ans. 

    apply, call, and bind are methods used to manipulate the context of a function in JavaScript.

    • apply() - calls a function with a given 'this' value and arguments provided as an array

    • call() - calls a function with a given 'this' value and arguments provided individually

    • bind() - creates a new function that, when called, has its 'this' keyword set to the provided value

  • Answered by AI
  • Q2. What is closure , event loop , promise , setTimeout , inheritance in javascript (prototyping), design principles, call by value , call by reference , mixin?(Write examples in code editor)
Round 3 - Behavioral 

(2 Questions)

  • Q1. About your past projects?
  • Q2. Role and Responsibility, Why you want t join Talentica , Future goals etc?

Skills evaluated in this interview

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

1 hour online test ..

Round 2 - Technical 

(1 Question)

  • Q1. Programming related questions.
Round 3 - Technical 

(1 Question)

  • Q1. DSA round (easy to medium)
Round 4 - HR 

(1 Question)

  • Q1. Technical+ hr round
Round 5 - Behavioral 

(1 Question)

  • Q1. Technical questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Simple question...….. ।।

Round 2 - Technical 

(2 Questions)

  • Q1. Java questions Opps, coding ques
  • Q2. Opps Coding । । ।
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. How make a queue using a stack
  • Ans. 

    To implement a queue using a stack, use two stacks and simulate the queue operations.

    • Use two stacks, one for enqueue operation and one for dequeue operation.

    • For enqueue operation, simply push elements onto the stack used for enqueueing.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

    • Then pop from the dequeue stack to simulate dequeue operation.

  • Answered by AI
  • Q2. Create a linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to null

    • Add nodes by updating next pointers

    • Traverse the list by following next pointers

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Lookup vs graphlookup in mongodb
  • Ans. 

    Lookup is used to perform a left outer join in MongoDB, while graphlookup is used to perform recursive graph traversal.

    • Lookup is used to perform a left outer join between two collections in MongoDB.

    • Graphlookup is used to perform recursive graph traversal in a collection that contains graph data.

    • Lookup can only perform a single level join, while graphlookup can perform multiple levels of traversal.

    • Lookup is faster than

  • Answered by AI
  • Q2. Count frequency of each character in string
  • Ans. 

    Use a hashmap to count the frequency of each character in a string.

    • Create a hashmap to store characters as keys and their frequencies as values.

    • Iterate through the string and update the hashmap accordingly.

    • Return the hashmap with character frequencies.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Create a rest api all the way from controller to repository using NOTEPAD
  • Ans. 

    Creating a REST API from controller to repository using NOTEPAD

    • Create a controller class with mapping annotations for REST endpoints

    • Implement service layer to handle business logic and interact with repository

    • Define repository interface with methods for data access operations

    • Use Spring Boot for easy setup and configuration

    • Test API endpoints using tools like Postman

  • Answered by AI
  • Q2. Couldnt write custom mongodb query at repository layer in notepad which rejected my candidature.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was ok. I was not able to solve all the questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Remove the last element from a linkedlist
  • Q2. Some basic questions on oops dbms and os
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is normalization
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization helps in minimizing data redundancy by dividing the database into multiple tables.

    • It ensures data integrity by avoiding update anomalies.

    • Normalization is achieved through a series of rules called normal forms, such as 1NF, 2NF, 3NF, etc.

    • Example: In a database, instead of storing customer details i...

  • Answered by AI
  • Q2. What is reflection
  • Ans. 

    Reflection is the ability of a program to examine and modify its own structure and behavior at runtime.

    • Allows accessing metadata of types and members at runtime

    • Enables dynamic instantiation of objects

    • Facilitates invoking methods dynamically

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Simple question on maths

Round 2 - Technical 

(2 Questions)

  • Q1. Explain OOPS concept
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve complex problems

    • Key principles include encapsulation, inheritance, polymorphism, and abstraction

    • Encapsulation ensures that the internal state of an object is hidden from the outside world

    • Inheritance allows a class to inherit...

  • Answered by AI
  • Q2. Coding array questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Coding Test 

60mintues DSA level coding exam

Nippon Data Systems Interview FAQs

How many rounds are there in Nippon Data Systems Node JS Developer interview?
Nippon Data Systems interview process usually has 1 rounds. The most common rounds in the Nippon Data Systems interview process are Technical.
What are the top questions asked in Nippon Data Systems Node JS Developer interview?

Some of the top questions asked at the Nippon Data Systems Node JS Developer interview -

  1. What is event loop and work fl...read more
  2. How to handle asynchronous funct...read more

Tell us how to improve this page.

Nippon Data Systems Node JS Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Software Developer
53 salaries
unlock blur

₹3.2 L/yr - ₹10.2 L/yr

Software Engineer
48 salaries
unlock blur

₹3.5 L/yr - ₹10 L/yr

Senior Software Developer
28 salaries
unlock blur

₹5.4 L/yr - ₹9.7 L/yr

Senior Software Engineer
27 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Developer
26 salaries
unlock blur

₹3.7 L/yr - ₹6 L/yr

Explore more salaries
Compare Nippon Data Systems with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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