Upload Button Icon Add office photos

NCR Corporation

Compare button icon Compare button icon Compare

Filter interviews by

NCR Corporation Software Engineer2 Interview Questions and Answers

Updated 22 Oct 2024

6 Interview questions

A Software Engineer2 was asked 8mo ago
Q. Given a linked list, determine if it contains a loop. Return true if there is a loop, otherwise return false.
Ans. 

Loop in a linked list refers to a situation where a node in the list points to a previous node, creating a cycle.

  • Check for a loop using Floyd's cycle detection algorithm

  • Use two pointers, one moving at twice the speed of the other

  • If the two pointers meet at some point, there is a loop

A Software Engineer2 was asked 8mo ago
Q. Write a function to delete a node in a singly linked list, given only a pointer to that node.
Ans. 

To delete a node in a linked list with a given pointer, update the node's value and next pointer to the next node's value and next pointer.

  • Set the value of the node to the value of the next node

  • Set the next pointer of the node to the next node's next pointer

Software Engineer2 Interview Questions Asked at Other Companies

Q1. - Given a water -tight orientable 2-manifold, how to find if a po ... read more
asked in Wayfair
Q2. Describe how you would design an Order and Cart Page in iOS, incl ... read more
asked in JioStar
Q3. Given an array of officers, where ranks 1-8 represent high-rankin ... read more
Q4. How to process large amount of data? Which tool would you prefer?
asked in PayPal
Q5. Can you describe the system design for the checkout feature on Am ... read more
A Software Engineer2 was asked 8mo ago
Q. Given the head of a singly linked list, reverse the list, and return the reversed list.
Ans. 

Reverse a linked list by changing the pointers direction

  • Iterate through the linked list and change the direction of pointers

  • Use three pointers - prev, current, next to reverse the list

  • Update the head of the linked list to the last node after reversing

A Software Engineer2 was asked 8mo ago
Q. Write a program to print the Fibonacci series.
Ans. 

Print the Fibonacci series

  • Use a loop to generate Fibonacci numbers

  • Start with 0 and 1, then add the previous two numbers to get the next number

  • Repeat this process until reaching the desired length of the series

A Software Engineer2 was asked 12mo ago
Q. One coding problem in go lang
Ans. 

Implement a function to reverse a string in Go lang

  • Create a function that takes a string as input

  • Convert the string into a slice of bytes for easier manipulation

  • Use a loop to iterate through the slice and reverse the order of characters

  • Convert the reversed slice back into a string and return it

A Software Engineer2 was asked
Q. What is the difference between an abstract class and an interface?
Ans. 

Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

  • Abstract class can have constructors, fields, and methods, while interface can only have constants and method signatures.

  • A class can extend only one abstract class, but can implement multiple interfaces.

  • Abstract classes are used to define a common behavior for subclasses, while interfaces are used to defi...

NCR Corporation Software Engineer2 Interview Experiences

6 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Loop in a linked list
  • Ans. 

    Loop in a linked list refers to a situation where a node in the list points to a previous node, creating a cycle.

    • Check for a loop using Floyd's cycle detection algorithm

    • Use two pointers, one moving at twice the speed of the other

    • If the two pointers meet at some point, there is a loop

  • Answered by AI
  • Q2. Delete the node in a linked list with given pointer
  • Ans. 

    To delete a node in a linked list with a given pointer, update the node's value and next pointer to the next node's value and next pointer.

    • Set the value of the node to the value of the next node

    • Set the next pointer of the node to the next node's next pointer

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why you want to join NCR

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Basic go lang & other concepts like Dynamic memory allocation, Garbage collector in go
  • Q2. One coding problem in go lang
  • Ans. 

    Implement a function to reverse a string in Go lang

    • Create a function that takes a string as input

    • Convert the string into a slice of bytes for easier manipulation

    • Use a loop to iterate through the slice and reverse the order of characters

    • Convert the reversed slice back into a string and return it

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Coding question & discussion around the questions with constraints
Round 3 - HR 

(1 Question)

  • Q1. Basic Introduction & discussions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-

I appeared for an interview in May 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions related to current project and tech stack.
  • Q2. Easy + 1 Medium level Coding questions
Round 2 - Technical 

(1 Question)

  • Q1. Technical + Managerial Questions
Round 3 - HR 

(1 Question)

  • Q1. Usual HR Discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is the difference between abstract and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface can only have constants and method signatures.

    • A class can extend only one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to define a common behavior for subclasses, while interfaces are used to define a ...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Managerial level questions like what is your major challenge that you faced in your career
Interview experience
4
Good
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 

(2 Questions)

  • Q1. Mostly asked about .net topics.
  • Q2. Garbage collection, Performance improvements, memory management techniques.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test on hackerearth. two questions were asked

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the pointers direction

    • Iterate through the linked list and change the direction of pointers

    • Use three pointers - prev, current, next to reverse the list

    • Update the head of the linked list to the last node after reversing

  • Answered by AI
  • Q2. Fibbonaci series print
  • Ans. 

    Print the Fibonacci series

    • Use a loop to generate Fibonacci numbers

    • Start with 0 and 1, then add the previous two numbers to get the next number

    • Repeat this process until reaching the desired length of the series

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about NCR Corporation?
Ask anonymously on communities.

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Oct 2022. There were 3 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 - One-on-one 

(1 Question)

  • Q1. Array-Based two DSA Algo and core java & Multithreading.
Round 3 - One-on-one 

(1 Question)

  • Q1. More of your current project architecture and technology you are using of it.
Are these interview questions helpful?

Software Engineer2 Interview Questions & Answers

EPAM Systems user image Swati Swagatika Maharana

posted on 28 Apr 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. OOPS concepts, design pattern

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude knowledge

Round 2 - Coding Test 

Strong in java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidence and focus on your goal

I applied via Naukri.com and was interviewed before Sep 2019. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. IQ Test
  • Q2. Machine Test
  • Q3. Face To Face

Interview Preparation Tips

Interview preparation tips for other job seekers - basically there are 3 rounds:-
1. IQ Test
2. Machine Test
3. Face to Face

IQ Test is not so tough but prepare well Machine Test
Machine Test Question are like :-
Q.1 - We declare a variable in C++ like "is_this_a_variable" and in Java like "IsThisAVariable". There is underscore in between every word and first alphabet of every word is in lowercase in C++ and in Java first alphabet is in capital without underscore. Create a program in which if user input a string in a C++ variable format it will convert the input in java variable format.

Q2. Count the frequency of a string.
user input string - pqhphi
output-
p - 2
q - 1
h - 2
i - 1

Be strong in algorithms and data structure.

NCR Corporation Interview FAQs

How many rounds are there in NCR Corporation Software Engineer2 interview?
NCR Corporation interview process usually has 2-3 rounds. The most common rounds in the NCR Corporation interview process are Technical, HR and Resume Shortlist.
How to prepare for NCR Corporation Software Engineer2 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 Corporation. The most common topics and skills that interviewers at NCR Corporation expect are Recruitment, Scrum, Cloud, Financial Services and Functional Testing.
What are the top questions asked in NCR Corporation Software Engineer2 interview?

Some of the top questions asked at the NCR Corporation Software Engineer2 interview -

  1. What is the difference between abstract and interf...read more
  2. Delete the node in a linked list with given poin...read more
  3. One coding problem in go l...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.6/5

based on 7 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 33%
2-4 weeks 67%
View more

Interview Questions from Similar Companies

DXC Technology Interview Questions
3.7
 • 839 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
NTT Data Interview Questions
3.8
 • 658 Interviews
Publicis Sapient Interview Questions
3.5
 • 645 Interviews
GlobalLogic Interview Questions
3.6
 • 628 Interviews
EPAM Systems Interview Questions
3.7
 • 569 Interviews
UST Interview Questions
3.8
 • 544 Interviews
View all
NCR Corporation Software Engineer2 Salary
based on 193 salaries
₹9.8 L/yr - ₹21.3 L/yr
17% less than the average Software Engineer2 Salary in India
View more details

NCR Corporation Software Engineer2 Reviews and Ratings

based on 27 reviews

2.8/5

Rating in categories

2.2

Skill development

2.9

Work-life balance

3.0

Salary

3.4

Job security

3.1

Company culture

2.1

Promotions

2.5

Work satisfaction

Explore 27 Reviews and Ratings
Software Engineer
394 salaries
unlock blur

₹6.5 L/yr - ₹22.5 L/yr

Senior Software Engineer
280 salaries
unlock blur

₹9.5 L/yr - ₹36 L/yr

Software Engineer2
193 salaries
unlock blur

₹9.8 L/yr - ₹21.3 L/yr

Software Engineer III
185 salaries
unlock blur

₹13 L/yr - ₹35 L/yr

Software Engineer II
153 salaries
unlock blur

₹9.2 L/yr - ₹23 L/yr

Explore more salaries
Compare NCR Corporation with

DXC Technology

3.7
Compare

Sutherland Global Services

3.5
Compare

Optum Global Solutions

4.0
Compare

Virtusa Consulting Services

3.7
Compare
write
Share an Interview