Upload Button Icon Add office photos

Filter interviews by

Clear (1)

NCR Voyix Software Engineer Intern Interview Questions, Process, and Tips

Updated 3 May 2024

Top NCR Voyix Software Engineer Intern Interview Questions and Answers

  • Q1. Merge Sort Problem Statement You are given a sequence of numbers, ARR . Your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algo ...read more
  • Q2. Search In Rotated Sorted Array Problem Statement Given a rotated sorted array ARR of size 'N' and an integer 'K', determine the index at which 'K' is present in the arra ...read more
  • Q3. What is Software Development Cycle??What are the phase in software development??
View all 9 questions

NCR Voyix Software Engineer Intern Interview Experiences

3 interviews found

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

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

Round 1 - Aptitude Test 

2 dsa questions
1st is based on strings (easy)
2nd one ie based on hashmaps (medium)

Round 2 - Technical 

(2 Questions)

  • Q1. IP address validation dsa
  • Q2. Oops question SQL query on employee database
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round With questions about Linux commands Behavioral questions Questions about past projects

Interview Preparation Tips

Topics to prepare for NCR Voyix Software Engineer Intern interview:
  • DSA
  • SQL
  • Java
  • OOPS

I applied via Company Website and was interviewed in Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

12 Questions

  • Q1. What is Software Development Cycle??What are the phase in software development??
  • Ans. 

    Software Development Cycle is a process of designing, creating, testing, and deploying software.

    • The phases of Software Development Cycle are Planning, Analysis, Design, Implementation, Testing, Deployment, and Maintenance.

    • Planning involves defining the project scope, goals, and requirements.

    • Analysis involves gathering and analyzing user requirements.

    • Design involves creating a detailed design of the software.

    • Implementat...

  • Answered by AI
  • Q2. What is scrum methodology?
  • Ans. 

    Scrum is an agile methodology used for software development and project management.

    • It involves iterative and incremental development.

    • A team works on a project in sprints, typically 2-4 weeks long.

    • The team has daily stand-up meetings to discuss progress and plan for the day.

    • The product owner prioritizes the backlog of work.

    • At the end of each sprint, a review and retrospective are held to evaluate progress and plan for t

  • Answered by AI
  • Q3. What is waterfall model?? What are the phases in waterfall model??
  • Ans. 

    Waterfall model is a linear sequential approach to software development.

    • Phases: Requirements gathering, Design, Implementation, Testing, Deployment, Maintenance

    • Each phase must be completed before moving to the next

    • No going back to previous phases

    • Documentation is important

    • Less flexible than Agile model

  • Answered by AI
  • Q4. What is agile model??
  • Ans. 

    Agile model is an iterative approach to software development that emphasizes flexibility and customer satisfaction.

    • Agile model involves continuous collaboration between cross-functional teams and customers

    • It prioritizes working software over comprehensive documentation

    • It allows for changes and adjustments to be made throughout the development process

    • Examples of agile methodologies include Scrum, Kanban, and Extreme Pro

  • Answered by AI
  • Q5. Java object oriented concepts such as inheritance, encapsulation, polymorphism, abstraction??
  • Q6. Java concepts such as access modifiers, collections.
  • Q7. Simple programming questions such as sort an array in ascending, descending order, binary search problem, some questions on abstraction with programming
  • Q8. Questions from databases??
  • Q9. Questions from mysql such as joins, primary key , foreign key, normalization, union, intersect etc
  • Q10. Some queries from mysql such as find second older person from a table and some questions in which u to use the knowledge of joins, primary key, foreign key to get the answer.
  • Q11. Questions from having , group by , order by causes.
  • Q12. In managerial round questions were asked such as where u see yourself after 5 years, why NCR , Why should we hire u ? Some questions on the projects that I have done. Some situation based questions were a...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, try to explain everything with an example, they will ask u to code everything on an editor so it is important that u write a code which can run properly. In managerial try to be honest and clear with your answer as they may ask follow up questions.

Skills evaluated in this interview

Software Engineer Intern Interview Questions Asked at Other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, y ... read more
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Zero Matrix Problem Statement You are given a matrix MATRIX of di ... read more
Q4. Similar Strings Problem Statement Determine whether two given str ... read more
Q5. Partition Array Minimizing Subset Sum Difference Given an array c ... read more

I was interviewed before Mar 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA and DBMS.

  • Q1. 

    Merge Sort Problem Statement

    You are given a sequence of numbers, ARR. Your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

    Explanation:

    The Merge Sort...

  • Ans. 

    Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

    • Divide the input array into two halves recursively until each array has only one element.

    • Merge the sorted halves to produce a completely sorted array.

    • Time complexity of Merge Sort is O(n log n).

  • Answered by AI
  • Q2. 

    Search In Rotated Sorted Array Problem Statement

    Given a rotated sorted array ARR of size 'N' and an integer 'K', determine the index at which 'K' is present in the array.

    Note:
    1. If 'K' is not present...
  • Ans. 

    Given a rotated sorted array, find the index of a given integer 'K'.

    • Use binary search to efficiently find the index of 'K'.

    • Consider the rotation of the array while performing the search.

    • Handle cases where 'K' is not present in the array by returning -1.

  • Answered by AI
  • Q3. Write a query to find the nth highest salary from a database.
  • Ans. 

    Query to find the nth highest salary from a database

    • Use ORDER BY and LIMIT in the query

    • Consider handling ties if multiple employees have the same salary

    • Example: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT n-1, 1

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Questions based on OOPS and Software Lifecycle were asked in this round.

  • Q1. Can you explain the OOP concepts?
  • Ans. 

    OOP concepts are fundamental principles in object-oriented programming that help in organizing and designing code.

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

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

    • Polymorphism: The ability for objects of different classes to respond to the same message in different ways.

    • Abstraction: Hiding the...

  • Answered by AI
  • Q2. Can you explain the access modifiers in Java?
  • Ans. 

    Access modifiers in Java control the visibility and accessibility of classes, methods, and variables.

    • There are four types of access modifiers in Java: public, private, protected, and default.

    • Public: accessible from any other class.

    • Private: accessible only within the same class.

    • Protected: accessible within the same package and subclasses.

    • Default: accessible only within the same package.

    • Example: public class MyClass { pr

  • Answered by AI
  • Q3. What is Scrum methodology?
  • Ans. 

    Scrum is an agile methodology used in software development for managing and completing complex projects.

    • Scrum involves breaking down projects into small, manageable tasks called sprints.

    • It emphasizes frequent communication and collaboration among team members.

    • Scrum uses daily stand-up meetings to track progress and address any obstacles.

    • Roles in Scrum include Product Owner, Scrum Master, and Development Team.

    • Popular to...

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

The last round was managerial round.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANCR Corporation interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Aptitude, OOPS, OSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

I applied via Referral and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic questions

I applied via Newspaper Ad and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions of java.
Round 3 - HR 

(1 Question)

  • Q1. Intro and other hr related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover the basic questions regarding the programming language.

I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Puzzles, Psychometric Test

Round 2 - One-on-one 

(1 Question)

  • Q1. Some water in 3 Jars question, you had to measure out 5L correctly

Interview Preparation Tips

Interview preparation tips for other job seekers - Make the interview interactive, I got this input from another Senior. Before i went into the interview room the volunteers were telling all those who goes into Room No 1 is screwed. I was praying i don't get room no 1. But fortunately for me I got room no 1 because when the interviewer gave me the puzzle and handed over pen and paper he went back to relax his posture and when i explained i will fill the 5L Jar first, he immediately came forward to listen to me, at that moment i knew i got the job because i felt the previous candidates never made their interview interactive and that's why he went back to relax his posture.

I applied via Company Website and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

TNQT: TCS National Qualifier Test

Round 2 - Technical 

(1 Question)

  • Q1. All technical questions related to your project and basic understanding of any programming language. Basically questions from your resume will be asked.
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. What is your family background?

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best, TCS is not tough to get into. But getting good project is a main cookie to be cracked.

I applied via Walk-in and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. .net questions - routing in asp.net MVC ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing . Prepare well for interview on .Net technology stack

I applied via Company Website and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of
Contribute & help others!
anonymous
You can choose to be anonymous

NCR Voyix Interview FAQs

How many rounds are there in NCR Voyix Software Engineer Intern interview?
NCR Voyix interview process usually has 3 rounds. The most common rounds in the NCR Voyix interview process are Technical, One-on-one Round and Aptitude Test.
What are the top questions asked in NCR Voyix Software Engineer Intern interview?

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

  1. What is Software Development Cycle??What are the phase in software developmen...read more
  2. What is waterfall model?? What are the phases in waterfall mode...read more
  3. What is scrum methodolo...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

SALARIES

Quess

SALARIES

Quess

JOBS

Hvantage Technologies

No Jobs

JOBS

Sterlite Technologies

No Jobs

INTERVIEWS

NCR Voyix

No Interviews

SALARIES

Quess

SALARIES

Quess

INTERVIEWS

NCR Voyix

No Interviews

Tell us how to improve this page.

NCR Voyix Software Engineer Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
NCR Voyix Software Engineer Intern Salary
based on 8 salaries
₹3.6 L/yr - ₹7 L/yr
17% less than the average Software Engineer Intern Salary in India
View more details
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