Upload Button Icon Add office photos

Filter interviews by

NCR Voyix Interview Questions, Process, and Tips for Experienced

Updated 9 Jan 2025

Top NCR Voyix Interview Questions and Answers for Experienced

View all 29 questions

NCR Voyix Interview Experiences for Experienced

Popular Designations

39 interviews found

IT Analyst 2 Interview Questions & Answers

user image Anonymous

posted on 27 Dec 2023

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Dec 2022. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Blue screen error,
  • Q2. Service now knowledge
  • Q3. Handling International Calls

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly please confirm the job role and process before joining. IT engineer should never join there.
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 - 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

Top NCR Voyix Software Engineer II Interview Questions and Answers

Q1. What are interfaces and what is difference between an interface and abstract class
View answer (1)

Software Engineer II Interview Questions asked at other Companies

Q1. There are fifteen horses and a racing track that can run five horses at a time. You have to figure out the top 3 horses out of those and you don't have any timer machine to measure. How will you find the top 3 horses?
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2022. There were 3 interview rounds.

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 

(4 Questions)

  • Q1. Based on profile applied for
  • Q2. Brd frd srs document related
  • Q3. Dashboard tools related
  • Q4. Gap analysis , raci matrix
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and leaves discussion

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (8)
Round 1 - Technical 

(2 Questions)

  • Q1. .NET memory management
  • Q2. How do you handle a non performing employee?
Round 2 - HR 

(1 Question)

  • Q1. What are you strengths?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Do not use "We" use "I" more often in the interview

Engineering Manager Interview Questions asked at other Companies

Q1. Which contactor connected first in star delta starter?
View answer (1)

NCR Voyix interview questions for popular designations

 Software Engineer

 (11)

 Software Developer

 (7)

 Software Engineer2

 (6)

 Software Engineer II

 (5)

 Customer Engineer

 (3)

 QA Engineer

 (3)

 Service Engineer

 (3)

 Software Developer Intern

 (3)

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

I applied via Approached by Company and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic business analysis and product owner questions. Mostly on agile methodology.
Round 2 - One-on-one 

(1 Question)

  • Q1. Client round on previous experience

Product Owner Interview Questions asked at other Companies

Q1. What are the prioritization techniques you use to arrange backlog items?
View answer (3)

Get interview-ready with Top NCR Voyix Interview Questions

City Head Interview Questions & Answers

user image Anonymous

posted on 14 Sep 2022

I applied via Recruitment Consulltant and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Sir/mem office time kitne ghante Sailari kitni. Saptaha me 1 chhutti
  • Q2. Mera work puri emandari se hoga waise hi hame time se pememnt mil jaye bas yahi h or work me koi shikayat ka chance nahi dugi
Round 2 - Assignment 

Name Uma karpenter vill. Umari post. Suji jita rewa m. P.

Round 3 - HR 

(1 Question)

  • Q1. Sir/mem am Argent work me need i hop ki andastand you sir am honest and any experience h

Interview Preparation Tips

Topics to prepare for NCR Voyix City Head interview:
  • Your work responsibilitie ke sat
  • Any help freand and sir
  • Aman bataye rakhana
Interview preparation tips for other job seekers - Sir / mem work professional.
Office fresnar,
Office nat spokar,
And no esmokig
Any people not darectins

City Head Interview Questions asked at other Companies

Q1. Suppose there are multiple orders of flat tyres in your city at same time, how will you manage your supply?
View answer (1)

Jobs at NCR Voyix

View all

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

Top NCR Voyix Software Engineer II Interview Questions and Answers

Q1. What are interfaces and what is difference between an interface and abstract class
View answer (1)

Software Engineer II Interview Questions asked at other Companies

Q1. There are fifteen horses and a racing track that can run five horses at a time. You have to figure out the top 3 horses out of those and you don't have any timer machine to measure. How will you find the top 3 horses?
View answer (2)

I applied via Company Website

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 - Technical 

(1 Question)

  • Q1. ATM related questions
Round 3 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - This is good company environment.

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)

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.

Top NCR Voyix Software Engineer II Interview Questions and Answers

Q1. What are interfaces and what is difference between an interface and abstract class
View answer (1)

Software Engineer II Interview Questions asked at other Companies

Q1. There are fifteen horses and a racing track that can run five horses at a time. You have to figure out the top 3 horses out of those and you don't have any timer machine to measure. How will you find the top 3 horses?
View answer (2)

I applied via Company Website and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic questions on automation, java and project related questions. Gave a scenario and asked for the approach.
  • Q2. What is TDD and BDD?
  • Ans. 

    TDD is Test Driven Development and BDD is Behavior Driven Development.

    • TDD is a software development process where tests are written before the code.

    • BDD is a software development process where tests are written in a natural language that describes the behavior of the system.

    • TDD focuses on testing the functionality of individual units of code.

    • BDD focuses on testing the behavior of the system as a whole.

    • TDD is often assoc...

  • Answered by AI
  • Q3. Explain Framework
  • Ans. 

    A framework is a set of guidelines, libraries, and tools used to develop software applications.

    • Provides a structure for organizing code

    • Offers reusable code and libraries

    • Simplifies development process

    • Examples: React, Angular, Django

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through each and everything you post on resume and be confident

Skills evaluated in this interview

Software Quality Engineer Interview Questions asked at other Companies

Q1. Palindromic PartitioningGiven a string ‘str’. Find the minimum number of partitions to make in the string such that every partition of the string is a palindrome. Given a string, make cuts in that string to make partitions containing substr... read more
View answer (3)

NCR Voyix Interview FAQs

How many rounds are there in NCR Voyix interview for experienced candidates?
NCR Voyix interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the NCR Voyix interview process for experienced candidates are Technical, HR and Resume Shortlist.
How to prepare for NCR Voyix 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 NCR Voyix. The most common topics and skills that interviewers at NCR Voyix expect are Java, SQL, C#, Javascript and Microservices.
What are the top questions asked in NCR Voyix interview for experienced candidates?

Some of the top questions asked at the NCR Voyix interview for experienced candidates -

  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. Testing types Testing techniques Find elements vs find element Window handle vs...read more
How long is the NCR Voyix interview process?

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

Tell us how to improve this page.

NCR Voyix Interview Process for Experienced

based on 14 interviews in last 1 year

Interview experience

4.3
  
Good
View more

People are getting interviews through

based on 25 NCR Voyix interviews
Job Portal
Company Website
Campus Placement
Referral
48%
16%
4%
4%
28% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
DXC Technology Interview Questions
3.7
 • 801 Interviews
Mphasis Interview Questions
3.4
 • 785 Interviews
View all

NCR Voyix Reviews and Ratings

based on 1.5k reviews

3.9/5

Rating in categories

3.5

Skill development

3.9

Work-Life balance

3.5

Salary & Benefits

3.7

Job Security

3.8

Company culture

3.1

Promotions/Appraisal

3.6

Work Satisfaction

Explore 1.5k Reviews and Ratings
Android Architect

Hyderabad / Secunderabad

10-20 Yrs

Not Disclosed

.Net Developer

Chennai

6-10 Yrs

Not Disclosed

Oracle Technical Consultant (PDH)

Hyderabad / Secunderabad,

Gurgaon / Gurugram

9-12 Yrs

Not Disclosed

Explore more jobs
Software Engineer
385 salaries
unlock blur

₹5.6 L/yr - ₹23.5 L/yr

Senior Software Engineer
247 salaries
unlock blur

₹9.5 L/yr - ₹36 L/yr

Software Developer
188 salaries
unlock blur

₹5.3 L/yr - ₹19.5 L/yr

Software Engineer2
158 salaries
unlock blur

₹9.8 L/yr - ₹21 L/yr

Software Engineer II
146 salaries
unlock blur

₹9.2 L/yr - ₹20 L/yr

Explore more salaries
Compare NCR Voyix with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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