Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Ness Digital Engineering Team. If you also belong to the team, you can get access from here

Ness Digital Engineering Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 570 Reviews

Filter interviews by

Ness Digital Engineering Lead Engineer Interview Questions and Answers

Updated 31 Mar 2024

Ness Digital Engineering Lead Engineer Interview Experiences

1 interview found

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 31 Mar 2024

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

I was interviewed before Mar 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Check if a string is a palindrome
  • Ans. 

    Check if a string is a palindrome by comparing characters from start and end.

    • Create a function that takes a string as input

    • Use two pointers, one starting from the beginning and one from the end, to compare characters

    • If all characters match, return true; otherwise, return false

  • Answered by AI
  • Q2. Find answer using Java 8 stream api
  • Ans. 

    Using Java 8 stream API to find answer for a given question

    • Use stream() method on a collection to create a stream

    • Use filter() method to filter elements based on a condition

    • Use map() method to transform elements

    • Use reduce() method to perform a reduction operation on the elements

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

(1 Question)

  • Q1. Design parking lot application
  • Ans. 

    Design a parking lot application

    • Include features like parking space availability, reservation system, payment options

    • Implement real-time updates on available parking spots

    • Incorporate a user-friendly interface for easy navigation and booking

    • Integrate a notification system for reminders and alerts

    • Utilize a database to store information on parking spots, reservations, and payments

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was of average difficulty

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

I was tasked with creating a Spring Boot microservice.

Lead Engineer Interview Questions & Answers

Encora user image Om Prakash Bind

posted on 16 Jul 2024

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

(2 Questions)

  • Q1. Pls explain Plugins execution pipeline
  • Ans. 

    Plugins execution pipeline is the sequence of steps followed when a plugin is executed in a software system.

    • Plugins are first loaded into the system.

    • The system then determines the order in which the plugins will be executed.

    • Each plugin is executed according to its defined functionality.

    • Output from one plugin may serve as input to another plugin.

    • Finally, the system processes the results of all plugins and completes the

  • Answered by AI
  • Q2. What is the differnce b/w Business rule and JavaScript? When to use what?
  • Ans. 

    Business rules are guidelines or constraints defined by a business, while JavaScript is a programming language used for web development.

    • Business rules are specific to a business domain and define constraints or guidelines for operations.

    • JavaScript is a programming language used for creating interactive web pages and web applications.

    • Business rules are typically defined by business analysts or stakeholders, while JavaSc...

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. Where do you see yourself in next 5 years?
  • Q2. Explain any major challenge in your previous projects and how did you handle that?

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Java 8 features? What is functional interface? Difference between Runnable and Callable? Write java8 syntax in notepad? Mainly interviewer was focusing that how much syntax I know, which is not at all good...
  • Ans. 

    Java 8 introduced new features like lambda expressions, functional interfaces, and streams. Functional interfaces have a single abstract method. Runnable is a functional interface for running a task in a separate thread, while Callable is a functional interface that can return a result and throw checked exceptions.

    • Java 8 introduced lambda expressions for writing concise code.

    • Functional interfaces have a single abstract...

  • Answered by AI
  • Q2. Java 8 features
  • Q3. Streams syntax is required
  • Q4. Runnable and Callable
  • Q5. Way of Mutable object creation
  • Ans. 

    Mutable objects in Python can be created using various methods such as assignment, copy, or using built-in functions like dict() or list().

    • Assignment operator can be used to create mutable objects, for example: x = [1, 2, 3]

    • Copying an existing mutable object using the copy() method or slicing can create a new mutable object

    • Using built-in functions like dict() or list() to create mutable objects

  • Answered by AI

Interview Preparation Tips

Topics to prepare for HERE Technologies Lead Engineer interview:
  • Java 8
  • Threads
  • Syntax

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Core java in depth
  • Q2. Javascript in depth
  • Ans. 

    Javascript is a versatile programming language commonly used for web development.

    • Javascript is a high-level, interpreted programming language.

    • It is used for adding interactivity to websites, creating web applications, and building server-side applications.

    • Javascript can manipulate the DOM, handle events, and make asynchronous requests using AJAX.

    • It supports object-oriented, functional, and imperative programming styles...

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed before Nov 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. .Net core and Azure
  • Q2. Scenario based questions

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

Interview Questionnaire 

3 Questions

  • Q1. Custom priority queue implementation
  • Ans. 

    Custom priority queue implementation

    • Define a data structure to hold the elements and their priorities

    • Implement methods to add, remove and peek elements based on priority

    • Use a heap or binary tree to maintain the priority order

    • Consider edge cases like empty queue and duplicate elements

  • Answered by AI
  • Q2. Data structures problems
  • Q3. Internal working of map, treemap ansd set
  • Ans. 

    Map, TreeMap and Set are data structures used in Java to store and manipulate collections of objects.

    • Map is an interface that maps unique keys to values.

    • TreeMap is a class that implements the Map interface and stores its elements in a sorted order.

    • Set is an interface that stores unique elements.

    • TreeSet is a class that implements the Set interface and stores its elements in a sorted order.

    • All three data structures are p

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on data structures and algorithms before attending the interview

Skills evaluated in this interview

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

Round 1 - Technical 

(1 Question)

  • Q1. What is volatile how to use gdb what is singleton
  • Ans. 

    Questions on volatile, gdb usage, and singleton pattern.

    • Volatile is a keyword in C that tells the compiler not to optimize the variable.

    • GDB is a debugger tool used to analyze and debug code during runtime.

    • Singleton is a design pattern that restricts the instantiation of a class to one object.

    • To use GDB, compile the code with the -g flag, run the executable with gdb, set breakpoints, and use commands like 'next' and 'pr...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic preparation of C++ language is must

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Related to java web services

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good experience, asked questions on core java, web services and some coding questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java Exception handling, streams, parallel execution
  • Q2. Kafka internals
Round 2 - Technical 

(2 Questions)

  • Q1. Easy level leetcode question
  • Q2. Kafka internals
Round 3 - Behavioral 

(3 Questions)

  • Q1. Explain your current role and responsibilities
  • Q2. How would you create a map
  • Ans. 

    A map can be created using geographic data and software tools to visualize locations and their relationships.

    • Gather geographic data such as coordinates, boundaries, and landmarks

    • Use mapping software like Google Maps, ArcGIS, or Mapbox to input and visualize the data

    • Customize the map with labels, colors, and markers to enhance readability

    • Consider the audience and purpose of the map to determine the level of detail and i

  • Answered by AI
  • Q3. Cloud migration strategy

Skills evaluated in this interview

Ness Digital Engineering Interview FAQs

How many rounds are there in Ness Digital Engineering Lead Engineer interview?
Ness Digital Engineering interview process usually has 2 rounds. The most common rounds in the Ness Digital Engineering interview process are Technical and One-on-one Round.
How to prepare for Ness Digital Engineering 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 Ness Digital Engineering. The most common topics and skills that interviewers at Ness Digital Engineering expect are C++, Coding, Data Structures, Project Management and Agile.
What are the top questions asked in Ness Digital Engineering Lead Engineer interview?

Some of the top questions asked at the Ness Digital Engineering Lead Engineer interview -

  1. Check if a string is a palindr...read more
  2. Find answer using Java 8 stream ...read more
  3. Design parking lot applicat...read more

Tell us how to improve this page.

Fast track your campus placements

View all
Ness Digital Engineering Lead Engineer Salary
based on 92 salaries
₹13.5 L/yr - ₹36 L/yr
57% more than the average Lead Engineer Salary in India
View more details

Ness Digital Engineering Lead Engineer Reviews and Ratings

based on 12 reviews

3.7/5

Rating in categories

3.5

Skill development

4.2

Work-life balance

3.4

Salary

2.4

Job security

3.6

Company culture

2.7

Promotions

3.5

Work satisfaction

Explore 12 Reviews and Ratings
Senior Software Engineer
776 salaries
unlock blur

₹6 L/yr - ₹22.5 L/yr

Software Engineer
515 salaries
unlock blur

₹2.4 L/yr - ₹12 L/yr

Member Technical Staff
238 salaries
unlock blur

₹8.8 L/yr - ₹30.4 L/yr

Software Developer
221 salaries
unlock blur

₹2.5 L/yr - ₹11.8 L/yr

Senior QA Engineer
207 salaries
unlock blur

₹5.9 L/yr - ₹21.6 L/yr

Explore more salaries
Compare Ness Digital Engineering with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

HCLTech

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