Upload Button Icon Add office photos

Filter interviews by

NCR Voyix Software Engineer II Interview Questions, Process, and Tips

Updated 24 Nov 2022

Top NCR Voyix Software Engineer II Interview Questions and Answers

  • Q1. What are interfaces and what is difference between an interface and abstract class
  • Q2. what is difference between stored procedure and function
  • Q3. what is difference between virtual and override keywords
View all 14 questions

NCR Voyix Software Engineer II Interview Experiences

5 interviews found

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 

(4 Questions)

  • Q1. Depends on the role they hire, technical round will be there
  • Q2. Java Concepts and At least one program they will ask to write
  • Q3. Manual and automation related questions
  • Q4. SQL concepts questions
Round 3 - Behavioral 

(1 Question)

  • Q1. Manager will check capability and will ask managerial questions
Round 4 - HR 

(1 Question)

  • Q1. Some HR questions and Package discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare according to the role applied and attend the interview
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Nice process to be followed
Round 3 - Technical 

(2 Questions)

  • Q1. Nice question to be asked
  • Q2. Nice interview to be asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for the interview nicely wwe we we we w e w e w e

Software Engineer II Interview Questions Asked at Other Companies

Q1. There are fifteen horses and a racing track that can run five hor ... read more
Q2. Title: Minimum steps required to make the product of array equal ... read more
asked in NCR Voyix
Q3. What are interfaces and what is difference between an interface a ... read more
Q4. Title: Next Greater Element for every element in the array Descri ... read more
Q5. What is the difference between C++ and Objective C and where will ... read more
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

It was easy level coding problem

Round 3 - Technical 

(1 Question)

  • Q1. Technical round with senior engineer
Round 4 - Behavioral 

(1 Question)

  • Q1. Questions about past challenges and Work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for problem solving and design skills as well as microservices

I applied via Naukri.com and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Technical 

(12 Questions)

  • Q1. What are interfaces and what is difference between an interface and abstract class
  • Ans. 

    Interfaces define a contract for behavior, while abstract classes provide partial implementation.

    • Interfaces only define method signatures, while abstract classes can have both abstract and concrete methods.

    • A class can implement multiple interfaces, but can only inherit from one abstract class.

    • Interfaces are used for loose coupling and flexibility in design.

    • Abstract classes are used for code reuse and to enforce a commo

  • Answered by AI
  • Q2. What are solid principles and explain them
  • Ans. 

    SOLID principles are a set of five design principles for writing maintainable and scalable code.

    • Single Responsibility Principle (SRP) - a class should have only one reason to change

    • Open-Closed Principle (OCP) - a class should be open for extension but closed for modification

    • Liskov Substitution Principle (LSP) - subtypes should be substitutable for their base types

    • Interface Segregation Principle (ISP) - clients should n...

  • Answered by AI
  • Q3. What are extension methods
  • Ans. 

    Extension methods are static methods that allow adding new functionality to existing types without modifying the original type.

    • Extension methods are defined in a static class.

    • They must be declared with the 'this' keyword before the first parameter.

    • They can be called as if they were instance methods of the extended type.

    • Extension methods can be used to add functionality to built-in types or custom types.

    • Example: adding ...

  • Answered by AI
  • Q4. Does c# support multiple inheritence
  • Ans. 

    No, C# does not support multiple inheritance.

    • C# only supports single inheritance, where a class can inherit from only one base class.

    • However, C# does support multiple interface inheritance, where a class can implement multiple interfaces.

    • This is achieved using the 'interface' keyword instead of 'class'.

  • Answered by AI
  • Q5. How routing is done in mvc
  • Ans. 

    Routing in MVC is done through the use of routes, which map URLs to controller actions.

    • Routes are defined in the RouteConfig.cs file in the App_Start folder

    • Routes consist of a URL pattern and a corresponding controller action

    • Routes can also include optional parameters and constraints

    • Routing is done through the use of the ASP.NET routing engine

    • Routing can be customized by creating custom route handlers

  • Answered by AI
  • Q6. What are filters in mvc
  • Ans. 

    Filters in MVC are used to intercept and modify HTTP requests and responses.

    • Filters can be used to implement authentication and authorization.

    • They can also be used for caching and logging.

    • Examples of filters include AuthorizationFilter, ActionFilter, and ExceptionFilter.

  • Answered by AI
  • Q7. What is difference between virtual and override keywords
  • Ans. 

    Virtual keyword is used to declare a method in a base class that can be overridden in a derived class. Override keyword is used in the derived class to override the implementation of the virtual method.

    • Virtual keyword is used in the base class to declare a method that can be overridden in the derived class

    • Override keyword is used in the derived class to override the implementation of the virtual method

    • Virtual methods p...

  • Answered by AI
  • Q8. What are indexes in sql
  • Ans. 

    Indexes in SQL are used to improve the performance of queries by allowing faster data retrieval.

    • Indexes are created on one or more columns of a table.

    • They work like a book index, allowing the database to quickly find the data.

    • Indexes can be clustered or non-clustered.

    • Clustered indexes determine the physical order of data in a table.

    • Non-clustered indexes create a separate structure to store the index data.

    • Indexes should...

  • Answered by AI
  • Q9. What is difference between stored procedure and function
  • Ans. 

    Stored procedures are used to perform a set of actions, while functions return a single value.

    • Stored procedures are precompiled and stored in the database, while functions are compiled at runtime.

    • Functions can be used in SQL statements, while stored procedures cannot be used in SQL statements.

    • Functions can be called from within stored procedures, but stored procedures cannot be called from within functions.

  • Answered by AI
  • Q10. Tell me about yourself
  • Q11. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern used to remove hard-coded dependencies and make code more modular and testable.

    • Dependency injection involves injecting dependencies into a class rather than having the class create them itself.

    • This allows for easier testing and swapping out of dependencies.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

    • Examples of ...

  • Answered by AI
  • Q12. What is singleton design pattern
  • Ans. 

    Singleton design pattern restricts the instantiation of a class to a single instance and provides a global point of access to it.

    • Used when only one instance of a class is required throughout the system

    • Provides a global point of access to the instance

    • Implemented using a private constructor, static method, and static variable

    • Example: Logger class in Java

  • Answered by AI
Round 2 - Behavioral 

(6 Questions)

  • Q1. Tell me about yourself
  • Q2. What are different projects that I have worked
  • Q3. Did you face any challenges in your earlier projects
  • Q4. What is your salary expectations
  • Q5. Explain about dependency injection
  • Ans. 

    Dependency injection is a design pattern that allows objects to receive dependencies from external sources rather than creating them internally.

    • Dependency injection helps to decouple components and make them more reusable and testable.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

    • Example: Instead of creating a database connection object inside a class, w...

  • Answered by AI
  • Q6. What is a singleton design pattern
  • Ans. 

    Singleton design pattern restricts the instantiation of a class to a single instance and provides a global point of access to it.

    • Used when only one instance of a class is required throughout the system

    • Provides a global point of access to the instance

    • Implemented using a private constructor, static method, and static variable

    • Example: Logger class, Database connection class

  • Answered by AI
Round 3 - HR 

(5 Questions)

  • Q1. Why should we hire you?
  • Q2. Share details of your previous job.
  • Q3. What are your salary expectations?
  • Q4. Why are you looking for a change?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - when a question is asked it would be better if you explain with a real time exampl

Skills evaluated in this interview

NCR Voyix interview questions for designations

 Software Development Engineer II

 (1)

 Software Developer II

 (1)

 Software Engineer

 (11)

 Software Engineer Intern

 (3)

 Software Engineer III

 (3)

 Associate Software Engineer

 (2)

 Senior Software Engineer

 (2)

 Software Development Engineer

 (1)

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

Round 1 - Technical 

(3 Questions)

  • Q1. Questions on oops concepts
  • Q2. Program to find the second largest element from a 4-digit number, ex: input 1245 return 4
  • Ans. 

    Program to find the second largest element from a 4-digit number

    • Convert the number to a string and split it into an array of characters

    • Sort the array in descending order

    • Return the second element of the array

  • Answered by AI
  • Q3. Guess the output like questions from pointers
Round 2 - Behavioral 

(1 Question)

  • Q1. Why did you like coding, what is your strengths and weakness
Round 3 - HR 

(5 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Tell me about yourself.
  • Q3. What are your salary expectations?
  • Q4. Why should we hire you?
  • Q5. Where do you see yourself in 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - I applied for CPP developer role. Prepare well based on the job description.

Get interview-ready with Top NCR Voyix Interview Questions

Interview questions from similar companies

Round 1 - Aptitude Test 

It was easy

Round 2 - Technical 

(2 Questions)

  • Q1. Nice question based on core java
  • Q2. Opps, new keyword, immutable class, exception
Round 3 - HR 

(3 Questions)

  • Q1. What is your family background?
  • Q2. Share details of your previous job.
  • Q3. Why should we hire you?
Round 4 - HR 

(2 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. Strengths and weaknesses

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice work, nice one to one, nice to know about company is good
Round 1 - Coding Test 

Dynamic programming questions were asked
1) convert stack to queue
2) replace special characters in a string

Round 2 - Technical 

(1 Question)

  • Q1. Dynamic programming - two questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn more of DS & Algo
Do leet code
Practise linked list, trees, graphs and Dynamic programming

I applied via Recruitment Consultant and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Basic data structures.
  • Q2. Array , Linked list, Java
  • Q3. MCQ
  • Q4. Java
  • Q5. Analytical
  • Q6. Data Structure and Problem solving
  • Q7. Managerial

Interview Preparation Tips

Interview preparation tips for other job seekers - Be true with you resume.
Don't add any skill which you are not aware of.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Aptitude Test 

A standardized assessment that measures a person's skills, cognitive abilities, and potential to perform in a specific role.

Round 2 - Technical 

(4 Questions)

  • Q1. Technical interview questions at Automatic Data Processing (ADP) may cover topics such as programming, databases, and software development.
  • Q2. They may also ask about problem-solving and how you approach challenging tasks.
  • Q3. Emphasize a structured method that involves clearly defining the issue, gathering relevant information, brainstorming potential solutions, evaluating options carefully, implementing the chosen solution, an...
  • Q4. Data structures, algorithms, SQL querying, object-oriented programming principles, software development lifecycle, database concepts (relational vs. NoSQL), coding challenges in relevant languages (like Py...
Round 3 - HR 

(2 Questions)

  • Q1. May ask about your background, skills, and how you handle challenges
  • Q2. Background questions Tell me about yourself, What are your career goals, What are your strengths and weaknesses, What do you know about ADP, and Why do you want to work at ADP.

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on tailoring your resume and cover letter to each role, thoroughly researching companies and potential interview questions, actively networking, attending career fairs, practicing your interview skills, following up after interviews, and maintaining a strong online presence on platforms like LinkedIn.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Dayananda Sagar College of Engineering, Bangalore and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

3 coding dsa question
Difficulty is On your luck
My friends got easy level
I got medium level
Some got hard questions as well

Round 2 - Aptitude Test 

Ssh round , quant and logical
Tip: bring your calculator

Round 3 - Technical 

(3 Questions)

  • Q1. Two Puzzle : bulb switching and candle
  • Q2. Dsa questions such as string reverse, binary search
  • Q3. Dbms and os core subject questions
Round 4 - HR 

(2 Questions)

  • Q1. How are you better than others
  • Q2. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are a girl, the interview rounds will be much easier for you as this company promotes diversity hiring.
The main differing factor is technical round interview which totally depends on the interviewer's mood .
Girls do get priority in this round, they are asked easier questions and will be selected if able to answer 60-70% of the questions.
Note:- it's not like they will hire any girl but a bit easier comparatively

NCR Voyix Interview FAQs

How many rounds are there in NCR Voyix Software Engineer II interview?
NCR Voyix interview process usually has 3-4 rounds. The most common rounds in the NCR Voyix interview process are Technical, Behavioral and HR.
How to prepare for NCR Voyix Software Engineer II 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 NCR Voyix. The most common topics and skills that interviewers at NCR Voyix expect are C++, Microservices, Hibernate, Java and Java Spring Boot.
What are the top questions asked in NCR Voyix Software Engineer II interview?

Some of the top questions asked at the NCR Voyix Software Engineer II interview -

  1. What are interfaces and what is difference between an interface and abstract c...read more
  2. what is difference between stored procedure and funct...read more
  3. what is difference between virtual and override keywo...read more

Tell us how to improve this page.

NCR Voyix Software Engineer II Salary
based on 146 salaries
₹9.2 L/yr - ₹20 L/yr
7% more than the average Software Engineer II Salary in India
View more details

NCR Voyix Software Engineer II Reviews and Ratings

based on 18 reviews

3.4/5

Rating in categories

2.9

Skill development

3.6

Work-life balance

2.9

Salary

3.9

Job security

3.4

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 18 Reviews and Ratings
Software Engineer II Golang Developer

Hyderabad / Secunderabad

3-6 Yrs

₹ 15-22.5 LPA

Software Engineer-III -Java Developer - Hands on CI/CD & AWS @ Hyd

Hyderabad / Secunderabad

4-7 Yrs

₹ 9.2-18 LPA

Software Engineer II - Java Backend developer

Bangalore / Bengaluru

3-6 Yrs

₹ 15-20 LPA

Explore more jobs
Software Engineer
369 salaries
unlock blur

₹6.5 L/yr - ₹20 L/yr

Senior Software Engineer
251 salaries
unlock blur

₹8 L/yr - ₹32.5 L/yr

Software Developer
176 salaries
unlock blur

₹5.5 L/yr - ₹19.5 L/yr

Software Engineer2
161 salaries
unlock blur

₹9.8 L/yr - ₹21 L/yr

Software Engineer III
155 salaries
unlock blur

₹13 L/yr - ₹33 L/yr

Explore more salaries
Compare NCR Voyix with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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