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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Just an basic 30 question

Round 2 - HR 

(1 Question)

  • Q1. About my self and about your family background and salary expectations

Senior Test Engineer Interview Questions asked at other Companies

Q1. From Selenium -> Which Automation framework I have implemented in my project . Explain each framework components. How to handle dynamic web element. how to handle hidden element. how to upload file in selenium, where hashmap is used in s... read more
View answer (1)

Rate your
company

🤫 100% anonymous

How was your last interview experience?

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

I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Do you know power BI
  • Q2. Yes. I know PowerBI

Senior Data Analyst Interview Questions asked at other Companies

Q1. What is the difference between Least Squares Method and the maximum likelihood
View answer (1)
NCR Voyix Interview Questions and Answers for Freshers
illustration image
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. Questions about Nestjs, React and AI
  • Q2. Singlet pattern of NestJS
  • Ans. 

    Singleton pattern in NestJS ensures a class has only one instance and provides a global point of access to it.

    • Use the @Injectable() decorator to mark a class as a singleton in NestJS.

    • Inject the singleton class into other classes using the constructor.

    • The instance of the singleton class will be shared across the application.

  • Answered by AI

Skills evaluated in this interview

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)

IT Analyst Interview Questions & Answers

user image Abhishek

posted on 8 Jun 2024

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

(2 Questions)

  • Q1. About current job profile
  • Q2. Technical troubleshooting

IT Analyst Interview Questions asked at other Companies

Q1. 1. What is interface how to use? 2. Tell me a small example for interface? 3. How to managing the Error Logging system at your application 4. How you implement Security at your application 5. What are the Joins why we use joins in sql serve... read more
View answer (1)

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)

Software Engineer Interview Questions & Answers

user image Siddharth chauhan

posted on 26 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain what is Spring Sleuth
  • Ans. 

    Spring Sleuth is a distributed tracing system for microservices built on top of Spring Cloud.

    • Spring Sleuth helps in tracking and monitoring requests as they travel through different microservices.

    • It generates unique trace and span IDs for each request to help in correlating logs and metrics.

    • Spring Sleuth integrates with Zipkin, a distributed tracing system, to provide visualization of request flows.

    • It is commonly used ...

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)

Get interview-ready with Top NCR Voyix Interview Questions

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

I applied via LinkedIn and was interviewed in Jul 2023. There were 2 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. Write program in c# describing all OOPs concepts.
  • Ans. 

    Program in C# demonstrating OOPs concepts

    • Use classes and objects to demonstrate encapsulation

    • Inheritance can be shown by creating a base class and derived classes

    • Polymorphism can be illustrated through method overriding or interfaces

    • Abstraction can be implemented by hiding internal details and showing only necessary information

  • Answered by AI
  • Q2. Write program for matrix diagonal & anti diagonal sum.
  • Ans. 

    Program to calculate diagonal and anti-diagonal sum of a matrix.

    • Iterate through the matrix to calculate diagonal and anti-diagonal sums separately.

    • For diagonal sum, add elements where row index equals column index.

    • For anti-diagonal sum, add elements where row index + column index equals matrix size - 1.

    • Example: For a 3x3 matrix, diagonal sum = matrix[0][0] + matrix[1][1] + matrix[2][2]

    • Example: For a 3x3 matrix, anti-di...

  • Answered by AI
  • Q3. SOLID principles and design patterns

Interview Preparation Tips

Topics to prepare for NCR Voyix Software Engineer III interview:
  • Design Patterns
  • OOPS
  • REST API
  • Angular

Skills evaluated in this interview

Software Engineer III Interview Questions asked at other Companies

Q1. Find the highest floor, from where if an egg is dropped will not break. k floor building and n eggs are given.
View answer (2)

Jobs at NCR Voyix

View all

Software Developer Interview Questions & Answers

user image Sathvika Avunoori

posted on 31 May 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 questions of coding

Round 2 - Technical 

(1 Question)

  • Q1. Some technical based on experience

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a program code for binary search
  • Ans. 

    Binary search program code in Python

    • Define a function that takes a sorted array and a target value as input

    • Initialize two pointers, low and high, to the start and end of the array

    • While low is less than or equal to high, calculate mid as (low + high) // 2 and compare array[mid] with target

    • If array[mid] is equal to target, return mid

    • If array[mid] is less than target, update low to mid + 1

    • If array[mid] is greater than tar...

  • Answered by AI
  • Q2. C++ constructors

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare coding

Skills evaluated in this interview

Senior Developer Interview Questions asked at other Companies

Q1. What is your current CTC and what is your expected CTC?
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic Java and SQL query

Senior Java Developer Interview Questions asked at other Companies

Q1. Remove the Kth Node from the End of a Linked List You are given a singly Linked List with 'N' nodes containing integer data and an integer 'K'. Your task is to delete the Kth node from the end of this Linked List. Input: The first line of ... read more
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 6 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

IQ test ,English grammer test,oral test etc

Round 2 - Case Study 

You knew at the time of interview recruiter ask many question related to their job is you able to these ao not . I also faces many question at the time of interview.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident at time of interview.and you know first impression is last impression.
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

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

REVIEWS

Intellect Design Arena

No Reviews

COMPANY BENEFITS

Sandvik Asia

No Benefits

PHOTOS

Sandvik Asia

No Photos

DESIGNATION

LIST OF COMPANIES

Discover companies

Find best workplace

Tell us how to improve this page.

NCR Voyix Interview Process

based on 80 interviews

Interview experience

4.1
  
Good
View more

Anonymously discuss salaries, work culture, and many more

Get Ambitionbox App

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.9/5

Rating in categories

3.5

Skill development

3.8

Work-life balance

3.5

Salary

3.6

Job security

3.8

Company culture

3.1

Promotions

3.6

Work satisfaction

Explore 1.5k Reviews and Ratings
.NET Software Developer

Hyderabad / Secunderabad

6-10 Yrs

Not Disclosed

Software Engineer II

Hyderabad / Secunderabad

3-7 Yrs

₹ 10.5-18 LPA

Sr Salesforce Developer

Mumbai

6-10 Yrs

Not Disclosed

Explore more jobs
Software Engineer
374 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
239 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
176 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
164 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer III
147 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