Upload Button Icon Add office photos

Filter interviews by

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

Updated 3 May 2024

Top NCR Voyix Software Engineer Intern Interview Questions and Answers for Freshers

  • 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 for Freshers

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 for undefined

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 Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Discuss 4 case study related to supply chain management.

Interview Preparation Tips

Topics to prepare for Tech Mahindra Senior Software Engineer interview:
  • Supply Chain Management
Interview preparation tips for other job seekers - Develop some case study of your own and also deep analysis for each.

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 140 minutes
Round difficulty - Medium

Test timing was at 2:00 pm , it was conducted in a college and the environment was good for the test. Camera was a primary part of test, so no suspicious activity.

  • Q1. 

    Sum of Two Numbers Represented as Arrays

    Given two numbers in the form of two arrays where each element of the array represents a digit, calculate the sum of these two numbers and return this sum as an ar...

  • Ans. 

    Given two numbers represented as arrays, calculate their sum and return the result as an array.

    • Iterate through the arrays from right to left, adding digits and carrying over if necessary

    • Handle cases where one array is longer than the other by considering the remaining digits

    • Ensure the final sum array does not have any leading zeros

  • Answered by AI
Round 2 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

The round was conducted at around 12 p.m. I was called at the college location and then it was conducted. The interviewer was quite polite and frank.

Round 3 - HR 

Round duration - 8 minutes
Round difficulty - Easy

This round was conducted right after finishing and clearing the technical round at the same place and on the same day.

Interview Preparation Tips

Eligibility criteriaAbove 60 %Wipro Limited interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Database Concepts, Coding problemsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 2-3 Coding problems daily so your logic building becomes stronger.
Tip 2 : Exercise problems based on OOPS concepts and others too.
Tip 3 : If you can have your own project built, then it's the major point and will act as a plus point.

Application resume tips for other job seekers

Tip 1 : Your resume should be in standard form, short and simple will be more effective.
Tip 2 : Whatever you have learned, you need to mention it in your resume as that will be your primary source of selection and having project on your resume is important.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SOLID principals, oops, c# basics, SQL server, azure, design pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear basics of oops and design pattern

I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Hr

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be true to what you are putting before the interviewer . Try to put your ideas Add something you did well in your career like in projects /research which you know very well and versed in concepts about it for open interview so that interviewer can get bandwidth where he can ask questions from. This is simply a key .

I applied via Campus Placement and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. 1.Describe a situation where you have taken a quick decision and failed, and a situation where you succeeded. 2. What is a skill you have tried to achieve but failed? 3. Describe a decision you have taken ...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Always try to take risk in small problems . When you face the consequences, you would be able to tackle bigger problems.
2. Every skill you learn, even if you didn't excel in it is not to be considered a waste of time/failure, you learn something simply by participating.

Interview Questionnaire 

1 Question

  • Q1. HTML, CSS, BOOTSTRAP, PHP. SQL

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

NCR Voyix Interview FAQs

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

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

  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

Tell us how to improve this page.

NCR Voyix Software Engineer Intern Interview Process for Freshers

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
371 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
242 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
176 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
162 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