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

Filter interviews by

Ness Digital Engineering Interview Questions and Answers

Updated 31 May 2025
Popular Designations

52 Interview questions

A Senior Software Engineer was asked 10mo ago
Q. Define the O2C process.
Ans. 

O2C process stands for Order to Cash process, which involves all the steps from receiving an order to receiving payment.

  • O2C process starts with receiving an order from a customer.

  • It involves order processing, invoicing, and fulfillment of the order.

  • The final step is receiving payment from the customer.

  • It is a crucial process for businesses to ensure timely delivery and payment.

  • Example: An e-commerce company follow...

View all Senior Software Engineer interview questions
A QA Test Engineer was asked
Q. How do you declare an API parameter?
Ans. 

API parameters are declared in the request URL or body to pass data to the API endpoint.

  • Declare API parameters in the URL by adding them after the endpoint with a '?' and separating them with '&'

  • Declare API parameters in the request body for POST requests by sending key-value pairs in JSON format

  • Example: /api/users?id=123&name=John for URL parameters, {"id": 123, "name": "John"} for request body

View all QA Test Engineer interview questions
A QA Test Engineer was asked
Q. Write a program to take a screenshot using Selenium.
Ans. 

Selenium screen shot program captures screenshots during test execution.

  • Use Selenium WebDriver to capture screenshots in automated tests

  • Use getScreenshotAs() method to take screenshots

  • Save screenshots in a specified location for later analysis

View all QA Test Engineer interview questions
A Member Technical Staff was asked
Q. What challenges have you faced in automation?
Ans. 

Challenges in automation include complexity of systems, lack of standardization, and difficulty in handling edge cases.

  • Complexity of systems can make it difficult to create robust automation scripts.

  • Lack of standardization across different tools and technologies can lead to compatibility issues.

  • Handling edge cases, such as unexpected user inputs or system failures, can be challenging to automate.

  • Continuous mainten...

View all Member Technical Staff interview questions
A Member Technical Staff was asked
Q. What is a StaleElementException and how do you handle it?
Ans. 

Stale element exception occurs when an element is no longer attached to the DOM. It can be handled by refreshing the page or waiting for the element to become available again.

  • Refresh the page before interacting with the element

  • Wait for the element to become available again using explicit or implicit waits

  • Handle the exception using try-catch block

View all Member Technical Staff interview questions
A Member Technical Staff was asked
Q. Convert string to integer.
Ans. 

Use atoi() function in C to convert a string to an integer.

  • Use the atoi() function in C to convert a string to an integer.

  • Include the header file to use the atoi() function.

  • Example: int num = atoi("1234"); // num will be 1234

View all Member Technical Staff interview questions
A Member Technical Staff was asked
Q. How would you retrieve all options from a dropdown menu programmatically?
Ans. 

Use JavaScript to get all options from a drop down menu

  • Use document.getElementById() to select the drop down element

  • Access the options property of the element to get all options

  • Loop through the options to extract the text values

View all Member Technical Staff interview questions
Are these interview questions helpful?
A Senior Consultant was asked
Q. What are the different types of CDS views?
Ans. 

Different types of CDs views include hierarchical, network, relational, object-oriented, and multidimensional views.

  • Hierarchical view organizes data in a tree-like structure with parent-child relationships.

  • Network view allows for multiple parent-child relationships between records.

  • Relational view represents data in tables with rows and columns.

  • Object-oriented view treats data as objects with attributes and methods...

View all Senior Consultant interview questions
A Resource Manager was asked
Q. Describe the process flow for resource management.
Ans. 

The process flow for resource management involves identifying needs, allocating resources, monitoring usage, and optimizing efficiency.

  • Identify resource needs based on project requirements

  • Allocate resources based on availability and skill set

  • Monitor resource usage to ensure optimal utilization

  • Optimize resource efficiency through regular evaluation and adjustments

View all Resource Manager interview questions
An IT Engineer was asked
Q. How would you approach a connection issue with a client and remotely advise them to fix the problem?
Ans. 

I would use remote access tools to troubleshoot the connection issue with the client and guide them through the steps to fix it.

  • Initiate a remote session using tools like TeamViewer or AnyDesk to access the client's computer

  • Identify the root cause of the connection issue by checking network settings, firewall configurations, or internet connectivity

  • Guide the client through troubleshooting steps such as resetting t...

View all IT Engineer interview questions

Ness Digital Engineering Interview Experiences

63 interviews found

QA Engineer Interview Questions & Answers

user image Rima Paul

posted on 16 Sep 2021

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

Interview Questionnaire 

9 Questions

  • Q1. Brief Introduction
  • Q2. What is the Page Object Model
  • Ans. 

    Page Object Model is a design pattern used in test automation to create an object repository for web UI elements.

    • It helps in reducing code duplication and improves code maintainability.

    • Each web page is represented as a separate class and the web elements on the page are defined as variables in the class.

    • The methods in the class perform actions on the web elements.

    • It separates the test logic from the page-specific logic...

  • Answered by AI
  • Q3. What is main function in Java
  • Ans. 

    Main function in Java is the entry point of any Java program.

    • Main function is declared as public static void main(String[] args)

    • It is the starting point of execution for any Java program

    • All the code inside main function is executed sequentially

    • Example: public static void main(String[] args) { System.out.println("Hello World!"); }

  • Answered by AI
  • Q4. Write program for reverse string
  • Ans. 

    Program to reverse a string

    • Create an empty string to store the reversed string

    • Loop through the original string from end to start

    • Append each character to the empty string

    • Return the reversed string

  • Answered by AI
  • Q5. Write selenium automation code for login yatra.com and add to cart
  • Ans. 

    Selenium code to login and add to cart on yatra.com

    • Launch the yatra.com website

    • Enter login credentials and click on login button

    • Search for desired product and add to cart

    • Verify the product is added to cart

  • Answered by AI
  • Q6. What is xpath . type of xpath
  • Ans. 

    XPath is a language used to navigate and select elements in an XML or HTML document.

    • XPath stands for XML Path Language

    • It uses path expressions to select nodes or sets of nodes in an XML or HTML document

    • There are two types of XPath: Absolute and Relative

    • Absolute XPath starts from the root node and selects the nodes based on the complete path

    • Relative XPath starts from the current node and selects the nodes based on the p...

  • Answered by AI
  • Q7. Polymorphism. type of polymorphism.
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. There are two types: compile-time and runtime.

    • Compile-time polymorphism is achieved through function overloading and operator overloading.

    • Runtime polymorphism is achieved through virtual functions and function overriding.

    • Polymorphism allows for code reusability and flexibility in object-oriented programming.

    • Example of compile-time polymorphism: function ov...

  • Answered by AI
  • Q8. What is Interface. What are the interface in selenium
  • Ans. 

    An interface is a contract between two entities defining the communication between them. In Selenium, interfaces are used to define the behavior of web elements.

    • An interface defines a set of methods that a class implementing it must implement

    • In Selenium, the WebElement interface is used to interact with web elements on a page

    • Other interfaces in Selenium include WebDriver, TakesScreenshot, and JavascriptExecutor

    • Interfac...

  • Answered by AI
  • Q9. Api testing you know or not
  • Ans. 

    Yes, I am familiar with API testing.

    • API testing involves testing the functionality, reliability, performance, and security of APIs.

    • It includes verifying the response data, status codes, headers, and error handling.

    • Tools like Postman, SoapUI, or cURL can be used for API testing.

    • Examples of API testing include testing RESTful APIs, web services, and microservices.

    • Test cases can be created to validate input/output, authen...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have answered all the questions right.
Interview( Sourabh) was absent minded during whole interview process.
he did not even look my programming.
he did not listen me properly.
he responded after several times calling him over the zoom interview
After he completed his questions .he told me to ask questions if any when I started he just left the call.
Means what type of behavior is this??
I need job so I got the call from there end. I am available for interview that's not mean I have " Faltu times". I got several calls for interview and need to prepare also.
We are job seeker that's not mean we don't have respect. We are giving interviews that's not mean you have the right to insult anyone like this .I have more than 7 years of experience.

I will not recommend Ness further.

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basic python coding
  • Q2. Selenium, sql, python coding
Round 2 - Technical 

(2 Questions)

  • Q1. Mid level questions on selenium
  • Q2. SQL and python coding

Product Lead Interview Questions & Answers

user image Anonymous

posted on 31 May 2025

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

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Mostly project oriented and focused on building teams
  • Q2. Scenario based Questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Selenium screen shot program
  • Ans. 

    Selenium screen shot program captures screenshots during test execution.

    • Use Selenium WebDriver to capture screenshots in automated tests

    • Use getScreenshotAs() method to take screenshots

    • Save screenshots in a specified location for later analysis

  • Answered by AI
  • Q2. String reverse program
  • Ans. 

    A program to reverse an array of strings

    • Iterate through the array of strings and reverse each string individually

    • Use a temporary variable to swap characters at the beginning and end of each string

    • Return the reversed array of strings

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. API testing advantage disadvantage
  • Ans. 

    API testing allows for thorough testing of backend functionality but can be complex and time-consuming.

    • Advantage: Allows for thorough testing of backend functionality

    • Advantage: Can be automated for efficiency

    • Disadvantage: Complex and time-consuming to set up and maintain

    • Disadvantage: Requires knowledge of programming languages and APIs

    • Disadvantage: Limited ability to test user interface

  • Answered by AI
  • Q2. How to declare API parameter
  • Ans. 

    API parameters are declared in the request URL or body to pass data to the API endpoint.

    • Declare API parameters in the URL by adding them after the endpoint with a '?' and separating them with '&'

    • Declare API parameters in the request body for POST requests by sending key-value pairs in JSON format

    • Example: /api/users?id=123&name=John for URL parameters, {"id": 123, "name": "John"} for request body

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Introduce and family background
  • Q2. Salary discussion

Skills evaluated in this interview

Data Engineer Interview Questions & Answers

user image jani pasha

posted on 11 Dec 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Third highest salary
  • Ans. 

    I am unable to provide the third highest salary in my previous organization.

    • I am not at liberty to disclose specific salary information from my previous organization.

    • Unfortunately, I do not have access to that data.

    • I am unable to provide details on individual salaries from my previous organization.

  • Answered by AI
  • Q2. Question related to lead and lag
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Define O2C process
  • Ans. 

    O2C process stands for Order to Cash process, which involves all the steps from receiving an order to receiving payment.

    • O2C process starts with receiving an order from a customer.

    • It involves order processing, invoicing, and fulfillment of the order.

    • The final step is receiving payment from the customer.

    • It is a crucial process for businesses to ensure timely delivery and payment.

    • Example: An e-commerce company following O...

  • Answered by AI
  • Q2. Explain Client engagement
  • Ans. 

    Client engagement involves building and maintaining relationships with clients to understand their needs and provide solutions.

    • Regular communication with clients to gather requirements and provide updates

    • Ensuring client satisfaction by delivering high-quality products and services

    • Seeking feedback from clients to improve processes and products

    • Building trust and rapport with clients to foster long-term relationships

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Define your role on day to day basis
  • Q2. Tell the process flow flow for resources management
  • Ans. 

    The process flow for resource management involves identifying needs, allocating resources, monitoring usage, and optimizing efficiency.

    • Identify resource needs based on project requirements

    • Allocate resources based on availability and skill set

    • Monitor resource usage to ensure optimal utilization

    • Optimize resource efficiency through regular evaluation and adjustments

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

(3 Questions)

  • Q1. Scenario based questions
  • Q2. Tell us about a situation where you faced ambiguity while doing your role
  • Q3. What were your kpi

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was scenario based
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Character frequency counting using different methods.
  • Ans. 

    Character frequency counting can be done using methods like hashmap, array, or sorting.

    • Use hashmap to store characters as keys and their frequencies as values.

    • Use an array to store frequencies of each character based on their ASCII values.

    • Sort the input string and count consecutive characters to find frequencies.

  • Answered by AI
  • Q2. Questions related to .NET, SQL, C#.
Round 2 - One-on-one 

(3 Questions)

  • Q1. More Questions related to .NET, SQL, and C#
  • Q2. Scenario based front end and backend questions.
  • Q3. SDLC based questions.

Interview Preparation Tips

Topics to prepare for Ness Digital Engineering Software Engineer interview:
  • Angular
  • ASP.Net
  • C#
  • SQL Server

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Product Demo on Installaion Packages
  • Q2. InstallShield and InstallAnywhere
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. They are asked me about spring
  • Ans. 

    Spring is a powerful framework for building Java applications, offering features like dependency injection and aspect-oriented programming.

    • Dependency Injection: Spring manages object creation and dependencies, promoting loose coupling. Example: @Autowired annotation.

    • Aspect-Oriented Programming: Allows separation of cross-cutting concerns like logging and security. Example: @Aspect annotation.

    • Spring MVC: A web framework...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Spring and hibernate related questions?
Round 3 - HR 

(1 Question)

  • Q1. Expectations, culture , problem solving skills

Interview Preparation Tips

Interview preparation tips for other job seekers - focus more on core concepts of technology and understand your existing project. learn about real-time problems
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 Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Optimization of applciation
  • Ans. 

    Optimization of application involves improving performance and efficiency.

    • Identify and eliminate unnecessary re-renders by using React.memo or shouldComponentUpdate.

    • Use code splitting and lazy loading to reduce initial load time.

    • Optimize network requests by using caching and reducing unnecessary data transfers.

    • Minimize the use of expensive operations like deep object comparisons or complex calculations in render method...

  • Answered by AI
  • Q2. Time Complexity
Round 2 - One-on-one 

(2 Questions)

  • Q1. Other technology then React
  • Q2. Rate my self on a scale of 5 for other technologies
  • Ans. 

    I rate myself a 4 out of 5 in other technologies.

    • Proficient in HTML/CSS

    • Strong knowledge of JavaScript

    • Familiar with Node.js and Express.js

    • Experience with SQL and NoSQL databases

    • Basic understanding of Python

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush your basics

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Ness Digital Engineering?
Ask anonymously on communities.

Ness Digital Engineering Interview FAQs

How many rounds are there in Ness Digital Engineering interview?
Ness Digital Engineering interview process usually has 2-3 rounds. The most common rounds in the Ness Digital Engineering interview process are Technical, Resume Shortlist and HR.
How to prepare for Ness Digital Engineering 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 Java, Agile, SQL, Javascript and AWS.
What are the top questions asked in Ness Digital Engineering interview?

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

  1. This is round was client round and totally started with angular core topics, wh...read more
  2. How to execute feature file in parallel in BDD Cucumber Framew...read more
  3. What are package.json consists of and what are dependencies and dev dependenc...read more
What are the most common questions asked in Ness Digital Engineering HR round?

The most common HR questions asked in Ness Digital Engineering interview are -

  1. What are your salary expectatio...read more
  2. What is your family backgrou...read more
  3. Why are you looking for a chan...read more
How long is the Ness Digital Engineering interview process?

The duration of Ness Digital Engineering interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 48 interview experiences

Difficulty level

Easy 19%
Moderate 73%
Hard 8%

Duration

Less than 2 weeks 72%
2-4 weeks 24%
4-6 weeks 4%
View more

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 290 Interviews
Altimetrik Interview Questions
3.7
 • 242 Interviews
Xoriant Interview Questions
4.1
 • 214 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.0
 • 193 Interviews
Iris Software Interview Questions
4.0
 • 186 Interviews
Globant Interview Questions
3.7
 • 184 Interviews
ThoughtWorks Interview Questions
3.9
 • 158 Interviews
View all

Ness Digital Engineering Reviews and Ratings

based on 613 reviews

3.4/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.3

Salary

2.8

Job security

3.3

Company culture

2.8

Promotions

3.2

Work satisfaction

Explore 613 Reviews and Ratings
Intermediate .Net Engineer

Bangalore / Bengaluru

3-7 Yrs

Not Disclosed

Engineering Delivery Director

Bangalore / Bengaluru

17-23 Yrs

Not Disclosed

Dot Net+React Fullstack Developer || immediate || Ness

Bangalore / Bengaluru

1-5 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
760 salaries
unlock blur

₹12.8 L/yr - ₹22 L/yr

Software Engineer
519 salaries
unlock blur

₹4.5 L/yr - ₹9.2 L/yr

Software Developer
219 salaries
unlock blur

₹4.8 L/yr - ₹9.5 L/yr

Member Technical Staff
212 salaries
unlock blur

₹15.4 L/yr - ₹27.2 L/yr

Senior QA Engineer
211 salaries
unlock blur

₹9.8 L/yr - ₹18 L/yr

Explore more salaries
Compare Ness Digital Engineering with

Xoriant

4.1
Compare

Photon Interactive

4.1
Compare

CitiusTech

3.3
Compare

Iris Software

4.0
Compare
write
Share an Interview