Upload Button Icon Add office photos

Filter interviews by

NCR Voyix Senior Developer Interview Questions and Answers

Updated 14 Feb 2024

NCR Voyix Senior Developer Interview Experiences

1 interview found

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

Interview questions from similar companies

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

Data structure and algorithms

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

I applied via Referral and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Strong consistency vs eventual consistency
  • Ans. 

    Strong consistency ensures that all replicas of data are updated synchronously, while eventual consistency allows for temporary inconsistencies.

    • Strong consistency guarantees that all clients see the same data at the same time.

    • Eventual consistency allows for temporary inconsistencies but eventually all replicas will converge to the same state.

    • Strong consistency is often used in systems where data integrity is critical, ...

  • Answered by AI
  • Q2. Calculate the size of the file system
  • Ans. 

    Calculating the size of a file system

    • Determine the total size of all files and directories within the file system

    • Include the size of all subdirectories and their contents

    • Consider the size of metadata and file system overhead

    • Use appropriate tools or commands to gather the necessary information

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
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 tips
Round 2 - Technical 

(1 Question)

  • Q1. All the questions from oops,.net,c#,web api,SQL
Round 3 - Technical 

(1 Question)

  • Q1. All the questions from .net,c#,azure,sql
Round 4 - HR 

(1 Question)

  • Q1. All basic he questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Study all basics for all full stack developer, small coding problems, azure services
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
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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Dayananda Sagar College of Engineering, Bangalore and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

3 coding dsa question
Difficulty is On your luck
My friends got easy level
I got medium level
Some got hard questions as well

Round 2 - Aptitude Test 

Ssh round , quant and logical
Tip: bring your calculator

Round 3 - Technical 

(3 Questions)

  • Q1. Two Puzzle : bulb switching and candle
  • Q2. Dsa questions such as string reverse, binary search
  • Q3. Dbms and os core subject questions
Round 4 - HR 

(2 Questions)

  • Q1. How are you better than others
  • Q2. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are a girl, the interview rounds will be much easier for you as this company promotes diversity hiring.
The main differing factor is technical round interview which totally depends on the interviewer's mood .
Girls do get priority in this round, they are asked easier questions and will be selected if able to answer 60-70% of the questions.
Note:- it's not like they will hire any girl but a bit easier comparatively
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Jan 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. Basic C++ OOPS, copy constructor , destructor
  • Q2. Implement C string and make custom string class. Why we use reference in copy constructor
  • Q3. Projectionofvector on another
  • Q4. Product of two vote eligible people is x and then what will bethe individual's age

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up on geometry vectors and basic C++
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
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. String reverse
  • Q2. Dsa linked lists
  • Q3. Linked lists reverse
  • Q4. Map unique elements
  • Ans. 

    Map unique elements in an array of strings

    • Create a map to store unique elements

    • Iterate through the array and add each element to the map as a key

    • Retrieve the keys of the map to get the unique elements

  • Answered by AI
  • Q5. Sets find elements in set
  • Ans. 

    Sets are data structures that store unique elements and can be used to efficiently find elements in the set.

    • Sets do not allow duplicate elements, so each element in a set is unique.

    • To find elements in a set, you can use the 'has' method to check if a specific element is present in the set.

    • Sets are commonly used in programming for tasks like removing duplicates from a list or checking for the presence of specific elemen

  • Answered by AI

Skills evaluated in this interview

NCR Voyix Interview FAQs

How many rounds are there in NCR Voyix Senior Developer interview?
NCR Voyix interview process usually has 1 rounds. The most common rounds in the NCR Voyix interview process are Technical.
What are the top questions asked in NCR Voyix Senior Developer interview?

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

  1. Write a program code for binary sea...read more
  2. C++ construct...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 NCR Voyix interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
NCR Voyix Senior Developer Salary
based on 4 salaries
₹7.6 L/yr - ₹13.5 L/yr
29% less than the average Senior Developer Salary in India
View more details

NCR Voyix Senior Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

3.0

Work-Life balance

3.0

Salary & Benefits

3.0

Job Security

4.0

Company culture

3.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
385 salaries
unlock blur

₹5.6 L/yr - ₹23.5 L/yr

Senior Software Engineer
241 salaries
unlock blur

₹8.5 L/yr - ₹32 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
147 salaries
unlock blur

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