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 Technical Lead Interview Questions and Answers

Updated 22 Aug 2021

NTT Data Technical Lead Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Java 8, multithreading, design patterns, spring, micro services
  • Q2. CICD pilelines

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly switch on video if you want candidate to switch their video

Interview questions from similar companies

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 Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. About SAP PM and previous work
Round 2 - HR 

(1 Question)

  • Q1. About salary and others discussions

Interview Preparation Tips

Interview preparation tips for other job seekers - Thank you for the opportunity

Technical Lead Interview Questions & Answers

Cognizant user image Ravi Kumar Gundamala

posted on 16 Oct 2024

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

(2 Questions)

  • Q1. All AWS related questions
  • Q2. Automation questions specific cloud automation using Python
Round 2 - Behavioral 

(2 Questions)

  • Q1. Overall infrastructure handling & Trouble shooting
  • Q2. How you perform as Individual contributor/ get team lead opportunity how you handle it
  • Ans. 

    I excel as an individual contributor and transition smoothly into a team lead role by leveraging my technical expertise and leadership skills.

    • Demonstrate strong technical skills and consistently deliver high-quality work as an individual contributor.

    • Proactively seek opportunities to mentor and guide team members, showcasing leadership potential.

    • Communicate effectively with team members, fostering collaboration and driv...

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

(3 Questions)

  • Q1. Fake Interview, Didn't expect this from virtusa
  • Q2. FakeInterviews conducted, Didn;t expect this from virtusa
  • Q3. Virtusa Scammers

Interview Preparation Tips

Interview preparation tips for other job seekers - No real interview, fake interview only to understand the Gen AI topics & Projects.
He conducted interview, If you don't know go and learn from Coursera, DeepLearning.ai

Why wasting the time of peoples, Interviewer name : Sudhakar Chigurupati
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

Scenarios
Usecases
Aptitude algorithm

Round 2 - Case Study 

Parking lot algorithm design

Round 3 - HR 

(1 Question)

  • Q1. Salary expectation Role resp
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions related to microservices
  • Q2. How Springboot works internally
  • Ans. 

    Springboot is a framework that simplifies the development of Java applications by providing a set of tools and conventions.

    • Springboot uses embedded servers like Tomcat or Jetty to run applications.

    • It auto-configures many components based on dependencies added to the project.

    • It uses annotations like @SpringBootApplication to define the main class of the application.

    • Springboot uses Spring Framework's Inversion of Control...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Questions related to Kafka
  • Q2. SAGA Design pattern and how you can implement it
  • Ans. 

    SAGA design pattern is used for managing long-lived transactions in distributed systems.

    • SAGA pattern breaks down a long transaction into a series of smaller, more manageable steps.

    • Each step in the SAGA pattern is a separate transaction that can be rolled back if needed.

    • SAGA pattern ensures that the overall transaction is eventually consistent.

    • Examples of SAGA pattern implementation include using compensating transactio

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Questions about Interfaces,, Abstract Classes, Multi-Threading, Parallel Programming concepts, SQL Server
Round 2 - Technical 

(1 Question)

  • Q1. Questions about Design Patterns, SOLID Principles, Extension Methods, LINQ, Entity Framework
Round 3 - Behavioral 

(1 Question)

  • Q1. Questions about current project and my roles and responsibilities, my salary structure, my aspirations whether I want to be Architect or just Team Lead.
Round 4 - HR 

(1 Question)

  • Q1. My CTC and ECTC, and asked for negotiation, to which I said yes and accepted the compensation they can offer to me. But still offer letter not released without giving any reason.

Interview Preparation Tips

Interview preparation tips for other job seekers - After clearing all rounds, even then offer letter was not released. No proper reason shared for it. Very unprofessional.
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 Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SOA vs Micro Service
  • Ans. 

    SOA focuses on large, monolithic services while Microservices are small, independent services.

    • SOA is a centralized architecture with shared services, while Microservices are decentralized with each service having its own database.

    • SOA is typically implemented using ESB (Enterprise Service Bus), while Microservices communicate via lightweight protocols like HTTP or messaging queues.

    • SOA is more suitable for large enterpri...

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Is live data is life cycle aware. If it's aware what does ViewModel do?
  • Ans. 

    Yes

    • LiveData is lifecycle aware and can be used to observe changes in data.

    • ViewModel provides a way to store and manage UI-related data across configuration changes.

    • ViewModel can hold LiveData objects to provide data to the UI.

    • LiveData and ViewModel work together to ensure data consistency and prevent memory leaks.

  • Answered by AI
  • Q2. How does viewmodel survive when activity is destroyed on configuration?
  • Ans. 

    The ViewModel survives configuration changes by being retained by the system.

    • ViewModels are designed to survive configuration changes like screen rotations or language changes.

    • When an activity is destroyed and recreated, the ViewModel is not destroyed and retains its data.

    • The ViewModel is associated with the activity's lifecycle and is retained until the activity is finished.

    • The retained ViewModel instance can be acces...

  • Answered by AI
  • Q3. Advantage of mvp over mvc.
  • Ans. 

    MVP offers better separation of concerns and easier unit testing compared to MVC.

    • MVP separates the presentation layer from the business logic, making it easier to maintain and modify the codebase.

    • MVP allows for easier unit testing as the presenter can be tested independently from the view.

    • MVP provides better decoupling between components, enabling easier code reuse and scalability.

    • MVP promotes a clear separation of con...

  • Answered by AI
  • Q4. How does SSL pinning works?
  • Ans. 

    SSL pinning is a security technique that ensures a client only communicates with a server using a pre-defined public key.

    • SSL pinning involves hardcoding the server's public key in the client's code or configuration.

    • During the SSL handshake, the client checks if the server's public key matches the pinned key.

    • If the keys match, the connection is established; otherwise, it is rejected.

    • Pinning prevents man-in-the-middle at

  • Answered by AI
  • Q5. How do you achieve data security when saving data persistanly.
  • Ans. 

    Data security can be achieved through encryption, access controls, backups, and regular security audits.

    • Encrypt sensitive data using strong encryption algorithms.

    • Implement access controls to restrict unauthorized access to the data.

    • Regularly backup the data to prevent data loss.

    • Conduct regular security audits to identify and fix vulnerabilities.

    • Use secure protocols and communication channels for data transfer.

    • Implement...

  • Answered by AI
  • Q6. Where to save encription key?
  • Ans. 

    Encryption keys should be securely stored in a separate key management system.

    • Encryption keys should not be stored alongside the encrypted data.

    • Use a dedicated key management system (KMS) to store and manage encryption keys.

    • Implement strong access controls and authentication mechanisms for the KMS.

    • Consider using hardware security modules (HSMs) for added security.

    • Regularly rotate encryption keys to minimize the impact

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare your current implementation projected thoroughly.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Spring batch questions Questions related to asynch process
  • Q2. Java 8 stream api questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Java 8-related questions and project-related topics.

NTT Data Interview FAQs

How to prepare for NTT Data Technical Lead 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 Bgp, EIGRP, OSPF, QOS and RIP.
What are the top questions asked in NTT Data Technical Lead interview?

Some of the top questions asked at the NTT Data Technical Lead interview -

  1. Java 8, multithreading, design patterns, spring, micro servic...read more
  2. CICD pileli...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 Technical Lead Salary
based on 92 salaries
₹10 L/yr - ₹30 L/yr
8% more than the average Technical Lead Salary in India
View more details

NTT Data Technical Lead Reviews and Ratings

based on 7 reviews

4.7/5

Rating in categories

3.8

Skill development

4.2

Work-Life balance

4.3

Salary & Benefits

3.9

Job Security

4.0

Company culture

3.1

Promotions/Appraisal

3.8

Work Satisfaction

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