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 92 Reviews

Filter interviews by

Winman Software Junior Software Developer Interview Questions and Answers

Updated 8 Jul 2024

Winman Software Junior Software Developer Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Three long paragraph questions related to logical thinking take around 20-25 min to solve.

Round 2 - Coding Test 

Three coding questions on array, square matrix and monster game.

Round 3 - HR 

(2 Questions)

  • Q1. Asks to introduce yourself
  • Q2. Regarding your interests in IT field and skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Well

Interview questions from similar companies

Interview experience
5
Excellent
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 3 interview rounds.

Round 1 - Coding Test 

Coding and aptitude and logical reasoning three sections were there.In Coding you have 4 language to choose from and you must select 2 languages and in each language you have to solve 2 questions. It was relatively easy .

Round 2 - Technical 

(3 Questions)

  • Q1. They ask you to do programming for questions. If you are a thief and you have an array of houses you cannot rob the beside houses of the house you ribbed. Maximise the loot.
  • Q2. Insert node at middle in linked list
  • Ans. 

    To insert a node at the middle of a linked list, find the middle node and adjust pointers accordingly.

    • Find the middle node using slow and fast pointers

    • Insert the new node after the middle node

    • Adjust pointers to link the new node correctly

  • Answered by AI
  • Q3. Find number of Perfect subarrays of the given array .A perfects subarray has odd value at odd place and even value at even position.
  • Ans. 

    Count the number of perfect subarrays in an array where odd values are at odd positions and even values are at even positions.

    • Iterate through the array and keep track of the count of odd and even numbers encountered so far.

    • If the count of odd and even numbers at the current index matches the index itself, increment the count of perfect subarrays.

    • Example: For array [2, 1, 3, 4], there are 3 perfect subarrays: [2, 1], [1

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. They give you direct leetcode sums and ask to solve
  • Q2. Find if a number is there in a sorted array or not and if its not there where shoud it be inserted in log(n) time
  • Ans. 

    Binary search can be used to find the number in a sorted array in log(n) time.

    • Implement binary search algorithm to find the number in the sorted array.

    • If the number is not found, return the index where it should be inserted.

    • Time complexity of binary search is O(log n).

  • Answered by AI
  • Q3. You are given parallel bars selecting two bars you can make a container .Maximise area.Find the slution in o(n)
  • Ans. 

    To maximize the area of a container formed by two parallel bars, use the two-pointer approach in O(n) time complexity.

    • Use the two-pointer approach to iterate from both ends towards the center of the array.

    • Calculate the area formed by the two bars at each step and update the maximum area found so far.

    • Move the pointer with the smaller height towards the center to potentially find a larger area.

    • Repeat the process until th

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do leetcode questions daily.Do medium and easy questions daily.
I heard last round contained them asking questions from other big coding platforms such as geekforgeeks ,CodeChef etc

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. 1) is code 2) footing design 3) load combination
  • Ans. 

    The question is related to structural engineering concepts like code, footing design, and load combination.

    • Code refers to the set of rules and regulations that govern the design and construction of structures.

    • Footing design involves determining the size and depth of footings to support the structure above.

    • Load combination is the process of combining different types of loads (e.g. dead load, live load, wind load) to ass

  • Answered by AI
Interview experience
5
Excellent
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 3 interview rounds.

Round 1 - Coding Test 

Coding and aptitude and logical reasoning three sections were there.In Coding you have 4 language to choose from and you must select 2 languages and in each language you have to solve 2 questions. It was relatively easy .

Round 2 - Technical 

(3 Questions)

  • Q1. They ask you to do programming for questions. If you are a thief and you have an array of houses you cannot rob the beside houses of the house you ribbed. Maximise the loot.
  • Q2. Insert node at middle in linked list
  • Ans. 

    To insert a node at the middle of a linked list, find the middle node and adjust pointers accordingly.

    • Find the middle node using slow and fast pointers

    • Insert the new node after the middle node

    • Adjust pointers to link the new node correctly

  • Answered by AI
  • Q3. Find number of Perfect subarrays of the given array .A perfects subarray has odd value at odd place and even value at even position.
  • Ans. 

    Count the number of perfect subarrays in an array where odd values are at odd positions and even values are at even positions.

    • Iterate through the array and keep track of the count of odd and even numbers encountered so far.

    • If the count of odd and even numbers at the current index matches the index itself, increment the count of perfect subarrays.

    • Example: For array [2, 1, 3, 4], there are 3 perfect subarrays: [2, 1], [1

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. They give you direct leetcode sums and ask to solve
  • Q2. Find if a number is there in a sorted array or not and if its not there where shoud it be inserted in log(n) time
  • Ans. 

    Binary search can be used to find the number in a sorted array in log(n) time.

    • Implement binary search algorithm to find the number in the sorted array.

    • If the number is not found, return the index where it should be inserted.

    • Time complexity of binary search is O(log n).

  • Answered by AI
  • Q3. You are given parallel bars selecting two bars you can make a container .Maximise area.Find the slution in o(n)
  • Ans. 

    To maximize the area of a container formed by two parallel bars, use the two-pointer approach in O(n) time complexity.

    • Use the two-pointer approach to iterate from both ends towards the center of the array.

    • Calculate the area formed by the two bars at each step and update the maximum area found so far.

    • Move the pointer with the smaller height towards the center to potentially find a larger area.

    • Repeat the process until th

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do leetcode questions daily.Do medium and easy questions daily.
I heard last round contained them asking questions from other big coding platforms such as geekforgeeks ,CodeChef etc

Skills evaluated in this interview

Winman Software Interview FAQs

How many rounds are there in Winman Software Junior Software Developer interview?
Winman Software interview process usually has 3 rounds. The most common rounds in the Winman Software interview process are HR, Aptitude Test and Coding Test.

Tell us how to improve this page.

People are getting interviews through

based on 1 Winman Software interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 883 Interviews
SAP Interview Questions
4.2
 • 302 Interviews
Brane Enterprises Interview Questions
2.1
 • 131 Interviews
Intuit Interview Questions
3.6
 • 87 Interviews
BrowserStack Interview Questions
3.7
 • 45 Interviews
Tally Solutions Interview Questions
4.3
 • 38 Interviews
3Pillar Global Interview Questions
3.4
 • 18 Interviews
MARG ERP Interview Questions
3.6
 • 16 Interviews
LogicMonitor Interview Questions
3.8
 • 14 Interviews
View all

Fast track your campus placements

View all
Software Developer
28 salaries
unlock blur

₹2 L/yr - ₹4.6 L/yr

Program Engineer
21 salaries
unlock blur

₹3.6 L/yr - ₹6 L/yr

QA Executive
10 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

System Administrator
8 salaries
unlock blur

₹1.4 L/yr - ₹3 L/yr

Finance Specialist
7 salaries
unlock blur

₹1.6 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

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview