Upload Button Icon Add office photos

Filter interviews by

NCR Voyix Software Engineer III Interview Questions and Answers for Experienced

Updated 21 Oct 2024

NCR Voyix Software Engineer III Interview Experiences for Experienced

1 interview found

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

I applied via LinkedIn and was interviewed in Jul 2023. There were 2 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 tips
Round 2 - Technical 

(3 Questions)

  • Q1. Write program in c# describing all OOPs concepts.
  • Ans. 

    Program in C# demonstrating OOPs concepts

    • Use classes and objects to demonstrate encapsulation

    • Inheritance can be shown by creating a base class and derived classes

    • Polymorphism can be illustrated through method overriding or interfaces

    • Abstraction can be implemented by hiding internal details and showing only necessary information

  • Answered by AI
  • Q2. Write program for matrix diagonal & anti diagonal sum.
  • Ans. 

    Program to calculate diagonal and anti-diagonal sum of a matrix.

    • Iterate through the matrix to calculate diagonal and anti-diagonal sums separately.

    • For diagonal sum, add elements where row index equals column index.

    • For anti-diagonal sum, add elements where row index + column index equals matrix size - 1.

    • Example: For a 3x3 matrix, diagonal sum = matrix[0][0] + matrix[1][1] + matrix[2][2]

    • Example: For a 3x3 matrix, anti-di...

  • Answered by AI
  • Q3. SOLID principles and design patterns

Interview Preparation Tips

Topics to prepare for NCR Voyix Software Engineer III interview:
  • Design Patterns
  • OOPS
  • REST API
  • Angular

Skills evaluated in this interview

Software Engineer III Jobs at NCR Voyix

View all

Interview questions from similar companies

I applied via Job Portal and was interviewed in Dec 2021. There were 4 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 tips
Round 2 - Aptitude Test 

Online test conducted on SHL platform included aptitude as well as coding part. Aptitude was moderate and coding part involved two questions one is moderate and second hard level.

Round 3 - Technical 

(2 Questions)

  • Q1. Interview was taken on SHL platform. In technical round interviewer first asked to share the screen and gave me a DSA problem to solve which was based on Array. Difficulty level was moderate for DSA quest...
  • Q2. Explain layers of OSI model. Which one would you use OSI or TCP/UDP and why? Explain with example.
  • Ans. 

    The OSI model has 7 layers. OSI or TCP/UDP depends on the application. OSI is used for theoretical understanding while TCP/UDP is used for practical implementation.

    • The 7 layers of OSI model are Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • OSI model is used for theoretical understanding of networking concepts.

    • TCP/UDP are used for practical implementation of networking protocols.

    • TCP is ...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. It was self screening round where you are given with the different HR round questions that you need to answer within given time.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for DSA and also prepare all CSE domain subjects.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. SAML process explain
  • Ans. 

    SAML is a protocol used for exchanging authentication and authorization data between parties.

    • SAML stands for Security Assertion Markup Language.

    • It is used for single sign-on (SSO) authentication.

    • SAML has three main components: the identity provider (IDP), the service provider (SP), and the user.

    • The SAML process involves the user requesting access to a service, the SP redirecting the user to the IDP for authentication, ...

  • Answered by AI
  • Q2. SIngle sign on process
  • Ans. 

    Single sign-on (SSO) is a process that allows users to access multiple applications with a single set of login credentials.

    • SSO eliminates the need for users to remember multiple usernames and passwords.

    • It improves security by reducing the risk of password-related security breaches.

    • SSO can be implemented using various protocols such as SAML, OAuth, and OpenID Connect.

    • Examples of SSO providers include Okta, OneLogin, and

  • Answered by AI
  • Q3. MySQL query optimisation
  • Q4. OOPS concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep the basic concept of CS clear.

I applied via Walk-in and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic Programming questions.
  • Q2. Fibonacci program
  • Q3. OOPS concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic OOPS concepts and basic programs.

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

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

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

Interview Questionnaire 

2 Questions

  • Q1. They asked me on java and I have joined as a fresher they not much questions as I got selected as fresher on oops concepts and collections
  • Q2. Please be confident while facing interview and they will check your communication skills

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

NCR Voyix Interview FAQs

How many rounds are there in NCR Voyix Software Engineer III interview for experienced candidates?
NCR Voyix interview process for experienced candidates usually has 2 rounds. The most common rounds in the NCR Voyix interview process for experienced candidates are Resume Shortlist and Technical.
How to prepare for NCR Voyix Software Engineer III interview for experienced candidates?
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 Java, Microservices, Javascript, HTML and Java Spring Boot.
What are the top questions asked in NCR Voyix Software Engineer III interview for experienced candidates?

Some of the top questions asked at the NCR Voyix Software Engineer III interview for experienced candidates -

  1. Write program for matrix diagonal & anti diagonal s...read more
  2. Write program in c# describing all OOPs concep...read more
  3. most of them are in inheritence,polymorphism,sample programme to wr...read more

Tell us how to improve this page.

NCR Voyix Software Engineer III Interview Process for Experienced

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Oracle Interview Questions
3.7
 • 905 Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
View all
NCR Voyix Software Engineer III Salary
based on 147 salaries
₹13.5 L/yr - ₹33 L/yr
At par with the average Software Engineer III Salary in India
View more details

NCR Voyix Software Engineer III Reviews and Ratings

based on 24 reviews

3.3/5

Rating in categories

3.0

Skill development

3.7

Work-life balance

3.3

Salary

3.0

Job security

3.3

Company culture

2.9

Promotions

3.0

Work satisfaction

Explore 24 Reviews and Ratings
Software Engineer III

Hyderabad / Secunderabad

6-11 Yrs

₹ 16-32 LPA

Software Engineer III

Hyderabad / Secunderabad

6-11 Yrs

₹ 16-32 LPA

Software Engineer III(C++)

Hyderabad / Secunderabad

4-9 Yrs

Not Disclosed

Explore more jobs
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