Upload Button Icon Add office photos

Filter interviews by

Manappuram Comptech and Consultants Software Engineer Trainee Interview Questions and Answers

Updated 3 Dec 2024

Manappuram Comptech and Consultants Software Engineer Trainee Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain concept of OOPs
  • Q2. What technologies are you familiar with

Interview Preparation Tips

Interview preparation tips for other job seekers - Main focus was with how long you are going to stay. They want employees that stay. Also they want to know that you really need the job. So act accordingly.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

They posed questions assessing logical and analytical aptitude.

Round 2 - Coding Test 

After completing and passing the aptitude round, I was allowed to take the coding round exam, where the questions ranged from easy to medium level.

Round 3 - Technical 

(3 Questions)

  • Q1. Basic concepts of oops in java. DBMS questions.
  • Q2. Questions related to my projects not in dept.
  • Q3. They asked me to implement a stack using queues.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus primarily on the fundamentals such as Data Structures, Object-Oriented Programming, Computer Networks, Operating Systems, Database Management Systems, and standard SQL query questions.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Public key Cryptography
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I was interviewed before Aug 2023.

Round 1 - Aptitude Test 

Aptitude questions on data structures, database and some other technical questions

Round 2 - Coding Test 

Coding on Data structures linked list and graph

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Gandhi Institute of Technology and Management, Visakhapatnam and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

I believe it was easy; they provided a total of 60 questions.

Round 2 - Coding Test 

Two coding questions were provided: one was easy, and the other was hard.

Round 3 - Technical 

(1 Question)

  • Q1. Can you describe the coding scenario question you were given, and how it related to your resume?
Round 4 - HR 

(1 Question)

  • Q1. Please explain the Quick Sort algorithm and its process of reallocation.
  • Ans. 

    Quick Sort is a popular sorting algorithm that uses divide and conquer strategy to sort elements in an array.

    • Quick Sort picks a pivot element and partitions the array around the pivot.

    • It recursively sorts the sub-arrays on either side of the pivot.

    • The process continues until the entire array is sorted.

    • Example: Given array [5, 2, 9, 3, 7], after Quick Sort it becomes [2, 3, 5, 7, 9].

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

90min test, questions from oops, http, css, java, analtical ability

Round 2 - Coding Test 

1 easy 1 med, 1 easy enuf to pass

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement

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 

General aptitude questions

Round 3 - Technical 

(2 Questions)

  • Q1. Project discussion, detailed
  • Q2. Coding question on strings
Round 4 - HR 

(1 Question)

  • Q1. Why this company, how do you handle conflict in team members. Which is your desired location, Pune or Hyderabad
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in May 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

1 Reverse a link list
2. Simple mathematical Problem

Round 3 - One-on-one 

(2 Questions)

  • Q1. SQl, ML, AI Questions including java
  • Q2. SQL, ML, AI related questions including some core java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Show confidence

I was interviewed in Mar 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

2 programming questions, MCQs based on OS, DBMS, OOPS and web fundamentals

  • Q1. Search In A 2D Matrix

    You have been given a 2-D array 'MAT' of size M x N where 'M' and 'N' denote the number of rows and columns, respectively. The elements of each row are sorted ...

  • Ans. Brute Force

    We have a brute force solution to this problem. We can simply traverse the matrix and check if ‘TARGET’ exists or not. 

    Space Complexity: O(1)Explanation:

    O(1)
     

    Since, we are not using any extra space to find the number of pairs. Therefore, the overall space complexity will be O(1).

    Time Complexity: O(m*n) - For 2d arraysExplanation:

    O(M*N) where ‘M’ and ‘N’ denote the number of rows and columns in ‘M...

  • Answered Anonymously
  • Q2. Reverse Linked List
    Input Format :
    The first line of input contains a single integ...
  • Ans. Recursive Approach

    One way is to use recursion to reverse the list. Divide the linked list in two halves, the first node and the rest of the list. Reverse the second half using recursion and append the first half, that is the first node at the end of the reversed linked list. Return the head of the reversed linked list.

     

    Algorithm

     

    • If the list contains only one node, return the head of the list.
    • Else, divide the ...
  • Answered Anonymously
Round 2 - Face to Face 

(5 Questions)

Round duration - 40 minutes
Round difficulty - Easy

This round had 2 coding questions and some basic questions revolving around OOPs

  • Q1. Palindromic Linked List

    You are given a singly Linked List of integers. Your task is to return true if the given singly linked list is a palindrome otherwise returns false.

    For example:
    The given linked ...
  • Ans. Using Stack
    1. The idea is to traverse the Linked List from head to tail and push every encountered node data into the stack.
    2. Then we traverse the Linked List and for each node, we pop the top element from the stack and compare it with current node data of the Linked List. If they mismatch then the current linked list is not palindrome else if all elements match then the linked list is a palindrome.
    Space Complexity: O(n)Exp...
  • Answered Anonymously
  • Q2. Find the maximum level sum among all the levels in the Binary Tree

    Given a Binary Tree with integer nodes, your task is to find the maximum level sum among all the levels in the Binary Tree. The sum of any...

  • Ans. Recursive Approach

    Let’s traverse the given Binary tree using Recursion.The idea is to recursively store the sum of nodes of every level separately in a map.

     

    • Take a map to store the sum of each level. 
    • The recursive function has ‘ROOT’, current level, and map as its parameters.
      • Base Condition:  If ‘ROOT’ is NULL, return.
      • Add the value of the current node to the value mapped to the current level in the map.
      • Re...
  • Answered Anonymously
  • Q3. OOPS Question

    How is an abstract class different from an interface?

  • Q4. OOPS Question

    What is the difference between overloading and overriding?

  • Q5. OOPS Question

    What is meant by static polymorphism?

Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Was conducted a couple of hours after the previous Tech round. The round was a HR one, behavioral questions and discussion around my hobbies :)

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Trainee Software Engineer in HyderabadEligibility criteriaAbove 7 CGPAHSBC interview preparation:Topics to prepare for the interview - Data Structures, OOPS, C++ Language specific paradigms, SQL, OSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Be very thorough with your resume. You will be properly grilled.
Tip 2 : Be clear with the basics of atleast one programming language, and have competitive programming experience
Tip 3 : Have projects in your resume from different domains. For a fresher, HSBC looks for a jack of all trades instead of a master of one, so having projects in different domains with be greatly beneficial

Application resume tips for other job seekers

Tip 1 : Have multiple projects
Tip 2 : Have a decent skillset, with good educational background

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Engineer Trainee Interview Questions & Answers

HSBC Group user image Creations for engineers - Arun R

posted on 25 Jun 2022

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Based on intermediate Data structures

Round 3 - Technical 

(1 Question)

  • Q1. Based on your resume
Round 4 - HR 

(1 Question)

  • Q1. Check your communication level

Interview Preparation Tips

Interview preparation tips for other job seekers - Do well prepare based on your resume. All the best

Manappuram Comptech and Consultants Interview FAQs

How many rounds are there in Manappuram Comptech and Consultants Software Engineer Trainee interview?
Manappuram Comptech and Consultants interview process usually has 1 rounds. The most common rounds in the Manappuram Comptech and Consultants interview process are One-on-one Round.
What are the top questions asked in Manappuram Comptech and Consultants Software Engineer Trainee interview?

Some of the top questions asked at the Manappuram Comptech and Consultants Software Engineer Trainee interview -

  1. What technologies are you familiar w...read more
  2. Explain concept of O...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 561 Interviews
Wells Fargo Interview Questions
3.9
 • 560 Interviews
Bajaj Finserv Interview Questions
4.0
 • 500 Interviews
HSBC Group Interview Questions
4.0
 • 489 Interviews
Muthoot Fincorp Interview Questions
4.5
 • 477 Interviews
Xyz Company Interview Questions
3.8
 • 455 Interviews
American Express Interview Questions
4.2
 • 360 Interviews
UBS Interview Questions
4.0
 • 337 Interviews
View all
DOT NET Developer
31 salaries
unlock blur

₹2 L/yr - ₹4.2 L/yr

Software Developer
25 salaries
unlock blur

₹1.8 L/yr - ₹4.1 L/yr

Angular Developer
16 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

Softwaretest Engineer
11 salaries
unlock blur

₹1 L/yr - ₹3.6 L/yr

Junior Officer
10 salaries
unlock blur

₹2.4 L/yr - ₹3.6 L/yr

Explore more salaries
Compare Manappuram Comptech and Consultants with

Muthoot Finance

3.6
Compare

Muthoot Fincorp

4.5
Compare

Shriram Finance

4.1
Compare

Bajaj Finance

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