Upload Button Icon Add office photos
Premium Employer

i

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

NTT Data

Compare button icon Compare button icon Compare
3.9

based on 3.6k Reviews

Filter interviews by

NTT Data Senior Developer Interview Questions and Answers

Updated 20 Sep 2024

NTT Data Senior Developer Interview Experiences

3 interviews found

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

(2 Questions)

  • Q1. Array qs reverse
  • Q2. Question about angular and react
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. How you will handle a team of freshers?

Senior Developer Interview Questions Asked at Other Companies

Q1. What is your current CTC and what is your expected CTC?
asked in GlobalLogic
Q2. 4. How to delete duplicate rows based on key in a table?
asked in TCS
Q3. What were the data retrieval steps in Informatica, while doing th ... read more
Q4. Write a Serverless function to expose a CRUD operation API using ... read more
asked in GlobalLogic
Q5. 3.How to implement SCDs and different between them?

I applied via Job Portal and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic RPa questions related with uipath and automation anywhere
  • Q2. Basic c# questions ooops interface abstract

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is easy.. prepare RPA related questions

Interview questions from similar companies

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Reverse an array using Java 8
  • Ans. 

    Using Java 8, reverse an array of strings

    • Use Arrays.stream() to convert the array to a stream

    • Use Collections.reverse() to reverse the stream

    • Use Collectors.toList() to convert the stream back to a list

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

(2 Questions)

  • Q1. Code a controller class , service class, entity and repository
  • Ans. 

    Code a controller, service, entity, and repository classes for a software application.

    • Create a controller class to handle incoming requests and interact with the service layer.

    • Develop a service class to implement business logic and interact with the repository.

    • Define an entity class to represent data in the application.

    • Implement a repository class to handle database operations for the entity.

  • Answered by AI
  • Q2. Basic questions about steams

Interview Preparation Tips

Topics to prepare for UST Senior Developer interview:
  • Spring Boot
  • Microserviecs

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Sliding Window find the subarray with sum equal to k
  • Ans. 

    Using sliding window technique to find subarray with sum equal to k.

    • Initialize two pointers at the start of the array.

    • Move the right pointer to expand the window until the sum is greater than or equal to k.

    • Move the left pointer to shrink the window if the sum exceeds k.

    • Repeat until the end of the array is reached.

    • Example: Input array [1, 4, 20, 3, 10, 5], k=33. Output: [20, 3, 10].

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between custom setting and custom metadata
  • Ans. 

    Custom settings are org-specific, while custom metadata can be deployed across orgs.

    • Custom settings are hierarchical and can be accessed using a hierarchy custom setting type

    • Custom metadata is deployable and can be used in managed packages

    • Custom settings are stored in the application cache, while custom metadata is stored in the metadata cache

  • Answered by AI
  • Q2. Difference between profile and role
  • Ans. 

    Profile is a summary of a person's skills and experience, while role is the specific job or position they hold within an organization.

    • Profile is a broader overview of a person's qualifications and background.

    • Role is a specific set of responsibilities and tasks assigned to an individual within a company.

    • Profiles can include education, work experience, skills, and achievements.

    • Roles can be defined by job titles such as S...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Easy exam sample available on youtube

Round 2 - Technical 

(2 Questions)

  • Q1. What are step functions.
  • Ans. 

    Step functions are a type of serverless function that allow you to create workflows by chaining multiple functions together.

    • Step functions are used to coordinate multiple AWS services into serverless workflows.

    • They allow you to define a series of steps in a workflow, with each step being a separate function.

    • You can use step functions to handle complex business logic, long-running processes, and error handling.

    • Step func...

  • Answered by AI
  • Q2. How to scale lambdas
  • Ans. 

    Scaling lambdas involves optimizing memory usage, increasing concurrency, and managing dependencies.

    • Optimize memory usage by reducing unnecessary variables and objects

    • Increase concurrency by using asynchronous programming and parallel processing

    • Manage dependencies by breaking down functions into smaller, more modular components

    • Consider using AWS Lambda Provisioned Concurrency for consistent performance

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. How did you handled a difficult collegelue
  • Ans. 

    I addressed the issue directly and professionally, seeking to understand their perspective and find common ground.

    • Approached the colleague privately to discuss the issue

    • Listened actively to their concerns and perspective

    • Sought to find common ground and reach a resolution

    • Maintained professionalism and respect throughout the conversation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Managerial round. Behavioral and cloud technology scenario based questions. Interviewer very friendly and open

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Core JavaScript concept
  • Q2. Write an example for the closure
  • Ans. 

    A closure is a function that has access to its own scope, as well as the outer scope in which it was defined.

    • A closure can access variables from its outer function even after the outer function has finished executing.

    • Closures are commonly used in event handlers, callbacks, and asynchronous code.

    • Example: const outerFunction = () => { const outerVar = 'I am outer'; return () => { console.log(outerVar); }; }; const innerF...

  • Answered by AI
  • Q3. Diffrence between Normal and Arrow Fuction and its example
  • Ans. 

    Arrow functions are concise syntax for writing functions in JavaScript, compared to normal functions.

    • Arrow functions do not have their own 'this' keyword, they inherit it from the parent scope.

    • Arrow functions do not have 'arguments' object.

    • Arrow functions cannot be used as constructors.

    • Arrow functions are more concise and easier to read compared to normal functions.

  • Answered by AI
  • Q4. React States and Props, Hook, Life cycle method

Skills evaluated in this interview

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

Sample code round to implement the weather API

Round 2 - HR 

(1 Question)

  • Q1. Discussion about salary package
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I was interviewed in Mar 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain oops concepts
  • Ans. 

    Object-oriented programming concepts like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation details and showing only the ne

  • Answered by AI
  • Q2. Explain solid principles
  • Ans. 

    SOLID principles are a set of five design principles that help developers create more maintainable and scalable software.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change.

    • Open/Closed Principle (OCP) - Software entities should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should be replaceable with objects of its subcla...

  • Answered by AI

NTT Data Interview FAQs

How many rounds are there in NTT Data Senior Developer interview?
NTT Data interview process usually has 1 rounds. The most common rounds in the NTT Data interview process are One-on-one Round and Technical.
How to prepare for NTT Data Senior Developer 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 NTT Data. The most common topics and skills that interviewers at NTT Data expect are Angular, Rest and SOAP.
What are the top questions asked in NTT Data Senior Developer interview?

Some of the top questions asked at the NTT Data Senior Developer interview -

  1. Basic RPa questions related with uipath and automation anywh...read more
  2. Basic c# questions ooops interface abstr...read more
  3. Question about angular and re...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 NTT Data interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
NTT Data Senior Developer Salary
based on 25 salaries
₹6 L/yr - ₹18 L/yr
21% less than the average Senior Developer Salary in India
View more details

NTT Data Senior Developer Reviews and Ratings

based on 3 reviews

4.8/5

Rating in categories

4.9

Skill development

3.9

Work-Life balance

3.7

Salary & Benefits

4.9

Job Security

4.6

Company culture

3.0

Promotions/Appraisal

4.7

Work Satisfaction

Explore 3 Reviews and Ratings
Software Engineer
932 salaries
unlock blur

₹2.8 L/yr - ₹11 L/yr

Senior Associate
767 salaries
unlock blur

₹1.1 L/yr - ₹9.3 L/yr

Network Engineer
647 salaries
unlock blur

₹1.8 L/yr - ₹10 L/yr

Software Developer
615 salaries
unlock blur

₹2.5 L/yr - ₹13 L/yr

Senior Software Engineer
512 salaries
unlock blur

₹6.5 L/yr - ₹24 L/yr

Explore more salaries
Compare NTT Data with

Tata Communications

4.1
Compare

Bharti Airtel

4.0
Compare

Reliance Communications

4.0
Compare

Vodafone Idea

4.1
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview