Upload Button Icon Add office photos
Engaged Employer

i

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

Truminds Software Systems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Truminds Software Systems Software Developer Interview Questions, Process, and Tips

Updated 19 Sep 2024

Top Truminds Software Systems Software Developer Interview Questions and Answers

Truminds Software Systems Software Developer Interview Experiences

6 interviews found

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

I applied via campus placement at National Institute of Technology,(NIT), Delhi and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It was around 2 hrs with 2 coding questions and some mcq questions on fundamentals

Round 2 - Technical 

(2 Questions)

  • Q1. Print some numbers in a tree format
  • Ans. 

    Print numbers in a tree format

    • Use recursion to print numbers in a tree structure

    • Start with the root node and recursively print child nodes

    • Use indentation to represent levels in the tree

    • Example: 1 --2 ----3 --4

  • Answered by AI
  • Q2. Factorial of a number, both iterative and recursive
  • Ans. 

    Factorial of a number can be calculated using both iterative and recursive methods.

    • Iterative method involves using a loop to multiply numbers from 1 to n.

    • Recursive method involves calling the function with n-1 until n reaches 1.

    • Example: Factorial of 5 using iterative method: 5! = 5*4*3*2*1 = 120

    • Example: Factorial of 5 using recursive method: 5! = 5 * 4!

    • Example: Factorial of 4 using recursive method: 4! = 4 * 3!

  • Answered by AI

Skills evaluated in this interview

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 - Coding Test 

It placed in hackerRank.question difficulty level was medium.

Round 3 - Technical 

(1 Question)

  • Q1. The difficulty depends upon who is taking your interview. But mostly asked questions were related to string and hashmap.
Round 4 - HR 

(1 Question)

  • Q1. It was more like a little bit technical and hr round. Mostly talk about personal profile like education,family background, hobbies and etc.

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Indraprastha Institute of Information Technology (IIIT), Delhi and was interviewed before Oct 2022. There were 4 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 

It was a MCQ + Coding test

Round 3 - Technical 

(2 Questions)

  • Q1. Questions on DSA
  • Q2. Questions on CS Fundamentals
Round 4 - Technical 

(2 Questions)

  • Q1. Questions on Linux commands
  • Q2. Questions related to oops and CS is
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Birla Institute of Technology (BIT), Ranchi and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Medium level leetcode

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basics of linked list. How to delete without head and address of current node is given?
  • Q2. Simple join queries on 2 to 3 tables?
  • Ans. 

    Join queries are used to combine data from multiple tables based on a related column between them.

    • Use JOIN keyword to combine tables based on a common column

    • Specify the columns to select from each table

    • Use WHERE clause to specify the join condition

  • Answered by AI

Skills evaluated in this interview

Truminds Software Systems interview questions for designations

 Software Developer Intern

 (1)

 Software Engineer

 (2)

 Senior Software Engineer

 (1)

 Senior Software Development Engineer

 (1)

 Senior Software Engineer 2

 (1)

 Sde1

 (2)

 Senior Development Engineer

 (1)

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

I applied via campus placement at Malviya National Institute of Technology (NIT), Jaipur and was interviewed in Nov 2022. There were 2 interview rounds.

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 - One-on-one 

(2 Questions)

  • Q1. Implement a linked list
  • Ans. 

    A linked list is a data structure that consists of a sequence of nodes, each containing a reference to the next node.

    • Each node has a data field and a next field that points to the next node

    • Insertion and deletion can be done efficiently

    • Traversal starts from the head node and continues until the end node is reached

  • Answered by AI
  • Q2. Questions on JAVA

Interview Preparation Tips

Topics to prepare for Truminds Software Systems Software Developer interview:
  • Linked Lists
Interview preparation tips for other job seekers - It is an easy to crack company

Skills evaluated in this interview

Round 1 - Technical 

(2 Questions)

  • Q1. To write any code in any programming language
  • Q2. About the project work that i have done
Round 2 - Technical 

(2 Questions)

  • Q1. Time was 3:15 in the clock write an code to find the angle between the hour and minute hand
  • Q2. About the project work

Interview Preparation Tips

Interview preparation tips for other job seekers - just try and try don’t loose hope

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How abstraction and inheritance are related?
  • Ans. 

    Abstraction allows for defining a common interface for related objects, while inheritance enables a class to inherit attributes and methods from another class.

    • Abstraction involves hiding the implementation details and showing only the necessary features of an object. Inheritance allows a class to inherit properties and behaviors from another class.

    • Abstraction helps in creating a blueprint of a class without providing t...

  • Answered by AI
  • Q2. Given a perticular time, find the angle between hour hand and minute hand.
  • Ans. 

    To find the angle between hour and minute hand at a given time on a clock face.

    • Calculate the angle made by hour hand with 12:00 on the clock face

    • Calculate the angle made by minute hand with 12:00 on the clock face

    • Find the absolute difference between the two angles

    • If the angle is greater than 180 degrees, subtract it from 360 degrees for the acute angle

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare OOP in detail. Have a good day structure knowledge. Understand how data structure can be used while solving problems.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Regrading Self join query
  • Ans. 

    A self join query is used to join a table to itself in a SQL query.

    • Self join is used when a table needs to be joined with itself to compare rows within the same table.

    • It requires aliasing the table with different names to distinguish between the two instances of the same table.

    • Commonly used in hierarchical data structures or when comparing related rows in a table.

  • Answered by AI
  • Q2. Group by query per catagory
  • Ans. 

    Group by query is used to group data based on a specific category.

    • Use the GROUP BY clause in SQL to group data based on a specific column

    • Aggregate functions like COUNT, SUM, AVG can be used with GROUP BY to perform calculations on grouped data

    • Example: SELECT category, COUNT(*) FROM products GROUP BY category

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Java related question
  • Q2. Web services related question
Round 2 - Technical 

(1 Question)

  • Q1. Project related question
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Good and easy most of the question are reapeted

Round 2 - Coding Test 

Arrays, string, constructors in basic to medium level

Round 3 - Technical 

(2 Questions)

  • Q1. Questions based on the resume in technical way
  • Q2. Oops concept dbms string data structures
Round 4 - HR 

(1 Question)

  • Q1. General HR questions in easy level

Truminds Software Systems Interview FAQs

How many rounds are there in Truminds Software Systems Software Developer interview?
Truminds Software Systems interview process usually has 2-3 rounds. The most common rounds in the Truminds Software Systems interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Truminds Software Systems Software Developer 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 Truminds Software Systems. The most common topics and skills that interviewers at Truminds Software Systems expect are Python, IP Networking, Linux, Software Development and C++.
What are the top questions asked in Truminds Software Systems Software Developer interview?

Some of the top questions asked at the Truminds Software Systems Software Developer interview -

  1. Factorial of a number, both iterative and recurs...read more
  2. Implement a linked l...read more
  3. Simple join queries on 2 to 3 tabl...read more

Tell us how to improve this page.

Truminds Software Systems Software Developer Interview Process

based on 7 interviews

1 Interview rounds

  • Resume Shortlist Round
View more
Truminds Software Systems Software Developer Salary
based on 38 salaries
₹5.5 L/yr - ₹18 L/yr
39% more than the average Software Developer Salary in India
View more details

Truminds Software Systems Software Developer Reviews and Ratings

based on 10 reviews

3.3/5

Rating in categories

3.1

Skill development

3.2

Work-life balance

2.8

Salary

3.1

Job security

3.1

Company culture

3.3

Promotions

3.0

Work satisfaction

Explore 10 Reviews and Ratings
Software Engineer
103 salaries
unlock blur

₹5 L/yr - ₹18.1 L/yr

Senior Software Engineer
93 salaries
unlock blur

₹7.2 L/yr - ₹18.5 L/yr

Software Developer
38 salaries
unlock blur

₹5.5 L/yr - ₹18 L/yr

Software Development Engineer
38 salaries
unlock blur

₹6 L/yr - ₹15.5 L/yr

Technical Lead
37 salaries
unlock blur

₹13 L/yr - ₹28 L/yr

Explore more salaries
Compare Truminds Software Systems with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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