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

Filter interviews by

Winman Software Programmer Interview Questions and Answers

Updated 25 Nov 2022

Winman Software Programmer Interview Experiences

1 interview found

Programmer Interview Questions & Answers

user image Anonymous

posted on 25 Nov 2022

I applied via Internshala and was interviewed in May 2022. There were 4 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 - Coding Test 

Simple coding quetion in online platform

Round 3 - Assignment 

To create flowchart for the given peoblem

Round 4 - HR 

(3 Questions)

  • Q1. Whats ur salary expectaion?
  • Q2. Fo u have other job offer
  • Q3. Yes.i have jo. Offer

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't fall foe HR s words.
Preparations for other than coding round is not required.

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is your experience with previous company
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Talk about social media influence impact on chilfern

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Find anagrams in a sentence
  • Ans. 

    Identify anagrams within a given sentence

    • Split the sentence into individual words

    • Compare each word to every other word to find anagrams

    • Store anagrams in an array of strings

  • Answered by AI
  • Q2. Find lca of a binary tree
  • Ans. 

    The lowest common ancestor (LCA) of a binary tree is the shared ancestor of two nodes farthest from the root.

    • Start from the root and recursively search for the nodes in the left and right subtrees.

    • If one node is found in the left subtree and the other in the right subtree, then the root is the LCA.

    • If both nodes are found in the left subtree, then the LCA is in the left subtree. Same for the right subtree.

    • Repeat the pro

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Find duplicates in a string
  • Ans. 

    Use a hash set to find duplicates in a string efficiently.

    • Create a hash set to store characters as you iterate through the string.

    • If a character is already in the hash set, it is a duplicate.

    • Return the duplicates as an array of strings.

  • Answered by AI
  • Q2. Find the sum of the digits in a reverse order
  • Ans. 

    To find the sum of digits in reverse order, reverse the number and then add the digits together.

    • Reverse the given number

    • Separate each digit of the reversed number

    • Add all the digits together to get the sum

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare dsa well

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Handheld jdjdjd jsjdjd djjdjd Hi
Round 2 - One-on-one 

(1 Question)

  • Q1. Bsbbshshsjjshs. Jsjsjsjsk. Hsjsjsjs. Jsjsjsj
Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2022. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. The question is about the project.
  • Q2. Microservice, AWS services related question
Round 2 - Technical 

(3 Questions)

  • Q1. More on SOLID principals
  • Q2. Team lead's Scrum based responsibilities
  • Ans. 

    The team lead's Scrum based responsibilities include facilitating daily stand-ups, sprint planning, backlog grooming, and ensuring the team follows Scrum principles.

    • Facilitating daily stand-ups to ensure team members are aligned and aware of each other's progress

    • Leading sprint planning meetings to define the scope of work for each sprint

    • Organizing backlog grooming sessions to prioritize and refine user stories

    • Ensuring ...

  • Answered by AI
  • Q3. Node.js Interview question
Round 3 - One-on-one 

(1 Question)

  • Q1. Discussion about Skills and interest 9 managerial rounds

Interview Preparation Tips

Topics to prepare for 3Pillar Global Technical Lead interview:
  • AWS
  • Node.Js
  • SOLID
Interview preparation tips for other job seekers - the interview standard is according to typical service based company.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Have you faced any situation where you stuck in the project and how did you manage it?
  • Ans. 

    Yes, I faced a situation where I was stuck in a project and managed it effectively.

    • I encountered a complex technical issue that was impacting the project timeline.

    • I sought help from team members and conducted thorough research to find a solution.

    • I communicated effectively with stakeholders about the issue and proposed a revised plan to address it.

    • I prioritized tasks and delegated responsibilities to ensure smooth progr...

  • Answered by AI
  • Q2. What was the complex project you have worked on?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Prepare for Javascript in details
  • Q2. Prepare for NodeJs and architecture in depth
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Longest consecutive sequence
  • Ans. 

    Find the length of the longest consecutive sequence in an array of strings.

    • Convert the array of strings to an array of integers.

    • Sort the array in ascending order.

    • Iterate through the sorted array and keep track of the longest consecutive sequence.

    • Return the length of the longest consecutive sequence.

  • Answered by AI
  • Q2. Time Complexity of all sorting algorithms
  • Ans. 

    Sorting algorithms have different time complexities.

    • Time complexity refers to the amount of time it takes for an algorithm to run as the input size increases.

    • Some common sorting algorithms and their time complexities are: Bubble Sort (O(n^2)), Insertion Sort (O(n^2)), Selection Sort (O(n^2)), Merge Sort (O(n log n)), Quick Sort (O(n log n)), Heap Sort (O(n log n)).

    • The time complexity of an algorithm helps in understand...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Brane Enterprises Software Developer interview:
  • DSA
Interview preparation tips for other job seekers - Do standard questions from LC

Skills evaluated in this interview

Round 1 - Aptitude Test 

It was good and basic questions were asked.

Round 2 - Coding Test 

It was good and basic coding questions were asked.

Round 3 - Technical 

(1 Question)

  • Q1. Data structures, Java nd some codes were asked
Round 4 - Technical 

(1 Question)

  • Q1. Data structures, time complexities, os and cn were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Data structures. Practice some coding questions, time complexities

Winman Software Interview FAQs

How many rounds are there in Winman Software Programmer interview?
Winman Software interview process usually has 4 rounds. The most common rounds in the Winman Software interview process are Resume Shortlist, Coding Test and Assignment.
What are the top questions asked in Winman Software Programmer interview?

Some of the top questions asked at the Winman Software Programmer interview -

  1. Fo u have other job of...read more
  2. Yes.i have jo. Of...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 852 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
Brane Enterprises Interview Questions
2.0
 • 134 Interviews
Intuit Interview Questions
3.5
 • 77 Interviews
BrowserStack Interview Questions
3.6
 • 48 Interviews
Tally Solutions Interview Questions
4.2
 • 39 Interviews
3Pillar Global Interview Questions
3.3
 • 19 Interviews
MARG ERP Interview Questions
3.5
 • 18 Interviews
LogicMonitor Interview Questions
3.7
 • 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
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

Brane Enterprises

2.0
Compare

Duck Creek Technologies

4.4
Compare

3Pillar Global

3.3
Compare

Ixia Solutions

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