Upload Button Icon Add office photos
Engaged Employer

i

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

Winman Software Verified Tick

Compare button icon Compare button icon Compare
4.1

based on 93 Reviews

Filter interviews by

Winman Software Software Developer Trainee Interview Questions and Answers

Updated 28 Mar 2021

Winman Software Software Developer Trainee Interview Experiences

1 interview found

I was interviewed before Mar 2020.

Interview Questionnaire 

1 Question

  • Q1. Given the distances between bus stops, and the charges, you need to find the ticket price as per the given condition.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview consisted of three rounds.
First round was a written test, wherein 3 questions were asked based on quantitative aptitude and logical reasoning. Questions were not of multiple choice and you had to pen in your answers.
Second round was an HR round, which was more like a casual interaction with the HR. They then give you technical training where you got to develop some formulae to the given problem statement. You can make your decision, whether you would want to continue with the job or not at this stage, as the type of work you do during the technical training is similar to the one you do after getting in to the job.

Interview questions from similar companies

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

I applied via campus placement at DMI College of Engineering, Chennai and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Very basic aptitude concepts asked 40 questions 1 hr time

Round 2 - Coding Test 

2 problems to be solved. Myself solved 1 problem but my friends solved 1.5 problem and taken grade is(partially correct) using Google and AI. At last there selected students who are all solved 1 problem also

Round 3 - Technical 

(6 Questions)

  • Q1. Detailed project explanation
  • Q2. Internship experience
  • Q3. OOPS concepts and Resume screening
  • Q4. SQL joins and basics
  • Q5. Favourite programming language asked and said to solve a 2 simple coding problems
  • Q6. The person who solved 1.5 questions out of 2 questions using Google and AI where caught in technical round
Round 4 - HR 

(1 Question)

  • Q1. Beware in HR round Answering to HR questions is seriously hard . Prepare well and be ready to answer question. HR asking questions is about your point of view.

Interview Preparation Tips

Topics to prepare for Infiniti Software Solutions Software Trainee interview:
  • Oops
  • SQL joins
  • Coding
  • Project
Interview preparation tips for other job seekers - Be genuine in coding round. Student who don't use ai only selected. Prepare well for technical specially OOPS concepts, SQL joins and coding
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What basic JavaScript and React concepts were you asked about during the interview?
  • Q2. Closures, useMemo, useCalbback and a practical task is given that should completed within 20 minutes

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on improving your speed in React tasks.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

First round will be coding test which will have Core java questions

Round 2 - Technical 

(4 Questions)

  • Q1. Type of Class Loaders available in java
  • Ans. 

    Java has three types of class loaders: Bootstrap Class Loader, Extension Class Loader, and System Class Loader.

    • Bootstrap Class Loader loads core Java classes located in the bootstrap classpath.

    • Extension Class Loader loads classes from the extensions directory.

    • System Class Loader loads classes from the classpath specified by the CLASSPATH environment variable.

  • Answered by AI
  • Q2. Coding question related find 3nd highest number with single loop and minimum time complexity.
  • Ans. 

    Use a single loop to find the 3rd highest number in an array with minimum time complexity.

    • Iterate through the array and keep track of the three highest numbers encountered so far.

    • Update the three highest numbers as you iterate through the array.

    • Return the third highest number once the loop is completed.

  • Answered by AI
  • Q3. What is diff between cyclicBarrier and countDownLatch?
  • Ans. 

    CyclicBarrier allows a group of threads to wait at a barrier until all threads have reached it, while CountDownLatch allows one or more threads to wait until a set of operations being performed in other threads completes.

    • CyclicBarrier is reusable, while CountDownLatch is not.

    • CyclicBarrier allows all threads to wait for each other, while CountDownLatch allows one thread to wait for others.

    • CyclicBarrier resets automatica...

  • Answered by AI
  • Q4. What is diff between JPARepository and CURDRepository?
  • Ans. 

    JPARepository is a Spring Data interface for JPA-based repositories, while CRUDRepository is a generic interface for CRUD operations.

    • JPARepository extends CRUDRepository and provides additional JPA-specific methods.

    • CRUDRepository is a generic interface for CRUD operations on a repository.

    • JPARepository is typically used for JPA-based repositories, while CRUDRepository can be used for any type of repository.

    • JPARepository...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Second round is pending

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

1) Finding and removing loop in linked list. 2)find pair of given sum in binary tree

Round 2 - One-on-one 

(2 Questions)

  • Q1. Print bottom view of binary tree
  • Ans. 

    Print the bottom view of a binary tree

    • Use a map to store the horizontal distance and node value at each level

    • Perform a level order traversal of the binary tree

    • Update the map with the node value at each horizontal distance

    • Print the node values in the map for the bottom view

  • Answered by AI
  • Q2. Oops related output based questions

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Machine coding round

Round 2 - Technical 

(2 Questions)

  • Q1. TCP/IP related questions, what happens when you search a webpage?
  • Q2. Past projects discussions
Round 3 - HR 

(1 Question)

  • Q1. Behavioural questions on how would you tackle a particular scenario
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic OOP questions for python programming language

Round 2 - HR 

(2 Questions)

  • Q1. What's abstraction
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary information to the user.

    • Abstraction allows users to focus on what an object does instead of how it does it

    • It helps in reducing complexity and improving efficiency in software development

    • Example: In object-oriented programming, abstract classes and interfaces are used to achieve abstraction

  • Answered by AI
  • Q2. What's the difference between SQL and NoSQL database
  • Ans. 

    SQL databases are relational databases with structured data, while NoSQL databases are non-relational databases with flexible, unstructured data.

    • SQL databases use structured query language for defining and manipulating data, while NoSQL databases use different query languages or APIs.

    • SQL databases are table-based, with a predefined schema, while NoSQL databases are document, key-value, wide-column, or graph-based.

    • SQL d...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, prev, and next

    • Iterate through the linked list, updating pointers to reverse the direction

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

  • Answered by AI
  • Q2. Implement binary search algorithm
  • Ans. 

    Binary search algorithm efficiently finds the target value in a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the mid index and compare the target value with the value at mid.

    • If target is less than mid value, update high to mid-1; if greater, update low to mid+1.

    • Repeat until target is found or low is greater than high.

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. Brief Introduction and basic questions
  • Q2. Future plans and how am i going to achieve them

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Lazy loading in react
  • Q2. Cache bursting
  • Q3. Difference between == and ===

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic of react and redux
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AmbitionBox

Round 1 - Coding Test 

Java, spring,springboot

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

2 DSA questions Both are from DP

Round 2 - Technical 

(2 Questions)

  • Q1. 2 Questions , 1 is DSA
  • Q2. Second question is Puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - Practise DSA more and give more and more interviews.

Tell us how to improve this page.

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 896 Interviews
SAP Interview Questions
4.2
 • 304 Interviews
Brane Enterprises Interview Questions
2.1
 • 132 Interviews
Intuit Interview Questions
3.6
 • 88 Interviews
BrowserStack Interview Questions
3.7
 • 47 Interviews
Tally Solutions Interview Questions
4.2
 • 38 Interviews
3Pillar Global Interview Questions
3.4
 • 18 Interviews
MARG ERP Interview Questions
3.6
 • 17 Interviews
LogicMonitor Interview Questions
3.8
 • 14 Interviews
View all

Fast track your campus placements

View all

Winman Software Software Developer Trainee Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

2.0

Work-life balance

1.0

Salary

2.0

Job security

2.0

Company culture

2.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
28 salaries
unlock blur

₹2 L/yr - ₹4.6 L/yr

Program Engineer
22 salaries
unlock blur

₹3.6 L/yr - ₹6 L/yr

QA Executive
12 salaries
unlock blur

₹2.2 L/yr - ₹3.5 L/yr

Business Development Executive
11 salaries
unlock blur

₹1.4 L/yr - ₹5 L/yr

System Administrator
8 salaries
unlock blur

₹1.4 L/yr - ₹3 L/yr

Explore more salaries
Compare Winman Software with

Tally Solutions

4.2
Compare

MARG ERP

3.6
Compare

Busy Infotech

4.0
Compare

LOGIC ERP

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