Upload Button Icon Add office photos
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.

Compare button icon Compare button icon Compare

Filter interviews by

NTT DATA, Inc. Lead Engineer Interview Questions, Process, and Tips

Updated 4 Oct 2021

NTT DATA, Inc. Lead Engineer Interview Experiences

1 interview found

I was interviewed in Apr 2021.

Interview Questionnaire 

6 Questions

  • Q1. Select columnname as 1 from employee table,Output if employee table contain 100 record?
  • Ans. 

    The question is asking to select a column named 'columnname' as '1' from the employee table and provide the output if the table contains 100 records.

    • The column 'columnname' does not exist in the employee table, so the query will result in an error.

    • The value '1' will be selected for each record in the employee table, resulting in 100 rows with the value '1'.

    • The output will be a single column with 100 rows, all containin

  • Answered by AI
  • Q2. Can we perform DML operation on UDF function?
  • Ans. 

    No, DML operations cannot be performed on UDF functions.

    • UDF functions are read-only and cannot modify the data in the database.

    • DML operations can only be performed on tables or views.

    • UDF functions can be used in SELECT statements to retrieve data.

    • Examples of UDF functions include string manipulation, date calculations, and mathematical operations.

  • Answered by AI
  • Q3. Diff b/w Virtual and new keyword?
  • Ans. 

    Virtual keyword is used for method overriding while new keyword is used for hiding base class member.

    • Virtual keyword is used to allow a derived class to override a method in the base class.

    • New keyword is used to hide a base class member in the derived class.

    • Virtual keyword is used with the base class method while new keyword is used with the derived class method.

    • Virtual keyword is used for runtime polymorphism while ne

  • Answered by AI
  • Q4. What is method hiding?
  • Ans. 

    Method hiding is a technique in object-oriented programming where a subclass provides a method with the same name as a method in its superclass.

    • Method hiding is also known as static polymorphism or compile-time polymorphism.

    • It allows a subclass to provide its own implementation of a method without affecting the superclass's implementation.

    • The method in the subclass must have the same name and signature as the method in...

  • Answered by AI
  • Q5. Return type of patial view and render partial view?
  • Ans. 

    Partial view returns HTML string while render partial view writes directly to response stream.

    • Partial view returns HTML string that can be used in the main view

    • Render partial view writes directly to response stream

    • Partial view can be used to render reusable components

    • Render partial view can be used to render a partial view without a layout

  • Answered by AI
  • Q6. Select a.*,b.* From employee a,Employee2 b? Output please...
  • Ans. 

    SQL query to select all columns from two tables.

    • Use SELECT statement to select columns from tables.

    • Use aliases to differentiate columns from different tables.

    • Separate table names with comma in FROM clause.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to prepare basic questions instead at high level ,answer question what interviewer want to listen, Don't try to give answer in hotpotch way else they will come with next ques ... Best of luck

Skills evaluated in this interview

Interview questions from similar companies

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 Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Remove duplicates in an array
  • Ans. 

    Use a hash set to remove duplicates in an array of strings

    • Create a hash set to store unique elements

    • Iterate through the array and add each element to the hash set

    • Convert the hash set back to an array to get the unique elements

  • Answered by AI
  • Q2. What is react virtual DOM
  • Ans. 

    React virtual DOM is a lightweight copy of the actual DOM, used for efficient updates and rendering in React applications.

    • Virtual DOM is a concept where a lightweight copy of the actual DOM is created in memory.

    • React uses virtual DOM to efficiently update and render components without directly manipulating the actual DOM.

    • When changes are made to the virtual DOM, React calculates the most efficient way to update the act...

  • Answered by AI
  • Q3. React hooks with example
  • Ans. 

    React hooks are functions that let you use state and other React features without writing a class.

    • React hooks were introduced in React 16.8 to allow functional components to have state and lifecycle methods.

    • useState() is a hook that allows you to add state to functional components.

    • useEffect() is a hook that allows you to perform side effects in functional components.

    • useContext() is a hook that allows you to use the con...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on core java concepts
  • Q2. Questions on SQL and Springboot
Round 2 - Technical 

(2 Questions)

  • Q1. Questions on Collection framework.
  • Q2. Questions on Springboot and core java
Round 3 - Client Interview 

(2 Questions)

  • Q1. Scenario based question
  • Q2. Stream API questions
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 Jul 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About your self
  • Q2. About work experience
Round 2 - HR 

(2 Questions)

  • Q1. Expected ctc lpa
  • Q2. Notice period of it less than 90 or not
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Spring boot questiions
  • Q2. Java stream api coding
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Aptitude Test 

Basic questions for aptitude genearal personl developing questions

Round 2 - Technical 

(2 Questions)

  • Q1. What is react native
  • Ans. 

    React Native is a framework for building mobile applications using JavaScript and React.

    • Allows developers to write code once and deploy it across multiple platforms

    • Provides access to native features and APIs of the device

    • Supports hot reloading for faster development

    • Used by companies like Facebook, Instagram, and Airbnb

  • Answered by AI
  • Q2. Diff use memo and use reducer
  • Ans. 

    Memo is used for optimizing performance by caching the result of a function, while reducer is used for managing state in React applications.

    • Memo is used to memoize the result of a function and prevent unnecessary re-renders.

    • Reducer is used to manage state in React applications by updating the state based on actions.

    • Memo can be used with useMemo hook in React to optimize performance.

    • Reducer is typically used with useRed...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Notice period about compnay

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

30min online test. Easy level.

Round 2 - Technical 

(2 Questions)

  • Q1. Technical interview with core concepts
  • Q2. Conceptual , core knowledge.
Round 3 - PdM discussion 

(1 Question)

  • Q1. Managereal round
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Graphql , Web workers vs Service workers
  • Ans. 

    GraphQL is a query language for APIs, Web workers run scripts in background threads, Service workers are scripts that run in the background and can intercept network requests.

    • GraphQL is a query language for APIs that allows clients to request only the data they need.

    • Web workers run scripts in background threads separate from the main browser thread, improving performance by handling tasks concurrently.

    • Service workers a...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Technical related to my experience
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How are partitions assigned in Kafka?
  • Ans. 

    Partitions in Kafka are assigned based on the number of partitions specified when creating a topic.

    • Partitions are assigned to brokers in a round-robin fashion.

    • The number of partitions should be a multiple of the number of brokers to ensure even distribution.

    • Reassignment of partitions can be done manually using the Kafka Reassign Partitions tool.

  • Answered by AI
  • Q2. Have you ever use terraform?
  • Ans. 

    Yes, I have experience using Terraform for infrastructure as code.

    • I have used Terraform to provision and manage infrastructure resources in a declarative manner.

    • I have written Terraform configuration files to define the desired state of infrastructure components.

    • I have used Terraform to automate the deployment of cloud resources such as virtual machines, storage, and networking.

    • I have experience with Terraform modules ...

  • Answered by AI

Skills evaluated in this interview

NTT DATA, Inc. Interview FAQs

How to prepare for NTT DATA, Inc. Lead Engineer 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, Linux, Unix, Coding and Consulting.
What are the top questions asked in NTT DATA, Inc. Lead Engineer interview?

Some of the top questions asked at the NTT DATA, Inc. Lead Engineer interview -

  1. Select columnname as 1 from employee table,Output if employee table contain 100...read more
  2. Can we perform DML operation on UDF functi...read more
  3. Select a.*,b.* From employee a,Employee2 b? Output please...read more

Tell us how to improve this page.

NTT DATA, Inc. Lead Engineer Salary
based on 14 salaries
₹17.2 L/yr - ₹25 L/yr
40% more than the average Lead Engineer Salary in India
View more details

NTT DATA, Inc. Lead Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

2.0

Work-life balance

1.0

Salary

5.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Senior Associate
458 salaries
unlock blur

₹2 L/yr - ₹7.8 L/yr

Software Development Senior Analyst
420 salaries
unlock blur

₹4.5 L/yr - ₹16 L/yr

Software Development Analyst
406 salaries
unlock blur

₹3.3 L/yr - ₹11.5 L/yr

Software Development Specialist
315 salaries
unlock blur

₹6.8 L/yr - ₹18.5 L/yr

Software Engineer
307 salaries
unlock blur

₹3 L/yr - ₹12.2 L/yr

Explore more salaries
Compare NTT DATA, Inc. with

Accenture

3.8
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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