Upload Button Icon Add office photos

Filter interviews by

Wingify Software Development Engineer II Interview Questions and Answers

Updated 25 Feb 2024

Wingify Software Development Engineer II Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2024.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Find the maximum distance between any two leaf nodes of a binary tree.
  • Ans. 

    Find the maximum distance between any two leaf nodes of a binary tree.

    • Traverse the tree to find the maximum depth of left and right subtrees

    • Calculate the maximum distance by adding the depths of left and right subtrees

  • Answered by AI
  • Q2. Design least recently used cache.
  • Ans. 

    Design a least recently used cache system.

    • Use a combination of a hash map and a doubly linked list to keep track of the least recently used items.

    • When a new item is accessed, move it to the front of the list.

    • If the cache is full, remove the least recently used item from the end of the list.

  • Answered by AI
  • Q3. You are given a student table having columns as id, name, and score. find the top 20 percentile of student's details based on their score.
  • Ans. 

    Calculate top 20 percentile of student details based on score in a student table.

    • Calculate the 80th percentile score using formula: 80th_percentile = 0.8 * total_students

    • Sort the scores in descending order and find the score at 80th percentile position

    • Retrieve student details with scores greater than or equal to the 80th percentile score

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Wingify Software Development Engineer II interview:
  • Data Structures
  • SQL
Interview preparation tips for other job seekers - Prepare for the edge cases.
The first round of interviews is taken by some less experienced guys, they try to expand the interview by asking irrelevant questions like which language is the most trending language, try to escape it as much as possible.

Skills evaluated in this interview

Interview questions from similar companies

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

Code Snept question with 3-4 Reasoning question. Google form

Round 2 - Assignment 

Pen paper coding round. String , Array . Linkedlist , graph, questions

Round 3 - Technical 

(3 Questions)

  • Q1. Maximum Spaning
  • Q2. Nearest Prime number
  • Ans. 

    To find the nearest prime number, iterate from the given number in both directions until a prime number is found.

    • Start iterating from the given number in both directions to find the nearest prime number.

    • Check if a number is prime by dividing it by all numbers less than its square root.

    • Keep track of the closest prime number found during the iteration.

  • Answered by AI
  • Q3. Second Maximum Number in Array
  • Ans. 

    Find the second maximum number in an array of strings.

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

    • Sort the array in descending order.

    • Return the second element in the sorted array.

  • Answered by AI
Round 4 - Technical 

(4 Questions)

  • Q1. Project Question
  • Q2. Robot question of DSA
  • Q3. Stock Buy and sell - VI . Leetcode Hard
  • Q4. Leetcode Medium

Skills evaluated in this interview

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

(1 Question)

  • Q1. Given the react machine coding example
Round 2 - Behavioral 

(1 Question)

  • Q1. Explain about your projects
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Oops related questions
  • Q2. C language quizzes
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. How make a queue using a stack
  • Ans. 

    To implement a queue using a stack, use two stacks and simulate the queue operations.

    • Use two stacks, one for enqueue operation and one for dequeue operation.

    • For enqueue operation, simply push elements onto the stack used for enqueueing.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

    • Then pop from the dequeue stack to simulate dequeue operation.

  • Answered by AI
  • Q2. Create a linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to null

    • Add nodes by updating next pointers

    • Traverse the list by following next pointers

  • Answered by AI

Skills evaluated in this interview

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

Coding Rount
DSA Round + Puzzle
SQL + Project Discussion
JS

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

I applied via Campus Placement

Round 1 - Coding Test 

Dsa problems dp and tress problem

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Projects and intership

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn DSA
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(5 Questions)

  • Q1. Tell me about
  • Q2. Your self they are asking
  • Q3. What is your weakness
  • Q4. Any questions ask for me
  • Q5. All the best future
Round 2 - Coding Test 

Coding for international

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

I applied via campus placement at National Institute of Technology (NIT), Karnataka and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

Question based on array string linkedlist

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

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

Round 1 - Coding Test 

Coding exercise related to probability

Round 2 - Technical 

(2 Questions)

  • Q1. Database design for ride hailing service like uber, ola
  • Q2. Tech stack needed to build a real time application
  • Ans. 

    Tech stack for real time applications includes WebSocket, Node.js, Redis, and MongoDB.

    • Use WebSocket for real-time communication between client and server

    • Node.js for server-side logic and handling multiple connections efficiently

    • Redis for caching and storing real-time data

    • MongoDB for persistent data storage and retrieval

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Though the interviewer was friendly his tech knowledge was just average.

Skills evaluated in this interview

Wingify Interview FAQs

How many rounds are there in Wingify Software Development Engineer II interview?
Wingify interview process usually has 1 rounds. The most common rounds in the Wingify interview process are One-on-one Round.
What are the top questions asked in Wingify Software Development Engineer II interview?

Some of the top questions asked at the Wingify Software Development Engineer II interview -

  1. You are given a student table having columns as id, name, and score. find the t...read more
  2. Find the maximum distance between any two leaf nodes of a binary tr...read more
  3. Design least recently used cac...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
Mu Sigma Interview Questions
2.7
 • 225 Interviews
Freshworks Interview Questions
3.5
 • 154 Interviews
View all

Fast track your campus placements

View all
Senior Software Engineer
12 salaries
unlock blur

₹14.5 L/yr - ₹29.5 L/yr

Software Engineer
7 salaries
unlock blur

₹8.5 L/yr - ₹18 L/yr

Devops Engineer
7 salaries
unlock blur

₹10 L/yr - ₹10 L/yr

Technical Support Engineer
7 salaries
unlock blur

₹4.5 L/yr - ₹10.5 L/yr

Customer Success Manager
5 salaries
unlock blur

₹9 L/yr - ₹17 L/yr

Explore more salaries
Compare Wingify with

Freshworks

3.5
Compare

Zoho

4.3
Compare

InMobi

3.6
Compare

Mu Sigma

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