Upload Button Icon Add office photos

Filter interviews by

Wingman Partners Interview Questions and Answers

Updated 28 Sep 2024

Wingman Partners Interview Experiences

Popular Designations

6 interviews found

Mern Stack Developer Interview Questions & Answers

user image Praddhumn Singh

posted on 30 Aug 2024

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

Total questions were 50 and time alloted was 50 minutes.

Round 2 - Group Discussion 

Introduction of candidates which included skills, family background, achievements, projects etc

Round 3 - Technical 

(2 Questions)

  • Q1. Dsa problem : recursive solution of fibonacci series
  • Ans. 

    Fibonacci series can be solved recursively by adding the previous two numbers in the series.

    • Define a base case for when n is 0 or 1, return n in that case

    • Otherwise, recursively call the function with n-1 and n-2 and add the results

    • Example: Fibonacci(5) = Fibonacci(4) + Fibonacci(3) = Fibonacci(3) + Fibonacci(2) + Fibonacci(2) + Fibonacci(1) = 3 + 2 + 2 + 1 = 8

  • Answered by AI
  • Q2. React js: architecture of context api and why to use redux.
  • Ans. 

    Context API provides a way to pass data through the component tree without having to pass props down manually. Redux is used for managing global state in complex applications.

    • Context API allows you to share data across components without having to pass props down manually

    • Redux is preferred for managing global state in large applications with complex data flow

    • Context API is simpler to use for smaller applications with l...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be fully prepared by your tech (eg React / Node) and basics like dbms, sql etc.

Skills evaluated in this interview

Mern Stack Developer Interview Questions asked at other Companies

Q1. Middle of a Linked List You are given the head node of a singly linked list. Your task is to return a pointer pointing to the middle of the linked list. If there is an odd number of elements, return the middle element. If there are an even ... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at GLA Institute of Technology and Management, Mathura and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

First round was aptitude round mcq based in that round they provide a sheet that they checked later after shortlisting candidates based on scores

Round 2 - Group Discussion 

This was a basically introduction round where they asked only to introduce yourself

Round 3 - Technical 

(2 Questions)

  • Q1. Reverse the String
  • Ans. 

    Reverse a given string

    • Create a character array from the input string

    • Use two pointers to swap characters from start and end of the array

    • Repeat until the pointers meet in the middle

  • Answered by AI
  • Q2. Write code for make a table in html and for navigation bar and some basics question from js
Round 4 - HR 

(1 Question)

  • Q1. In hr round company's ceo asked 3 quant questions to me and my friend and I have gave answers 3 of them and he only gave answer 2 of them but he got selected and I not

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

1 hour of time limit

Round 2 - Group Discussion 

Group of seven people, each have to give the introduction

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (180)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There was around 60 ques that consist your basic information, quant ques and some basic technical questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare for every company.

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
Add answer

Wingman Partners interview questions for popular designations

 Associate Engineer

 (1)

 Fullstack Java Developer

 (1)

 Mern Stack Developer

 (1)

 Software Developer

 (1)

 Software Engineer

 (1)

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 2023. There were 3 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 - Aptitude Test 

There were simple questions it was easy oops project output related questions were there.

Round 3 - Group Discussion 

It was to tell us about oneself. what to choose and skills.

Fullstack Java Developer Interview Questions asked at other Companies

Q1. If needed, will you work on the older technology stack?
View answer (2)

Network QA Interview Questions & Answers

user image Anonymous

posted on 27 Jun 2020

I applied via Naukri.com and was interviewed in Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions related to previous jobs and experiences.
  • Q2. All the technologies and experiences were shared

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm, compose and honest.

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

It was a MCQ test on CS Fundamentals. We have to answer 50 questions in 40 minutes. Accuracy is must. Company have its own cutoff and it's usually high. So try to gain maximum marks as possible. The results were announced in 1.5 hrs. The selected candidates will be appearing for the coding challenge.

Round 2 - Coding Test 

There are 5 questions. 1 easy , 3 medium, 1 hard. You should solve atleast 4 questions to get shortlisted for the interview. Results are announced in 2-3 hours. Take a look at these questions. One of the questions from the coding challenge will be asked in the interview.

Round 3 - Technical 

(5 Questions)

  • Q1. Email validation question from coding challenge
  • Q2. Binary Search on rotated arrays
  • Ans. 

    Binary search on rotated arrays involves finding a target value in a sorted array that has been rotated at an unknown pivot point.

    • Identify the pivot point by finding the minimum element in the array.

    • Determine which half of the array the target value falls into based on the pivot point.

    • Perform binary search on the appropriate half of the array to find the target value.

  • Answered by AI
  • Q3. About projects (reason behind using the mentioned database)
  • Q4. Use of package.json file
  • Ans. 

    package.json file is used in Node.js projects to manage dependencies, scripts, and metadata.

    • Contains project metadata like name, version, description, etc.

    • Lists dependencies required for the project to run.

    • Defines scripts for tasks like building, testing, and running the project.

    • Can include configurations for tools like ESLint, Babel, etc.

  • Answered by AI
  • Q5. What are scripts in package.json file
  • Ans. 

    Scripts in package.json file are commands that can be run using npm.

    • Scripts are defined under the 'scripts' key in package.json.

    • Common scripts include 'start', 'test', 'build', etc.

    • Scripts can be run using 'npm run '.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain your approach clearly while solving DSA questions. Revise your understanding on the projects before the interview. Also revise oops, cn, os and some basic understanding of Low level design i.e. designing of classes for music player.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

General basic assessment.

Round 2 - MCQ 

(1 Question)

  • Q1. They will give you few PDFs to read and then MCQ from that.

Interview Preparation Tips

Interview preparation tips for other job seekers - So the job application process will start from emailing them to the MCQ. Then if selected you'll receive email with next steps which involves Skype chat(no involvement of voice call or video, only chat). Then after the technical setup you need to email them again that you're done with that, after that you'll get another mail with a link to choose a starting date.
On the starting date you'll again message one person(Yashima Kamra) on Skype, they'll give you 'Zulip'(it's an open source chat system, interface is kind of like Discord but too basic) access. Now you need to message in an assigned group in Zulip. The Zulip part is 'Training' in real but good luck getting any support from the other person. He/she will just give you commands, and if you ask any questions or ask for assistance to understand the new process they'll simply ignore that.
Then if you're lucky like me one day they'll report that you're ate fault, you haven't reported so they've revoked your Zulip access.

I have joined there or you can say hoped to work atleast(as it was 4 hours/day job) but that's not possible it seems.

If you're looking for jobs here I'd suggest to give it a try ofcourse so that people can actually know about this company's rubbish people.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. How to work in Amazon
  • Q2. What the salary
  • Q3. How to work in e-commerce
Round 2 - Technical 

(2 Questions)

  • Q1. How to work in Amazon
  • Q2. What the salary

Interview Preparation Tips

Interview preparation tips for other job seekers - E-COMMERCE jobs work in Amazon
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. General discussion
Round 2 - Demo 

(1 Question)

  • Q1. Demo in our specialist subject
Round 3 - One-on-one 

(2 Questions)

  • Q1. General discussion about ourselves.
  • Q2. About work experience

Wingman Partners Interview FAQs

How many rounds are there in Wingman Partners interview?
Wingman Partners interview process usually has 2-3 rounds. The most common rounds in the Wingman Partners interview process are Aptitude Test, Group Discussion and Technical.
How to prepare for Wingman Partners 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 Wingman Partners. The most common topics and skills that interviewers at Wingman Partners expect are Automation Testing, C++, Manual Testing, Network Testing and Software Quality Assurance.
What are the top questions asked in Wingman Partners interview?

Some of the top questions asked at the Wingman Partners interview -

  1. react js: architecture of context api and why to use red...read more
  2. dsa problem : recursive solution of fibonacci ser...read more
  3. Reverse the Str...read more

Tell us how to improve this page.

Wingman Partners Interview Process

based on 5 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

Deltax Interview Questions
2.7
 • 85 Interviews
Wayfair Interview Questions
3.7
 • 56 Interviews
Busibud Interview Questions
4.0
 • 42 Interviews
GAMMON INDIA Interview Questions
3.9
 • 29 Interviews
View all

Wingman Partners Reviews and Ratings

based on 12 reviews

4.5/5

Rating in categories

4.5

Skill development

4.3

Work-life balance

4.3

Salary

4.4

Job security

4.4

Company culture

4.4

Promotions

4.5

Work satisfaction

Explore 12 Reviews and Ratings
Devops Engineer
6 salaries
unlock blur

₹4 L/yr - ₹6.8 L/yr

Project Manager
4 salaries
unlock blur

₹4.8 L/yr - ₹7.8 L/yr

Lead Engineer
4 salaries
unlock blur

₹16.5 L/yr - ₹21 L/yr

QA Engineer
4 salaries
unlock blur

₹4 L/yr - ₹10.2 L/yr

Software Development Engineer II
4 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Explore more salaries
Compare Wingman Partners with

Sequoia Capital

3.4
Compare

Matrix Partners

2.8
Compare

Kalaari Capital

3.5
Compare

Nexus Venture Partners

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