Upload Button Icon Add office photos

Filter interviews by

Clear (1)

NCR Voyix Software Engineer2 Interview Questions, Process, and Tips

Updated 22 Oct 2024

Top NCR Voyix Software Engineer2 Interview Questions and Answers

View all 6 questions

NCR Voyix Software Engineer2 Interview Experiences

6 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Loop in a linked list
  • Ans. 

    Loop in a linked list refers to a situation where a node in the list points to a previous node, creating a cycle.

    • Check for a loop using Floyd's cycle detection algorithm

    • Use two pointers, one moving at twice the speed of the other

    • If the two pointers meet at some point, there is a loop

  • Answered by AI
  • Q2. Delete the node in a linked list with given pointer
  • Ans. 

    To delete a node in a linked list with a given pointer, update the node's value and next pointer to the next node's value and next pointer.

    • Set the value of the node to the value of the next node

    • Set the next pointer of the node to the next node's next pointer

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why you want to join NCR

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Basic go lang & other concepts like Dynamic memory allocation, Garbage collector in go
  • Q2. One coding problem in go lang
  • Ans. 

    Implement a function to reverse a string in Go lang

    • Create a function that takes a string as input

    • Convert the string into a slice of bytes for easier manipulation

    • Use a loop to iterate through the slice and reverse the order of characters

    • Convert the reversed slice back into a string and return it

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Coding question & discussion around the questions with constraints
Round 3 - HR 

(1 Question)

  • Q1. Basic Introduction & discussions

Software Engineer2 Interview Questions Asked at Other Companies

Q1. - Given a water -tight orientable 2-manifold, how to find if a po ... read more
asked in Wayfair
Q2. Design a Order and Cart Page in iOS. The user should be able to o ... read more
Q3. How to process large amount of data? Which tool would you prefer?
asked in PayPal
Q4. Can you describe the system design for the checkout feature on Am ... read more
Q5. Given an integer array , and a target k , we need to find the pai ... read more
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-

I was interviewed in May 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions related to current project and tech stack.
  • Q2. Easy + 1 Medium level Coding questions
Round 2 - Technical 

(1 Question)

  • Q1. Technical + Managerial Questions
Round 3 - HR 

(1 Question)

  • Q1. Usual HR Discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is the difference between abstract and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface can only have constants and method signatures.

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

    • Abstract classes are used to define a common behavior for subclasses, while interfaces are used to define a ...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Managerial level questions like what is your major challenge that you faced in your career

NCR Voyix interview questions for designations

 Software Engineer

 (10)

 Software Developer

 (7)

 Software Engineer II

 (5)

 Software Engineer III

 (3)

 Software Developer Intern

 (3)

 Software Engineer Intern

 (3)

 Senior Software Engineer

 (2)

 Associate Software Engineer

 (2)

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. Mostly asked about .net topics.
  • Q2. Garbage collection, Performance improvements, memory management techniques.

Get interview-ready with Top NCR Voyix Interview Questions

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

I applied via LinkedIn and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test on hackerearth. two questions were asked

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the pointers direction

    • Iterate through the linked list and change the direction of pointers

    • Use three pointers - prev, current, next to reverse the list

    • Update the head of the linked list to the last node after reversing

  • Answered by AI
  • Q2. Fibbonaci series print
  • Ans. 

    Print the Fibonacci series

    • Use a loop to generate Fibonacci numbers

    • Start with 0 and 1, then add the previous two numbers to get the next number

    • Repeat this process until reaching the desired length of the series

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Java Basics Technical Questions
  • Q2. In depth knowledge OOPS concepts and basic practice skills of SQL operations
  • Q3. In depth practice of String Manipulations using looping and conditional statements
  • Ans. 

    String manipulation using loops and conditionals for software engineering

    • Use loops to iterate through each character in the string

    • Use conditional statements to check for specific conditions and manipulate the string accordingly

    • Examples: reversing a string, counting occurrences of a specific character, removing whitespace

  • Answered by AI
  • Q4. In depth knowledge of J2ee concepts with any ORM / MVC framework skills
Round 2 - Technical 

(1 Question)

  • Q1. Java Basics Technical Questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Talent500 and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between SQL and NoSQL databases?
  • Ans. 

    SQL databases are relational databases with structured data and predefined schema, while NoSQL databases are non-relational databases with flexible schema and unstructured data.

    • SQL databases use structured query language for defining and manipulating data, while NoSQL databases use different query languages or APIs.

    • SQL databases are table-based, with rows and columns, while NoSQL databases can be document-based, key-va...

  • Answered by AI
  • Q2. What are the methods for enabling communication between microservices?
  • Ans. 

    Methods for enabling communication between microservices

    • RESTful APIs

    • Message queues (e.g. RabbitMQ, Kafka)

    • gRPC (Google Remote Procedure Call)

    • Service mesh (e.g. Istio, Linkerd)

    • Event-driven architecture (e.g. using Apache Kafka)

  • Answered by AI

I applied via Naukri.com and was interviewed in Jan 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 - Case Study 

They just asked about my previous experience and questions from my resume

Round 3 - Technical 

(1 Question)

  • Q1. Bsod , how to handle angry customer ,

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and confident.
They will just your potential.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Walk-in and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Daemon thread in java
  • Ans. 

    Daemon thread is a low priority thread that runs in the background and does not prevent the JVM from exiting.

    • Daemon threads are used for tasks that do not require user interaction or continuous execution.

    • They are automatically terminated when all non-daemon threads have finished.

    • Set a thread as daemon using setDaemon(true) method before starting it.

    • Example: Thread t = new Thread(); t.setDaemon(true); t.start();

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

NCR Voyix Interview FAQs

How many rounds are there in NCR Voyix Software Engineer2 interview?
NCR Voyix interview process usually has 2-3 rounds. The most common rounds in the NCR Voyix interview process are Technical, HR and Coding Test.
What are the top questions asked in NCR Voyix Software Engineer2 interview?

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

  1. What is the difference between abstract and interf...read more
  2. Delete the node in a linked list with given poin...read more
  3. One coding problem in go l...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

NCR Voyix

No Interviews

SALARIES

Security and Intelligence Services (India)

No Salaries

SALARIES

Quess

INTERVIEWS

NCR Voyix

No Interviews

SALARIES

Quess

INTERVIEWS

NCR Voyix

No Interviews

SALARIES

Quess

SALARIES

Quess

Tell us how to improve this page.

NCR Voyix Software Engineer2 Interview Process

based on 6 interviews

2 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
View more
NCR Voyix Software Engineer2 Salary
based on 164 salaries
₹9.8 L/yr - ₹21 L/yr
16% less than the average Software Engineer2 Salary in India
View more details

NCR Voyix Software Engineer2 Reviews and Ratings

based on 25 reviews

3.0/5

Rating in categories

2.5

Skill development

3.1

Work-life balance

2.9

Salary

3.3

Job security

3.0

Company culture

2.5

Promotions

2.7

Work satisfaction

Explore 25 Reviews and Ratings
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