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 560 Reviews

Filter interviews by

Ness Digital Engineering Development Leader Interview Questions and Answers for Experienced

Updated 13 Dec 2021

Ness Digital Engineering Development Leader Interview Experiences for Experienced

1 interview found

I was interviewed before Dec 2020.

Interview Questionnaire 

1 Question

  • Q1. Basic oops, DS and algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with basics.
Be confident express what you good at.

Interview questions from similar companies

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

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

Round 1 - Coding Test 

Asked some basic level questions

Round 2 - Coding Test 

Asked little bit hard questions

Round 3 - Coding Test 

Asked depth questions and wrote some sample programs

Round 4 - Technical 

(1 Question)

  • Q1. Wrote some sample program
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hackerrank coding round.

Round 2 - Technical 

(1 Question)

  • Q1. Questions and coding testing your OOPS knowledge
Round 3 - Technical 

(1 Question)

  • Q1. Every tech stack, SQL, OOPS, JAVA

Interview Preparation Tips

Interview preparation tips for other job seekers - Be familiar with designing and writing better code follwing OOPS, YAGNI,DRY principles.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Why functional interface when we have interface
  • Ans. 

    Functional interfaces provide a single abstract method for functional programming in Java.

    • Functional interfaces allow for lambda expressions and method references to be used as instances of the interface.

    • Interfaces with multiple abstract methods cannot be used for lambda expressions.

    • Example: java.util.function.Function is a functional interface with a single abstract method apply().

  • Answered by AI
  • Q2. Java 8 explain all features in short
  • Ans. 

    Java 8 introduced new features like lambda expressions, streams, functional interfaces, and default methods.

    • Lambda expressions: Allows writing concise code by enabling functional programming.

    • Streams: Provides a way to work with sequences of elements efficiently.

    • Functional interfaces: Interfaces with a single abstract method, used for lambda expressions.

    • Default methods: Allows adding new methods to interfaces without br

  • Answered by AI
  • Q3. If one functional interface can extend another interface
  • Ans. 

    Yes, one functional interface can extend another interface in Java.

    • Functional interfaces can extend other functional interfaces in Java.

    • The child interface can have only one abstract method, but can inherit default methods from the parent interface.

    • Example: interface Parent { void method1(); } interface Child extends Parent { void method2(); }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core 100%. spring boot, sql, can be in 80s

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

One coding question with 40-45 mcq

Round 2 - Technical 

(2 Questions)

  • Q1. 2 coding questions from array
  • Q2. In given array find the sum a*a+b*b=c*c
  • Ans. 

    Use a nested loop to iterate through the array and check for the sum of squares of two elements equal to the square of a third element.

    • Iterate through the array using a nested loop to compare all possible combinations of elements.

    • Calculate the sum of squares of two elements and check if it equals the square of a third element.

    • Return the elements if a match is found, otherwise continue iterating.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Core java questions, springboot, one string coding question

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How agile working methods
  • Ans. 

    Agile working methods involve iterative development, collaboration, flexibility, and continuous improvement.

    • Agile methods prioritize customer satisfaction through early and continuous delivery of valuable software.

    • Teams work in short iterations called sprints, focusing on delivering working software frequently.

    • Collaboration between team members, stakeholders, and customers is essential for success.

    • Flexibility to adapt ...

  • Answered by AI
  • Q2. Java oops concepts
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Contiguous array in java

Round 2 - Technical 

(2 Questions)

  • Q1. Microservices architecture
  • Q2. Saga design pattern
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is java and its features ?
  • Ans. 

    Java is a high-level programming language known for its platform independence and object-oriented features.

    • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)

    • It is object-oriented, allowing for the creation of reusable code and modular programs

    • Java is known for its robust standard library, providing a wide range of pre-built functionality

    • It supports multithreading, allowing ...

  • Answered by AI
  • Q2. What is java 8 and features
  • Ans. 

    Java 8 is a major release of the Java programming language with new features like lambda expressions, streams, and default methods.

    • Lambda expressions allow you to treat functionality as a method argument.

    • Streams provide a new abstraction to work with sequences of elements.

    • Default methods allow interfaces to have method implementations.

    • Date and Time API provides a new way to work with dates and times.

    • Optional class help

  • Answered by AI

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

Round 1 - Technical 

(1 Question)

  • Q1. Explain your Project. What features you have made Git related questions like code merge pull Jira tool Java questions mostly from collectiions Springboot related question Then some design pattern.

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice experience
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. Spring boot and microservices
  • Q2. Commonly used functional interfaces in your app.
  • Ans. 

    Commonly used functional interfaces include Predicate, Consumer, Supplier, and Function.

    • Predicate: used for boolean-valued functions of one argument.

    • Consumer: used for operations that take in one argument and return no result.

    • Supplier: used for operations that take no arguments and return a result.

    • Function: used for operations that take in one argument and return a result.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare thorough and go through all the basics . focus on advanced java

Skills evaluated in this interview

Ness Digital Engineering Interview FAQs

How to prepare for Ness Digital Engineering Development Leader interview for experienced candidates?
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 Agile Coaching, Data Modeling, HTML, Javascript and Object Oriented Programming.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.6
 • 3.6k Interviews
LTIMindtree Interview Questions
3.9
 • 2.7k Interviews
Mphasis Interview Questions
3.4
 • 773 Interviews
CitiusTech Interview Questions
3.4
 • 259 Interviews
View all

Fast track your campus placements

View all

Ness Digital Engineering Development Leader Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
784 salaries
unlock blur

₹6 L/yr - ₹25 L/yr

Software Engineer
514 salaries
unlock blur

₹2.7 L/yr - ₹12 L/yr

Member Technical Staff
238 salaries
unlock blur

₹8.8 L/yr - ₹30.4 L/yr

Software Developer
228 salaries
unlock blur

₹2.5 L/yr - ₹11.7 L/yr

Senior QA Engineer
222 salaries
unlock blur

₹6 L/yr - ₹21.4 L/yr

Explore more salaries
Compare Ness Digital Engineering with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

HCLTech

3.6
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