Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Mr Cooper Team. If you also belong to the team, you can get access from here

Mr Cooper Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Mr Cooper Software Engineer Trainee Interview Questions and Answers

Updated 26 Dec 2024

Mr Cooper Software Engineer Trainee Interview Experiences

5 interviews found

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

I applied via Campus Placement and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. 3 short programming questions(can solve in any language, just need to complete the missing code)
  • Q2. Aptitude and technical mcqs
Round 2 - Coding Test 

Long programming round in the Chennai office - 3 hours.
use case scenario will be provided: need to sketch any diagrams like uml/class/ER diagrams but not flow chart.

45 min for diagram and presentation to Pannel(each Pannel: 10 students with 1-3 Pannel members) once your presentation and modifications are approved. van proceed with programming(implementation of the use case).

Round 3 - Technical 

(3 Questions)

  • Q1. 30- 45 min of technical 1 Each Pannel consist of 2 to3 interviewers.
  • Q2. Questions from resume(projects,skillsets) solving problems with low time complexity possible
  • Q3. Database(sql Querys) Indepth Opps questions(with implementation)
Round 4 - Technical 

(1 Question)

  • Q1. Technical 2 DSA(data structures like linked list, trees) projects evaluating skills few os and cn questions
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in May 2024. There were 5 interview rounds.

Round 1 - Coding Test 

MCQ and Coding challenges based on arrays, tree and graphs.

Round 2 - Case Study 

Long coding round with basic system design.

Round 3 - Technical 

(2 Questions)

  • Q1. DSA question and problem-solving
  • Q2. Basic core OOPs concepts
Round 4 - Technical 

(2 Questions)

  • Q1. DSA and core computer Science concepts
  • Q2. Project discussion
Round 5 - HR 

(2 Questions)

  • Q1. Leadership round
  • Q2. Behavioral questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in DSA and be confident.

Software Engineer Trainee Interview Questions Asked at Other Companies

asked in HSBC Group
Q1. Palindromic Linked List Problem Statement Given a singly linked l ... read more
asked in HSBC Group
Q2. Search in a 2D Matrix Given a 2D matrix MAT of size M x N, where ... read more
asked in GlobalLogic
Q3. Slot Game Problem Statement You are given a slot machine with fou ... read more
Q4. 1. Explain oops and its 4 pillars 2. Explain polymorphism with re ... read more
asked in HSBC Group
Q5. Maximum Level Sum in a Binary Tree Given a Binary Tree with integ ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Provided aptitude session for us

Round 2 - Coding Test 

It was a long programming round which tested our knowledge on OOPS concepts

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

I applied via Campus Placement and was interviewed in Jun 2023. There were 5 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 - Coding Test 

Hacker earth test - medium level

Round 3 - Long programming round 

(1 Question)

  • Q1. Crowd funding platform
Round 4 - Technical 

(1 Question)

  • Q1. Oops, SQL , problem solving using sql
Round 5 - HR 

(1 Question)

  • Q1. General questions from as leadership oriented questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good understanding of oops , sql and dsa is must to crack this interview

Mr Cooper interview questions for designations

 Software Engineer

 (4)

 Senior Software Engineer

 (1)

 Associate Software Engineer

 (1)

 Junior Software Engineer

 (1)

 Software Engineer II

 (1)

 Software Developer

 (10)

 Software Developer Intern

 (1)

 Software Developer fresher

 (1)

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Both aptitude and programming questions were asked in this 1st round online test conducted in
HackerEarth platform

Round 2 - Coding Test 

Long programming round involves development of console based application

Interview questions from similar companies

Interview Questionnaire 

8 Questions

  • Q1. Find a number which occurs odd number of times and all number occurs even number of times
  • Ans. 

    Find an odd occurring number among even occurring numbers.

    • Use XOR operation to cancel out even occurring numbers and get the odd occurring number.

    • Iterate through the array and XOR each element with the result variable.

    • The final result will be the odd occurring number.

  • Answered by AI
  • Q2. Some discussion about my minor project
  • Q3. Spiral order of binary tree and mattrix, print it
  • Ans. 

    Print the spiral order of a binary tree and matrix.

    • For binary tree, use level order traversal and alternate direction for each level.

    • For matrix, use four pointers to traverse in spiral order.

    • Example for binary tree: 1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 8 -> 9

    • Example for matrix: 1 2 3 4 -> 8 7 6 5 -> 9 10 11 12 -> 16 15 14 13

  • Answered by AI
  • Q4. Some question about os,dbms
  • Q5. Find pair which have a given sum in a given array
  • Ans. 

    Finding pairs in an array with a given sum.

    • Iterate through the array and for each element, check if the difference between the given sum and the element exists in the array.

    • Use a hash table to store the elements of the array and their indices for faster lookup.

    • If there are multiple pairs with the same sum, return any one of them.

    • If no pair is found, return null or an empty array.

  • Answered by AI
  • Q6. Find total number of k element which have a given avg in a given array in minimum time complexity
  • Ans. 

    Find total number of k element with given avg in an array in minimum time complexity.

    • Use sliding window technique to traverse the array in O(n) time complexity.

    • Maintain a sum variable to keep track of the sum of elements in the window.

    • If the sum of elements in the window is equal to k times the given avg, increment the count.

    • Move the window by subtracting the first element and adding the next element in the array.

  • Answered by AI
  • Q7. Print all elements which in not boundary element in a given binary tree
  • Ans. 

    Printing non-boundary elements of a binary tree

    • Traverse the tree in any order (preorder, inorder, postorder)

    • Check if the current node is not a boundary node (not the first or last node in its level)

    • If it is not a boundary node, print its value

    • Recursively traverse its left and right subtrees

  • Answered by AI
  • Q8. Then some question about process synchronisation,error vs exception,and then 2-3 hr question

Interview Preparation Tips

Round: Test
Experience: practice codes on paper
Tips:

Round: Technical Interview
Experience: very good
Tips: please try to explain each and every question in detail

Round: Technical Interview
Experience: my hr round is not taken by them,and some of face 3rd round ,which is HR
Tips: please prepare all types of problem from geeksforgeeks

Skill Tips: please try to understand every problem from geeksforgeeks
Skills: ds
College Name: NIT Bhopal
Motivation: best work culture,and a lots of learning opportunity in this company,and in every 6 month there is a appraisal

Skills evaluated in this interview

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

(1 Question)

  • Q1. Javascript closure
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

It continues for 15 mins

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is policy manager
  • Ans. 

    Policy manager is a software tool used to centrally manage and enforce policies across an organization's systems and applications.

    • Policy manager helps define, monitor, and enforce policies related to security, compliance, access control, and other governance aspects.

    • It allows administrators to set rules and regulations that govern how data and resources are accessed and used within an organization.

    • Policy manager can au...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on actimize IFM.

Skills evaluated in this interview

Interview Questionnaire 

12 Questions

  • Q1. Engineering jobs
  • Q2. Home based work From Home
  • Q3. Coimbatore Chinnathdagam 641108
  • Q4. So Right now
  • Q5. Brhamanc
  • Q6. Sure
  • Q7. Support
  • Q8. Noukri.com
  • Q9. Windows mobile and Android
  • Q10. No Orguments
  • Q11. Within government has said that it could also mean right to be a few days it was just a few days
  • Q12. Software Creator and Development

Mr Cooper Interview FAQs

How many rounds are there in Mr Cooper Software Engineer Trainee interview?
Mr Cooper interview process usually has 3-4 rounds. The most common rounds in the Mr Cooper interview process are Technical, Coding Test and HR.
What are the top questions asked in Mr Cooper Software Engineer Trainee interview?

Some of the top questions asked at the Mr Cooper Software Engineer Trainee interview -

  1. Technical 2 DSA(data structures like linked list, trees) projects evaluating sk...read more
  2. 3 short programming questions(can solve in any language, just need to complete ...read more
  3. 30- 45 min of technical 1 Each Pannel consist of 2 to3 interviewe...read more
How long is the Mr Cooper Software Engineer Trainee interview process?

The duration of Mr Cooper Software Engineer Trainee interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Mr Cooper Software Engineer Trainee Interview Process

based on 5 interviews

2 Interview rounds

  • Coding Test Round
  • Technical Round
View more

Interview Questions from Similar Companies

Morningstar Interview Questions
3.9
 • 244 Interviews
FactSet Interview Questions
3.9
 • 208 Interviews
Apex Group Interview Questions
2.7
 • 137 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
Sharekhan Interview Questions
3.8
 • 84 Interviews
Axis Direct Interview Questions
3.8
 • 79 Interviews
Synchrony Interview Questions
4.3
 • 78 Interviews
View all
Mr Cooper Software Engineer Trainee Salary
based on 10 salaries
₹4.8 L/yr - ₹15.9 L/yr
101% more than the average Software Engineer Trainee Salary in India
View more details

Mr Cooper Software Engineer Trainee Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Process Associate
726 salaries
unlock blur

₹2 L/yr - ₹3.8 L/yr

Senior Process Associate
192 salaries
unlock blur

₹2.4 L/yr - ₹4.3 L/yr

Senior Software Engineer
66 salaries
unlock blur

₹8.5 L/yr - ₹22 L/yr

Software Engineer
48 salaries
unlock blur

₹7 L/yr - ₹14 L/yr

Senior Associate
43 salaries
unlock blur

₹2.7 L/yr - ₹6 L/yr

Explore more salaries
Compare Mr Cooper with

Axis Direct

3.8
Compare

Kotak Securities

3.6
Compare

FactSet

3.9
Compare

Sharekhan

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview