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 and Answers

Updated 19 Sep 2024

6 Interview questions

A Software Developer was asked 9mo ago
Q. 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

A Software Developer was asked 9mo ago
Q. Can you write 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

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 Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
A Software Developer was asked
Q. 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

A Software Developer was asked
Q. Write code in any programming language.
Ans. 

This code demonstrates a simple Python function to calculate the factorial of a number using recursion.

  • Define a function named 'factorial' that takes one argument 'n'.

  • Check if 'n' is less than or equal to 1; if so, return 1.

  • Otherwise, return 'n' multiplied by 'factorial(n-1)'.

  • Example: factorial(5) returns 120.

A Software Developer was asked
Q. Write code to find the angle between the hour and minute hand on a clock when the time is 3:15.
Ans. 

Calculate the angle between the hour and minute hands of a clock at 3:15.

  • Each hour on the clock represents 30 degrees (360 degrees / 12 hours).

  • Each minute represents 6 degrees (360 degrees / 60 minutes).

  • At 3:15, the hour hand is at 97.5 degrees (3 hours * 30 + 15 minutes * 0.5).

  • The minute hand is at 90 degrees (15 minutes * 6).

  • The angle between the hands is the absolute difference: |97.5 - 90| = 7.5 degrees.

A Software Developer was asked 9mo ago
Q. 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!

Truminds Software Systems Software Developer Interview Experiences

6 interviews found

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.
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 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 - 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
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement 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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement 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

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

I applied via Campus Placement and was interviewed in Nov 2022. 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 - 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
  • Ans. 

    Calculate the angle between the hour and minute hands of a clock at 3:15.

    • Each hour on the clock represents 30 degrees (360 degrees / 12 hours).

    • Each minute represents 6 degrees (360 degrees / 60 minutes).

    • At 3:15, the hour hand is at 97.5 degrees (3 hours * 30 + 15 minutes * 0.5).

    • The minute hand is at 90 degrees (15 minutes * 6).

    • The angle between the hands is the absolute difference: |97.5 - 90| = 7.5 degrees.

  • Answered by AI
  • Q2. About the project work

Interview Preparation Tips

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

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Truminds Software Systems?
Ask anonymously on communities.

Interview questions from similar companies

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. How to implement Sqlite database in React Native?
  • Q2. What are generator functions?
  • Ans. 

    Generator functions are functions that can be paused and resumed, allowing for lazy evaluation of data.

    • Generator functions use the yield keyword to pause execution and return a value.

    • They can be used to generate an infinite sequence of values.

    • They are memory efficient as they only generate values when needed.

    • Example: function* myGenerator() { yield 1; yield 2; yield 3; }

    • Example: const infiniteGenerator = function*() { ...

  • Answered by AI
  • Q3. How to implement push notifications in Android and iOS?
  • Ans. 

    Push notifications can be implemented in Android and iOS using Firebase Cloud Messaging (FCM) and Apple Push Notification service (APNs) respectively.

    • For Android, integrate FCM SDK in the app and use FCM console to send notifications.

    • For iOS, create an APNs certificate, configure the app to receive notifications, and use APNs to send notifications.

    • Both platforms require handling of notification payload in the app to di...

  • Answered by AI
  • Q4. How do you use in your last app?
  • Ans. 

    I used React Native for my last app.

    • Developed UI components using React Native

    • Integrated APIs to fetch and display data

    • Implemented Redux for state management

    • Used Firebase for authentication and database

    • Optimized app performance using React Native Debugger

  • Answered by AI
  • Q5. What is the difference between functional components and non functional components?
  • Ans. 

    Functional components are stateless and return UI elements based on input props, while non-functional components have state and can change UI based on user interaction.

    • Functional components are simpler and easier to test than non-functional components.

    • Non-functional components can have state and lifecycle methods, while functional components cannot.

    • Examples of functional components include buttons, labels, and icons, w...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Its Hard and requires deep knowledge of your technical skills.

Skills evaluated in this interview

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

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Mcq + dsa JavaScript questions

Round 2 - Technical 

(1 Question)

  • Q1. JavaScript advance topics and database design topics
Round 3 - Behavioral 

(1 Question)

  • Q1. Situation based question and behavioural questions

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. time was 3:15 in the clock write an code to find the angle between the hour and...read more
  2. to write any code in any programming langu...read more
  3. Factorial of a number, both iterative and recurs...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.7/5

based on 7 interview experiences

Difficulty level

Easy 80%
Moderate 20%

Duration

Less than 2 weeks 100%
View more
Truminds Software Systems Software Developer Salary
based on 45 salaries
₹8.9 L/yr - ₹16.6 L/yr
19% 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
117 salaries
unlock blur

₹8.1 L/yr - ₹12.5 L/yr

Senior Software Engineer
116 salaries
unlock blur

₹11.4 L/yr - ₹20.5 L/yr

Software Developer
45 salaries
unlock blur

₹8.9 L/yr - ₹16.6 L/yr

Software Development Engineer
44 salaries
unlock blur

₹8.8 L/yr - ₹14.8 L/yr

Technical Lead
43 salaries
unlock blur

₹15.8 L/yr - ₹24.1 L/yr

Explore more salaries
Compare Truminds Software Systems with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.1
Compare

Value Point Systems

3.5
Compare

F1 Info Solutions and Services

3.7
Compare
write
Share an Interview