Upload Button Icon Add office photos

Filter interviews by

NCR Voyix Software Developer Interview Questions and Answers

Updated 1 Dec 2024

NCR Voyix Software Developer Interview Experiences

7 interviews found

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

(2 Questions)

  • Q1. Questions on Oops concepts
  • Q2. Questions on design patterns

Software Developer Interview Questions & Answers

user image pradeep bhilare

posted on 15 Jul 2024

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

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about you?
  • Q2. SQL Server And C#

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

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
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

20 question quiz on c#

Round 2 - Technical 

(1 Question)

  • Q1. What is SOLID principle
  • Ans. 

    SOLID is a set of five design principles to make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without aff...

  • Answered by AI

NCR Voyix interview questions for designations

 Software Developer Intern

 (3)

 Software Developer II

 (1)

 Software Engineer

 (10)

 Software Engineer2

 (6)

 Android Developer

 (2)

 Application Developer

 (1)

 Senior Developer

 (1)

 Software Engineer II

 (5)

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

(1 Question)

  • Q1. Collection based springboot security gitActions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Aug 2023.

Round 1 - Coding Test 

Hackerrank 90 min 3 questions 1 LC easy 2 Lc medium

Round 2 - Technical 

(2 Questions)

  • Q1. Gives 0,1 and 2 in an array you have to sort in place in one pass
  • Ans. 

    Sort an array of strings containing 0, 1, and 2 in one pass

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s

    • Iterate through the array and swap elements based on their values and the pointers

    • At the end of the iteration, the array will be sorted in place

  • Answered by AI
  • Q2. Rotton oranges and oops questions
Round 3 - HR 

(2 Questions)

  • Q1. Location preference where do u see in 5 yrs
  • Ans. 

    I see myself working in a dynamic tech hub like Silicon Valley, where I can collaborate with top industry professionals and contribute to cutting-edge projects.

    • Prefer to work in a tech hub like Silicon Valley

    • Collaborate with top industry professionals

    • Contribute to cutting-edge projects

  • Answered by AI
  • Q2. Puzzles and project discussiion

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image movva manish

posted on 14 Jul 2022

I was interviewed before Jul 2021.

Round 1 - Coding Test 

2 questions solved and went to round 2

Round 2 - Technical 

(1 Question)

  • Q1. No dsa questions were asked and everything was theory related to computer networks and operating systems and I don't even know what is system design which I think is not necessary for sde1 fresher.he asked...

Interview Preparation Tips

Interview preparation tips for other job seekers - I don't know what to say about my interview.i prepared everything which is asked for freshers but he asked me system design.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Question related to operating system and computer network

Round 2 - Technical 

(1 Question)

  • Q1. Traverse all child nodes in tree
  • Ans. 

    Traverse all child nodes in a tree data structure

    • Use depth-first or breadth-first traversal algorithms

    • Recursively visit each child node starting from the root node

    • Consider using a stack or queue data structure for traversal

    • Example: Traverse all nodes in a binary tree

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Question related to cloud and oops
Round 4 - Technical 

(1 Question)

  • Q1. Question related to my background and how web site work
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

In first round 4 coding question like 1 dsa 2 database and one is api and question is very simple . coding round was conducted in hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. DSA QUESTION LIKE TREE AND GRAPH
  • Q2. DP AND SORTING APPROACH
Round 3 - Coding Test 

Again same but dsa question and oops concept in deep level

Interview Preparation Tips

Interview preparation tips for other job seekers - good knowledge in dsa , database , programming thats it
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are the key concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    Key concepts of OOP include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object).

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Abstraction: Hiding complex implementation details and showing onl

  • Answered by AI
  • Q2. What is the internal working mechanism of a HashMap?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where the pair will be stored.

    • If multiple keys hash to the same index (collision), a linked list is used to store these pairs.

    • To retrieve a value, t...

  • Answered by AI

NCR Voyix Interview FAQs

How many rounds are there in NCR Voyix Software Developer interview?
NCR Voyix interview process usually has 1-2 rounds. The most common rounds in the NCR Voyix interview process are Technical, Coding Test and One-on-one Round.
How to prepare for NCR Voyix Software Developer 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#, C++, Design Patterns, SQL and VC++.
What are the top questions asked in NCR Voyix Software Developer interview?

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

  1. gives 0,1 and 2 in an array you have to sort in place in one p...read more
  2. No dsa questions were asked and everything was theory related to computer netwo...read more
  3. Collection based springboot security gitActi...read more

Tell us how to improve this page.

NCR Voyix Software Developer Interview Process

based on 6 interviews

2 Interview rounds

  • Coding Test Round
  • Technical Round
View more
NCR Voyix Software Developer Salary
based on 176 salaries
₹5.5 L/yr - ₹19.5 L/yr
44% more than the average Software Developer Salary in India
View more details

NCR Voyix Software Developer Reviews and Ratings

based on 27 reviews

4.0/5

Rating in categories

3.6

Skill development

3.9

Work-life balance

3.6

Salary

3.9

Job security

3.7

Company culture

3.5

Promotions

3.7

Work satisfaction

Explore 27 Reviews and Ratings
Software Engineer
374 salaries
unlock blur

₹6.5 L/yr - ₹20 L/yr

Senior Software Engineer
239 salaries
unlock blur

₹9.7 L/yr - ₹35 L/yr

Software Developer
176 salaries
unlock blur

₹5.5 L/yr - ₹19.5 L/yr

Software Engineer2
162 salaries
unlock blur

₹9.8 L/yr - ₹21 L/yr

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