Upload Button Icon Add office photos
Engaged Employer

i

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

Vahanwire Verified Tick

Compare button icon Compare button icon Compare
5.0

based on 5 Reviews

Filter interviews by

Vahanwire Software Developer Interview Questions and Answers

Updated 17 Dec 2024

Vahanwire Software Developer Interview Experiences

1 interview found

Software Developer Interview Questions & Answers

user image Aakansha Jha

posted on 17 Dec 2024

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 Nov 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Simple question
Round 2 - Technical 

(1 Question)

  • Q1. All tech rounds
Round 3 - One-on-one 

(1 Question)

  • Q1. F2F interview final round

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company,great people. Few IITK people

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 Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Computer Fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Flatten a binary tree
  • Ans. 

    Flatten a binary tree by converting it into a linked list in-place.

    • Use a recursive approach to flatten the binary tree.

    • Traverse the tree in a pre-order manner and keep track of the previous node.

    • Set the left child of each node to null and the right child to the next node in the linked list.

    • Example: Input: 1 -> 2 -> 5 -> 3 -> 4 -> null, Output: 1 -> null -> 2 -> null -> 3 -> null -> 4 -> null -> 5 -> null

  • Answered by AI

Skills evaluated in this interview

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

Leecode medium level question

Round 2 - Coding Test 

Leetcode Hard level Question

Round 3 - Technical 

(1 Question)

  • Q1. This is cto round asked some interview questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology,(NIT), Delhi and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Kadance algorithm and find the middle of the linklist

Round 2 - Coding Test 

More on java and Python based coding questions

Round 3 - HR 

(4 Questions)

  • Q1. Behavioural questions were asked
  • Q2. What are your expectations from this job
  • Q3. What are your plans ahead
  • Q4. Where do you see yourself in 5 years ahead

Interview Preparation Tips

Interview preparation tips for other job seekers - Do good practise of DSA
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Python Theory questions, Memory management
  • Q2. Basic Data Structures and Algorithms
Round 2 - Technical 

(2 Questions)

  • Q1. Basic data structure and algorithms
  • Q2. Development and deployment of python django projects
  • Ans. 

    Python Django is a popular web framework for developing and deploying web applications.

    • Use virtual environments to manage dependencies

    • Utilize Django's built-in admin interface for managing data

    • Deploy Django projects using platforms like Heroku or AWS

    • Consider using Docker for containerization

    • Implement continuous integration and deployment pipelines

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. High Level Design Components

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 hour duration. Sliding window problem. On hacker rank platform. Expected to write a working code and solve it optimally/scalable solution.

Round 2 - Technical 

(1 Question)

  • Q1. Again a coding test. LLD + hash map. 1 hour on hacker rank.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Techical questions and coding questions related profile.
  • Q2. Basic concepts about your programming skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company and positive interview response and smooth interview process and recommend to join .
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Explain your Project and resume based questions.
  • Q2. Architecture of your Project
  • Q3. Database Design Question. How will you store category, sub-category and further subcategories in Database. Consider the category menulist list of Flipkart for example.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Low-Level Design of Parking Lot.
  • Ans. 

    Design a parking lot system including classes, functions, and data structures.

    • Create a ParkingLot class with attributes like capacity, available spots, and a list of parking spots.

    • Implement a Vehicle class with attributes like license plate number, size, and type.

    • Design a ParkingSpot class with attributes like spot number, availability, and size.

    • Use data structures like arrays or lists to manage parking spots and vehic...

  • Answered by AI
  • Q2. Don't miss out interior details e.g. addressing parallel access using locks if needed.
Round 3 - One-on-one 

(3 Questions)

  • Q1. Mixed of Technical and HR Round.
  • Q2. Resume based questions.
  • Q3. Had to explain of software practices followed in my projects such as proper unit testing, CI/CD deployment process, scrum practices etc.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Merge the two list which has different intervals. So merge them on the basis where they are overlapping.
  • Ans. 

    Merge two lists with different intervals based on overlapping intervals.

    • Sort both lists based on start time.

    • Iterate through both lists and compare intervals for overlap.

    • Merge overlapping intervals and add non-overlapping intervals to the result list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more of the competitive coding interview questions, such as from the coding practice website like leetcode, careercup, geekfor geeks.

Skills evaluated in this interview

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 Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Computer Fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Flatten a binary tree
  • Ans. 

    Flatten a binary tree by converting it into a linked list in-place.

    • Use a recursive approach to flatten the binary tree.

    • Traverse the tree in a pre-order manner and keep track of the previous node.

    • Set the left child of each node to null and the right child to the next node in the linked list.

    • Example: Input: 1 -> 2 -> 5 -> 3 -> 4 -> null, Output: 1 -> null -> 2 -> null -> 3 -> null -> 4 -> null -> 5 -> null

  • Answered by AI

Skills evaluated in this interview

Vahanwire Interview FAQs

How many rounds are there in Vahanwire Software Developer interview?
Vahanwire interview process usually has 3 rounds. The most common rounds in the Vahanwire interview process are HR, Technical and One-on-one Round.
What are the top questions asked in Vahanwire Software Developer interview?

Some of the top questions asked at the Vahanwire Software Developer interview -

  1. F2F interview final ro...read more
  2. Simple quest...read more
  3. All tech rou...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

MagicPin Interview Questions
3.1
 • 48 Interviews
Stylebaazar Interview Questions
3.9
 • 30 Interviews
Tokopedia Interview Questions
4.1
 • 27 Interviews
Meritto Interview Questions
3.7
 • 22 Interviews
Furlenco Interview Questions
3.3
 • 20 Interviews
Droom Interview Questions
3.8
 • 19 Interviews
Nestaway Interview Questions
4.0
 • 17 Interviews
Inshorts Interview Questions
4.0
 • 16 Interviews
Xome Interview Questions
4.2
 • 12 Interviews
View all

Vahanwire Software Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Compare Vahanwire with

MagicPin

3.1
Compare

Stylebaazar

3.9
Compare

Nestaway

4.0
Compare

Awign Enterprises

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