Upload Button Icon Add office photos

Filter interviews by

NCR Voyix Interview Questions, Process, and Tips

Updated 13 Jan 2025

Top NCR Voyix Interview Questions and Answers

View all 89 questions

NCR Voyix Interview Experiences

Popular Designations

122 interviews found

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)

Selles Officer Interview Questions & Answers

user image Ritiksingh bhadoriya

posted on 7 Dec 2022

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

I applied via Job Portal and was interviewed before Dec 2021. There were 3 interview rounds.

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 Resume tips
Round 2 - Aptitude Test 

Be have to explain about our self and give full introduction of ours

Round 3 - One-on-one 

(4 Questions)

  • Q1. They asked few questions about your self
  • Q2. How you interesting in sells
  • Q3. How you convince your costumer
  • Q4. Hxhduuj jzjjj jjjxjxj jjjs

Interview Preparation Tips

Interview preparation tips for other job seekers - Its great place to building your future
Make your future bright

Selles Officer Interview Questions asked at other Companies

Q1. How to grow company an selling more product information customer
View answer (1)
NCR Voyix Interview Questions and Answers for Freshers
illustration image

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)

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)

NCR Voyix interview questions for popular designations

 Software Engineer

 (10)

 Software Developer

 (7)

 Software Engineer2

 (6)

 Software Engineer II

 (5)

 Software Engineer Intern

 (3)

 Customer Engineer

 (3)

 Software Developer Intern

 (3)

 QA Engineer

 (3)

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

I applied via Campus Placement and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Oops
Basic DSA
Project Based Discussions
NodeJs/ReactJS Fundamental Questions

Round 2 - Coding Test 

Advance Oops and DSA

Round 3 - HR 

(2 Questions)

  • Q1. 1.) Why would you like to work for ncr
  • Q2. 2.) What you know about Self Serve Checkout

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)

Get interview-ready with Top NCR Voyix Interview Questions

NPI Engineer Interview Questions & Answers

user image Gowtham S

posted on 26 Apr 2024

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

I applied via Campus Placement and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Self intro and about mechanical enhineering questions

Interview Preparation Tips

Interview preparation tips for other job seekers - just say self intro correctly

NPI Engineer Interview Questions asked at other Companies

Q1. 7QC Tools, name them
View answer (1)

Jobs at NCR Voyix

View all

I applied via Company Website

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 Resume 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)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2022. There were 3 interview rounds.

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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. What are the various projects that have you implemented in your current org ?
  • Ans. 

    I have implemented several projects in my current organization.

    • Developed a predictive model to forecast customer churn

    • Built a recommendation system to personalize product recommendations

    • Created a fraud detection model to identify fraudulent transactions

    • Implemented a natural language processing model for sentiment analysis

    • Designed an anomaly detection system to detect network intrusions

  • Answered by AI
  • Q2. How is y9ur project related to business problem and how you have solved it
  • Ans. 

    Developed a predictive model to identify potential customer churn for a telecom company

    • Identified key factors contributing to customer churn through exploratory data analysis

    • Built a logistic regression model to predict customer churn with 85% accuracy

    • Provided actionable insights to the business team to reduce customer churn and improve customer retention

    • Implemented the model in production environment using Python and S

  • Answered by AI
  • Q3. Why you are looking out for a change
  • Ans. 

    Seeking new challenges and growth opportunities in the field of data science.

    • Looking for a more challenging role to further develop my skills and knowledge in data science.

    • Interested in exploring new industries and applying data science techniques to solve different problems.

    • Seeking a company with a strong data-driven culture and a focus on innovation.

    • Want to work with a diverse team of data scientists and learn from t...

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

(3 Questions)

  • Q1. Define your work
  • Ans. 

    As a Data Scientist, I analyze and interpret complex data to help businesses make informed decisions.

    • I collect and clean data from various sources.

    • I use statistical techniques and machine learning algorithms to analyze data.

    • I develop predictive models and algorithms to solve business problems.

    • I communicate findings and insights to stakeholders through visualizations and reports.

  • Answered by AI
  • Q2. What motivates you to join our company
  • Ans. 

    I am motivated to join your company because of the challenging and innovative work environment.

    • I am excited about the opportunity to work with cutting-edge technologies and tools in data science.

    • Your company's reputation for being at the forefront of data-driven decision making is inspiring.

    • I am impressed by the collaborative and diverse team culture that fosters continuous learning and growth.

    • The company's commitment ...

  • Answered by AI
  • Q3. Why looking out for a change
  • Ans. 

    Seeking new challenges and growth opportunities in the field of data science.

    • Looking for a more challenging role to apply and expand my skills

    • Interested in working with cutting-edge technologies and techniques

    • Seeking a company with a strong data-driven culture

    • Want to work on diverse projects and industries to broaden my experience

    • Desire to make a bigger impact and contribute to solving complex problems

  • Answered by AI

Interview Preparation Tips

Topics to prepare for NCR Voyix Data Scientist interview:
  • Algorithms
  • Data Sciene
  • Python
Interview preparation tips for other job seekers - Be technically prepared on the projects you have worked on

Data Scientist Interview Questions asked at other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you find a line that best fits the data, to be able to extrapolate? this is not a supervised ML problem, there's no target. and how would you do it, if you want to treat this as a s... read more
View answer (5)

Interview Questions & Answers

user image Anonymous

posted on 25 Sep 2023

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

I applied via Job Fair and was interviewed before Sep 2022. There were 4 interview rounds.

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 Resume tips
Round 2 - Coding Test 

It was on HackerEarth

Round 3 - One-on-one 

(1 Question)

  • Q1. Basics of Java and oops
Round 4 - Technical 

(1 Question)

  • Q1. SQL, java, OOPs, linkedlist
Contribute & help others!
anonymous
You can choose to be anonymous

NCR Voyix Interview FAQs

How many rounds are there in NCR Voyix interview?
NCR Voyix interview process usually has 2-3 rounds. The most common rounds in the NCR Voyix interview process are Technical, HR and One-on-one Round.
How to prepare for NCR Voyix 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 Java, SQL, C#, Javascript and Microservices.
What are the top questions asked in NCR Voyix interview?

Some of the top questions asked at the NCR Voyix interview -

  1. What are interfaces and what is difference between an interface and abstract c...read more
  2. What is Software Development Cycle??What are the phase in software developmen...read more
  3. API - Postman - Collections - Purpose and How do you prepare and execut...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.

Recently Viewed

PHOTOS

SIAC SKH India Cabs Manufacturing

No Photos

JOBS

SIAC SKH India Cabs Manufacturing

No Jobs

REVIEWS

Carelon Global Solutions

No Reviews

REVIEWS

NCR Voyix

No Reviews

JOBS

NCR Voyix

No Jobs

COMPANY BENEFITS

IND-SPHINX PRECISION

No Benefits

REVIEWS

Intellect Design Arena

No Reviews

SALARIES

IND-SPHINX PRECISION

No Salaries

REVIEWS

IND-SPHINX PRECISION

No Reviews

Tell us how to improve this page.

NCR Voyix Interview Process

based on 80 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Oracle Interview Questions
3.7
 • 846 Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
View all

NCR Voyix Reviews and Ratings

based on 1.5k reviews

3.8/5

Rating in categories

3.4

Skill development

3.8

Work-life balance

3.5

Salary

3.6

Job security

3.7

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 1.5k Reviews and Ratings
Salesforce Developer

Hyderabad / Secunderabad

3-6 Yrs

₹ 12-16 LPA

Software Engineer (Java)

Hyderabad / Secunderabad

3-6 Yrs

₹ 15-22.5 LPA

Site Reliability Engineer

Hyderabad / Secunderabad

3-6 Yrs

Not Disclosed

Explore more jobs
Software Engineer
371 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
242 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
162 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer III
147 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
145 salaries
unlock blur

₹0 L/yr - ₹0 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