Premium Employer

i

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

NTT DATA, Inc. Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

NTT DATA, Inc. Software Development Analyst Interview Questions and Answers

Updated 10 Nov 2023

NTT DATA, Inc. Software Development Analyst Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed before Nov 2022. There were 4 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 

(1 Question)

  • Q1. Core Java, Spring, Hibernate, Database Queries
Round 3 - One-on-one 

(1 Question)

  • Q1. Core Java, Spring, Hibernate, DB concepts and queries, Project Experience Explanation
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and Joining Date Discussion

Software Development Analyst Jobs at NTT DATA, Inc.

View all

Interview questions from similar companies

Interview Questionnaire 

5 Questions

  • Q1. How to give interview
  • Q2. Java
  • Q3. Database
  • Q4. HTML
  • Q5. C language

I applied via LinkedIn and was interviewed before Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What's is different between c and c++
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports object-oriented programming while C does not.

    • C++ has classes and templates while C does not.

    • C++ has better support for function overloading and default arguments.

    • C++ has a standard library that includes many useful functions.

    • C++ allows for both procedural and object-oriented programming.

    • C++ is generally considered to be a more complex langu

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont show your weakness

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is garbage collection?
  • Ans. 

    Garbage collection is an automatic memory management process.

    • It frees up memory that is no longer being used by the program.

    • It helps prevent memory leaks and crashes caused by running out of memory.

    • Examples of languages that use garbage collection are Java, Python, and Ruby.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to study basic level code

Skills evaluated in this interview

I appeared for an interview in Oct 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 Minutes
Round difficulty - Medium

1 CODING ROUND CONSISTING OF 2 CODING QUESTIONS.
1 MCQ ROUND CONTAINING TECHNICAL AND APTITUDE QUESTIONS.

  • Q1. 

    Ninja and Candies Problem

    Ninja, a boy from Ninjaland, receives 1 coin every morning from his mother. He wants to purchase exactly 'N' candies. Each candy usually costs 2 coins, but it is available for 1 ...

  • Ans. 

    Calculate the earliest day on which Ninja can buy all candies with special offers.

    • Iterate through each day and check if any special offer is available for candies Ninja wants to buy

    • Keep track of the minimum day on which Ninja can buy all candies

    • Consider both regular price and sale price of candies

  • Answered by AI
  • Q2. 

    Replace Character Problem Statement

    Given an input string S and two characters 'c1' and 'c2', your task is to replace every occurrence of the character 'c1' with the character 'c2' in the given string.

    I...

  • Ans. 

    Replace every occurrence of a character in a string with another character.

    • Iterate through the input string and replace 'c1' with 'c2' using string manipulation functions.

    • Return the updated string as the output.

  • Answered by AI
Round 2 - HR 

Round duration - 15 Minutes
Round difficulty - Easy

HR round

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BengaluruEligibility criteriaABOVE 6.5 CGPAAccenture interview preparation:Topics to prepare for the interview - DBMS, ALGORITHM, DATA SCIENCE, C++, JAVA, PYTHONTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : CLEAR YOUR BASICS.
Tip 2 : PRACTICE BASIC CODING QUESTIONS
Tip 3 : BE CLEAR ON YOUR PROJECTS

Application resume tips for other job seekers

Tip 1 : HAVE INTERNSHIPS
Tip 2 : HAVE PROJECTS(ATLEAST 1)

Final outcome of the interviewSelected

I applied via Recruitment Consultant and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. I had job Complete graduated with 80 per

Interview Preparation Tips

Interview preparation tips for other job seekers - I'm a fresher present I'm training for the java developer...

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

Interview Questionnaire 

1 Question

  • Q1. Related to JavaScript and angukar

Interview Preparation Tips

Interview preparation tips for other job seekers - As a UI developer JavaScript is a must thing.

I applied via Walk-in and was interviewed in Jan 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Basic structure of an HTML page
  • Ans. 

    Basic structure of an HTML page includes doctype declaration, html, head, and body tags.

    • DOCTYPE declaration specifies the HTML version

    • HTML tag wraps the entire content of the page

    • Head tag contains meta information, title, and links to external resources

    • Body tag contains the visible content of the page

  • Answered by AI
  • Q2. What is the difference between padding and margin?
  • Ans. 

    Padding is the space inside an element, while margin is the space outside an element.

    • Padding is used to create space between an element's content and its border.

    • Margin is used to create space between an element's border and the adjacent elements.

    • Padding is affected by the background color of the element, while margin is not.

    • Padding can be set individually for each side of an element (top, right, bottom, left), while ma...

  • Answered by AI
  • Q3. What is Box Model?
  • Ans. 

    Box Model is a concept in CSS where every element is treated as a box with content, padding, border, and margin.

    • Box Model consists of content, padding, border, and margin.

    • Content is the actual content of the box.

    • Padding is the space between the content and the border.

    • Border is the line that goes around the padding and content.

    • Margin is the space outside the border.

  • Answered by AI
  • Q4. What are different types of directives in Angular?
  • Ans. 

    Directives in Angular are markers on DOM elements that tell Angular to attach a specified behavior to that element.

    • There are three types of directives in Angular: Component, Structural, and Attribute.

    • Component directives are used to create reusable UI components.

    • Structural directives are used to change the structure of the DOM.

    • Attribute directives are used to change the appearance or behavior of an element.

    • Examples of ...

  • Answered by AI
  • Q5. Difference between JIT compiler and AOT?
  • Ans. 

    JIT compiles code at runtime while AOT compiles code before runtime.

    • JIT stands for Just-In-Time compilation and compiles code at runtime.

    • AOT stands for Ahead-Of-Time compilation and compiles code before runtime.

    • JIT is used in Java Virtual Machine (JVM) while AOT is used in languages like C and C++.

    • JIT can result in slower startup time but faster execution while AOT can result in faster startup time but slower execution...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to answer 80 % of the questions you are asked, you will be able to crack the interview

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java and spring based questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare java questions, spring and Data structure.

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. C++ oops concepts
  • Q2. Early and late binding
  • Q3. Copy constructors

Interview Preparation Tips

Interview preparation tips for other job seekers - Job profile was software developer for c++

NTT DATA, Inc. Interview FAQs

How many rounds are there in NTT DATA, Inc. Software Development Analyst interview?
NTT DATA, Inc. interview process usually has 4 rounds. The most common rounds in the NTT DATA, Inc. interview process are Resume Shortlist, Technical and One-on-one Round.
How to prepare for NTT DATA, Inc. Software Development Analyst 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, Inc.. The most common topics and skills that interviewers at NTT DATA, Inc. expect are Automation, Business process, Consulting, IT Services and Workflow.
What are the top questions asked in NTT DATA, Inc. Software Development Analyst interview?

Some of the top questions asked at the NTT DATA, Inc. Software Development Analyst interview -

  1. Core Java, Spring, Hibernate, DB concepts and queries, Project Experience Expla...read more
  2. Core Java, Spring, Hibernate, Database Quer...read more

Tell us how to improve this page.

NTT DATA, Inc. Software Development Analyst Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Join NTT DATA, Inc. Accelerate your career

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.3k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.7k Interviews
Capgemini Interview Questions
3.7
 • 4.9k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
DXC Technology Interview Questions
3.7
 • 806 Interviews
Nagarro Interview Questions
4.0
 • 766 Interviews
View all
NTT DATA, Inc. Software Development Analyst Salary
based on 386 salaries
₹3.5 L/yr - ₹11.5 L/yr
6% less than the average Software Development Analyst Salary in India
View more details

NTT DATA, Inc. Software Development Analyst Reviews and Ratings

based on 42 reviews

4.4/5

Rating in categories

4.1

Skill development

4.1

Work-life balance

3.4

Salary

4.0

Job security

4.3

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 42 Reviews and Ratings
Senior Associate
470 salaries
unlock blur

₹2 L/yr - ₹8 L/yr

Software Development Senior Analyst
414 salaries
unlock blur

₹4.5 L/yr - ₹18 L/yr

Software Development Analyst
386 salaries
unlock blur

₹3.5 L/yr - ₹11.5 L/yr

Software Development Specialist
298 salaries
unlock blur

₹7 L/yr - ₹19.5 L/yr

Senior Software Engineer
296 salaries
unlock blur

₹11.1 L/yr - ₹26.8 L/yr

Explore more salaries
Compare NTT DATA, Inc. with

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

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