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

Updated 14 Feb 2023

NTT Data Senior Software Developer Interview Experiences

3 interviews found

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

I applied via Campus Placement and was interviewed before Feb 2022. There were 5 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 - Aptitude Test 

Mostly it is a multiple choice questions round where all the arithmetic reasoning and logical questions were asked. It is followed by coding round.

Round 3 - Group Discussion 

My topic was Artificial Intelligence vs Human race. how it impacts labor.

Group Discussions are my cup of tea. It was all my game in this round and I could ace it.

Round 4 - Technical 

(1 Question)

  • Q1. Actually there were 2 technical rounds. Technical round1 was more easy and basic questions were asked based on my resume.
Round 5 - Technical 

(1 Question)

  • Q1. Technical round 2 was little hard for me. They asked me to write few code snippets.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared and be strong on basics. Al the best
Round 1 - Technical 

(1 Question)

  • Q1. Powerbuilder 1.What is lookupdisplay function and when do we use datawindow 2.how do you debug and track errors in powerbuilder 3. Difference between quick select and Sql select data source 4.how to connec...
  • Ans. 

    Answers to questions related to Powerbuilder for Senior Software Developer position.

    • lookupdisplay function is used to display a value from a related table in a datawindow

    • Debugging and error tracking can be done using the Powerbuilder debugger and log files

    • Quick select is used for simple queries while SQL select data source is used for complex queries

    • Powerbuilder can connect to different databases using ODBC or native d...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on details of the concepts and relate to your previous company experiences as an example to Interviewer. Be confident and clear while representing and be honest.

Skills evaluated in this interview

Senior Software Developer Interview Questions Asked at Other Companies

asked in Freshworks
Q1. Intersection of Linked ListYou are given two Singly Linked List o ... read more
asked in Freshworks
Q2. Middle Of Linked ListGiven the head node of the singly linked lis ... read more
asked in Freshworks
Q3. Overlapping IntervalsYou have been given the start and end times ... read more
asked in SAP
Q4. Sum Of Max And MinYou are given an array “ARR” of size N. Your ta ... read more
asked in Freshworks
Q5. Cube Sum PairsYou are given a positive integer N, and you have to ... read more

I applied via Referral and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They ask most of the questions based on your resume. So do not mention anything irrelevant in your resume. You will be asked to describe your recent or any of the projects and your role in that. Except few...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, be yourself. If you do not know the answer, just relax and say the truth that you do not have much experience on that (the question asked)

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Mvc arch & life cycle and basic oops & experianced based
  • Q2. All sql practical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - dont attend cts very bad experiance
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. React questions
  • Q2. JavaScript questions
Round 2 - Technical 

(2 Questions)

  • Q1. React questions
  • Q2. JavaScript questions
Round 3 - HR 

(2 Questions)

  • Q1. Company related questions
  • Q2. Questions based on previous experience
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Microservice Architecture
  • Q2. Rest api vs soap api
  • Ans. 

    REST API is lightweight, flexible, and widely used, while SOAP API is more rigid and heavy.

    • REST API uses standard HTTP methods like GET, POST, PUT, DELETE, while SOAP API uses XML for communication.

    • REST API is stateless and can be cached, making it faster, while SOAP API is stateful and requires more bandwidth.

    • REST API is easier to implement and understand, while SOAP API has more built-in security features.

    • Examples: R

  • Answered by AI

Skills evaluated in this interview

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

Questions from Resume, solving code snippets, DSA Algo

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain GCD, Core Data, Higher Order Functions, ARC
  • Ans. 

    GCD, Core Data, Higher Order Functions, ARC are key concepts in iOS development.

    • GCD (Grand Central Dispatch) is a technology for managing concurrent operations.

    • Core Data is a framework for managing the model layer objects in an application.

    • Higher Order Functions are functions that operate on other functions, taking them as arguments or returning them.

    • ARC (Automatic Reference Counting) is a memory management technology

  • Answered by AI
  • Q2. Weak Unowned, iOS App States
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Project related questions, database basic questions, python basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover all basic concepts and coding
Interview experience
4
Good
Difficulty level
-
Process Duration
2-4 weeks
Result
No response

I applied via Job Portal and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Regarding SQL i Cleared my Test
  • Q2. What is CTE ? And Write a Sample Query ?
  • Ans. 

    CTE stands for Common Table Expressions, used to create temporary result sets within a SQL query.

    • CTE is defined using the WITH keyword in SQL.

    • It helps in simplifying complex queries by breaking them into smaller, more manageable parts.

    • CTEs can reference themselves recursively, making them useful for hierarchical data.

    • Example: WITH cte AS (SELECT * FROM table_name) SELECT * FROM cte;

  • Answered by AI
  • Q3. Print Numbers between 1 to 20 , even/odd numbers
  • Ans. 

    Print even and odd numbers between 1 to 20.

    • Iterate from 1 to 20 and check if the number is even or odd.

    • Use a conditional statement to determine if the number is even or odd.

    • Print the number along with its type (even or odd).

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

(1 Question)

  • Q1. Max of the Questions which interviewer was asked i answered well

Interview Preparation Tips

Topics to prepare for GlobalLogic Senior Software Developer interview:
  • SQL Server
  • Performance Tuning

Skills evaluated in this interview

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Java and spring boot questions
  • Q2. Sort the array in ascending order
  • Ans. 

    Sorts an array of strings in ascending order.

    • Use a sorting algorithm like bubble sort, insertion sort, or quicksort.

    • Compare adjacent elements and swap them if they are in the wrong order.

    • Repeat the process until the array is sorted.

  • Answered by AI
  • Q3. Java collections questions
  • Q4. Project agile , cicdpipeline
Round 2 - Technical 

(1 Question)

  • Q1. Brush up java and spring and sorting questions

Skills evaluated in this interview

NTT Data Interview FAQs

How many rounds are there in NTT Data Senior Software Developer interview?
NTT Data interview process usually has 3 rounds. The most common rounds in the NTT Data interview process are Technical, Resume Shortlist and Aptitude Test.
What are the top questions asked in NTT Data Senior Software Developer interview?

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

  1. Powerbuilder 1.What is lookupdisplay function and when do we use datawindow 2.h...read more
  2. Actually there were 2 technical rounds. Technical round1 was more easy and bas...read more
  3. Technical round 2 was little hard for me. They asked me to write few code snipp...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 NTT Data interviews
Referral
Campus Placement
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
NTT Data Senior Software Developer Salary
based on 136 salaries
₹7 L/yr - ₹20 L/yr
At par with the average Senior Software Developer Salary in India
View more details

NTT Data Senior Software Developer Reviews and Ratings

based on 7 reviews

3.3/5

Rating in categories

2.8

Skill development

3.1

Work-Life balance

2.8

Salary & Benefits

3.6

Job Security

3.3

Company culture

3.0

Promotions/Appraisal

3.1

Work Satisfaction

Explore 7 Reviews and Ratings
Software Engineer
932 salaries
unlock blur

₹2.8 L/yr - ₹11 L/yr

Senior Associate
765 salaries
unlock blur

₹1.2 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