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 Dot Net Fullstack Developer Interview Questions, Process, and Tips

Updated 10 Sep 2024

NTT Data Dot Net Fullstack Developer Interview Experiences

1 interview found

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

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. Where are Logic App logs stored?
  • Ans. 

    Logic App logs are stored in Azure Monitor Logs (formerly known as Log Analytics).

    • Logic App logs are stored in Azure Monitor Logs, which is a centralized log storage and analytics service in Azure.

    • Logs can be viewed and analyzed using Azure Monitor Logs queries.

    • Logs can also be integrated with other Azure services for monitoring and alerting purposes.

  • Answered by AI
  • Q2. How to get the 5th top position data in Sql?
  • Ans. 

    Use the OFFSET and FETCH clauses in SQL to get the 5th top position data.

    • Use the ORDER BY clause to sort the data in descending order.

    • Use the OFFSET clause to skip the first 4 rows.

    • Use the FETCH clause to retrieve only the next row after skipping the first 4 rows.

  • Answered by AI
  • Q3. How do you implement custom middleware in .net core?
  • Ans. 

    Custom middleware in .NET Core can be implemented by creating a class that implements the IMiddleware interface and adding it to the application pipeline.

    • Create a class that implements the IMiddleware interface

    • Implement the InvokeAsync method in the middleware class to handle the request processing logic

    • Add the custom middleware to the application pipeline in the Configure method of the Startup class

  • Answered by AI
  • Q4. Explain Authentication & Authorization in asp.net core?
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines what resources a user can access.

    • Authentication confirms the identity of a user through credentials like username and password.

    • Authorization determines the permissions and access levels of a user based on their authenticated identity.

    • In ASP.NET Core, authentication is handled through middleware like Identity, OAuth, or JWT tokens.

    • Authorizati...

  • Answered by AI
  • Q5. Explain session management in asp.net core?
  • Ans. 

    Session management in ASP.NET Core involves storing and retrieving user-specific data during a user's visit to a website.

    • Session data is stored on the server side by default in ASP.NET Core

    • Session data can be accessed and manipulated using the HttpContext.Session property

    • Session data can be configured to use different storage providers such as in-memory, distributed cache, or SQL Server

    • Session data is typically used to...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for NTT Data Dot Net Fullstack Developer interview:
  • Dot Net
  • Azure
  • Angular
Interview preparation tips for other job seekers - Prepare from begginer to expert level on the JD

Skills evaluated in this interview

Dot Net Fullstack Developer Jobs at NTT Data

View all

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(5 Questions)

  • Q1. Demonstrate Function Overriding.
  • Ans. 

    Function Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its parent class.

    • In Function Overriding, a subclass can provide a specific implementation of a method that is already defined in its parent class.

    • The method in the subclass must have the same name, return type, and parameters as the method in the parent class to ove...

  • Answered by AI
  • Q2. Linq query with order by
  • Ans. 

    Using LINQ query to order data in C#

    • Use the OrderBy method to sort data in ascending order

    • Use the OrderByDescending method to sort data in descending order

    • You can also use ThenBy and ThenByDescending for secondary sorting

  • Answered by AI
  • Q3. What is Out Parameter with example
  • Ans. 

    Out parameter is used to pass data out of a method or function.

    • Out parameters are used when a method needs to return multiple values.

    • They are declared using the 'out' keyword in C#.

    • Example: void CalculateArea(int length, int width, out int area) { area = length * width; }

  • Answered by AI
  • Q4. Authentication and autherization, JWT Tocken
  • Q5. Reflection in C#
  • Ans. 

    Reflection in C# allows for inspecting and manipulating metadata of types at runtime.

    • Reflection is used to dynamically create instances of types, access properties, and invoke methods.

    • Examples include using reflection to load assemblies at runtime, inspect attributes of types, and generate code dynamically.

    • Reflection can be slow and should be used judiciously due to performance overhead.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture Dot Net Fullstack Developer interview:
  • OOPS
  • SQL
  • Javascript
Interview preparation tips for other job seekers - Basics of OOPS SQL JS will do.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. Questions from, Architecture, C#, LINQ, SQL, API, Routing, Authentications, Angular framework structure, data pass between parent and client, Lifecycle Hooks, .Net core vs .Net framework, Middleware, micr...

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through all the basics that you keep on avoid.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Custom middleware
  • Q2. Routing explained
Round 2 - Technical 

(1 Question)

  • Q1. Print “hello world!!” As hello one line. World 2nd line !! 3rd line
  • Ans. 

    Print 'hello world!!' in three separate lines.

    • Use a programming language's print function to output 'hello' on the first line, 'world' on the second line, and '!!' on the third line.

    • In JavaScript, you can achieve this using console.log() function with line breaks like console.log('hello\nworld\n!!');

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Type of redux and it's components
  • Ans. 

    Redux is a predictable state container for JavaScript apps. It helps manage the state of an application in a single immutable state tree.

    • Redux consists of three main components: store, actions, and reducers.

    • Store: holds the state of the application.

    • Actions: describe what happened in the application.

    • Reducers: specify how the state changes in response to actions.

    • Example: store.dispatch(action) is used to dispatch an acti

  • Answered by AI
  • Q2. Redux middleware

Interview Preparation Tips

Interview preparation tips for other job seekers - introduce yourself

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. JVM related Questions
  • Q2. Angular features
  • Q3. React Features and how to deploy
  • Ans. 

    React is a JavaScript library for building user interfaces. Deployment can be done using various methods.

    • React features include virtual DOM, component-based architecture, JSX syntax, and state management.

    • Deployment can be done using tools like Heroku, Netlify, AWS, or manually by building and serving static files.

    • Continuous integration and deployment (CI/CD) pipelines can be set up to automate the deployment process.

    • Se...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Wasted my time interviewers are not good in this company mostly they wont select you since your are not from south India. They will ask some question even if you ask all correct they will not select you bcos they already have selected other person and just finishes interview in 15min and so. Advice: Don't waste time.

Skills evaluated in this interview

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

Just some basic questions.

Round 2 - Coding Test 

Total 6 questions. 4 basic and 2 advanced.

Round 3 - Technical 

(2 Questions)

  • Q1. Write a program for Fibonacci?
  • Ans. 

    Program to generate Fibonacci series using Java

    • Use a loop to generate Fibonacci series

    • Start with 0 and 1 as the first two numbers

    • Add the previous two numbers to get the next number

    • Repeat the process until the desired number of terms

  • Answered by AI
  • Q2. Write a code for inheritance ?
  • Ans. 

    Inheritance in Java allows a class to inherit properties and behaviors from another class.

    • Create a parent class with common properties and methods

    • Create a child class that extends the parent class

    • Child class can access parent class properties and methods

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about internal working of JVM
  • Q2. Tell me about SAGA pattern in Microservices
  • Ans. 

    SAGA pattern is a design pattern used in microservices architecture to manage distributed transactions.

    • SAGA pattern breaks down a long-running transaction into a series of smaller, independent transactions.

    • Each step in the SAGA pattern is a separate service that communicates with other services through events.

    • If a step fails, compensating transactions are executed to rollback the changes made by previous steps.

    • Example:...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your current project structure
  • Q2. What is an API , how would you secure an API
  • Ans. 

    API stands for Application Programming Interface. It defines the methods and data formats that applications can use to communicate with each other.

    • API is a set of rules and protocols that allows different software applications to communicate with each other.

    • To secure an API, you can use authentication methods like OAuth, API keys, or JWT tokens.

    • Implementing encryption (HTTPS) and rate limiting can also enhance API secu...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to relocate to Bangalore
  • Q2. Tell me about one instance where you faced pressure and how did you overcome ?

Interview Preparation Tips

Interview preparation tips for other job seekers - You can assume easy to medium level questions.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn

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

Coding is little difficult so please go through logic

Round 3 - Technical 

(2 Questions)

  • Q1. The interview is based on the skills you mentioned in resume
  • Q2. What is the use of Java
  • Ans. 

    Java is a versatile programming language used for developing a wide range of applications, from web and mobile apps to enterprise systems.

    • Java is used for developing web applications, mobile applications, desktop applications, and enterprise systems.

    • It is commonly used in backend development for server-side programming.

    • Java is also used in game development, scientific applications, and big data processing.

    • It is platfor...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Atos is the only company where many freshers are forced to resign as they don't have projects

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. About company and your skills
  • Q2. Java full stack developet

NTT Data Interview FAQs

How many rounds are there in NTT Data Dot Net Fullstack 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.
How to prepare for NTT Data Dot Net Fullstack 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 .NET, ASP.NET, Angular, C# and Front End.
What are the top questions asked in NTT Data Dot Net Fullstack Developer interview?

Some of the top questions asked at the NTT Data Dot Net Fullstack Developer interview -

  1. How do you implement custom middleware in .net co...read more
  2. How to get the 5th top position data in S...read more
  3. Explain Authentication & Authorization in asp.net co...read more

Tell us how to improve this page.

NTT Data Dot Net Fullstack Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Dot Net Fullstack Developer

Hyderabad / Secunderabad,

Chennai

+1

9-11 Yrs

₹ 10-20 LPA

Explore more jobs
Software Engineer
935 salaries
unlock blur

₹2.8 L/yr - ₹11 L/yr

Senior Associate
761 salaries
unlock blur

₹1.2 L/yr - ₹7.3 L/yr

Network Engineer
654 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
510 salaries
unlock blur

₹6.5 L/yr - ₹25.5 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
Did you find this page helpful?
Yes No
write
Share an Interview