Upload Button Icon Add office photos

Filter interviews by

WASP3D Software Developer Interview Questions and Answers

Updated 25 Mar 2022

WASP3D Software Developer Interview Experiences

1 interview found

I applied via Recruitment Consulltant and was interviewed in Sep 2021. There were 2 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 - Technical 

(1 Question)

  • Q1. OOPS Concept Polymorphism Inheritance Method overloading Copy constructor Deep copy and shallow copy Virtual function

Interview Preparation Tips

Topics to prepare for WASP3D Software Developer interview:
  • InterviewBit
  • Leetcode
  • Geeksforgeeks
Interview preparation tips for other job seekers - Be confident and your communication skills should be good.

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - HR 

(5 Questions)

  • Q1. Why Amazon Software Developer?
  • Q2. Why do you want to work at amazon ?
  • Q3. What are your strengths and weakness?
  • Q4. How would you solve?
  • Q5. What are the short term and long-term for teame or organisation?

Interview Preparation Tips

Topics to prepare for Amazon Software Developer interview:
  • Excel
  • Data Entry
  • Project Management
  • Ms World
  • Programming
  • Google software developer
  • Microsoft software developer
Interview preparation tips for other job seekers - Here are some tips and advice for seekers looking to land a role at amazon software developer....
1. Understand Amazon's culture:?
2. Review job description ?
3.update your resume.? B
INTERVIEW PREPARATION
1.Research the team and role ?
2. Prepare to talk about your experience?
3.How would you solve?
4.What are your strengths and weakness?
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Two questions
One dp
One on heap

Round 2 - Technical 

(2 Questions)

  • Q1. Binary search based question
  • Q2. Behavioural question
Interview experience
1
Bad
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 3 interview rounds.

Round 1 - Coding Test 

Simple DSA ques. and some mcqs. were easy if you are a cp guy

Round 2 - Technical 

(2 Questions)

  • Q1. Given a string of paranthesis tell longest valid parantheisis
  • Ans. 

    Use stack to keep track of indices of opening parentheses, update max length when closing parentheses found

    • Use a stack to keep track of indices of opening parentheses

    • When a closing parentheses is found, update max length by calculating the difference between current index and top of stack

    • Handle edge cases like extra closing parentheses or unmatched opening parentheses

    • Example: Input: "(()()", Output: 4 (for "()()")

  • Answered by AI
  • Q2. Leetcode 1443. This was exact ques
Round 3 - Technical 

(2 Questions)

  • Q1. Given a string find longest palindromeic substring
  • Ans. 

    Find the longest palindromic substring in a given string.

    • Use dynamic programming to check for palindromes within the string.

    • Start by checking for palindromes of length 1 and 2, then expand to longer substrings.

    • Keep track of the longest palindrome found so far.

  • Answered by AI
  • Q2. Simple take not take dp ques But my interviewer was an idiot she didn't understand shit She was reading editorial on the fly. As i told her approch she was like its wrong then read editorial and was fine. ...

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. MC question on desing pattern
  • Q2. Graph question, tree and hash
  • Q3. Design Book my show
Round 2 - Coding Test 

Dp question of jump game

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is ambitionbox
  • Q2. How many questions are there in that
Round 2 - One-on-one 

(2 Questions)

  • Q1. Same as above questions
  • Q2. Same as above questions second one
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. It was lld question to design a cab booking system.
  • Q2. Tell me about yourself
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Binary search for closest element
  • Ans. 

    Binary search to find the closest element in a sorted array

    • Implement binary search to find the target element in the array

    • Keep track of the closest element found so far while searching

    • Update the closest element if a closer one is found during the search

  • Answered by AI
  • Q2. String manipulation
Round 2 - Technical 

(1 Question)

  • Q1. Low level Design for an online e-commerce website
  • Ans. 

    Low level design for an online e-commerce website involves designing the architecture and components of the website.

    • Identify the main components such as user interface, database, payment gateway, product catalog, etc.

    • Design the database schema to store user information, product details, orders, etc.

    • Implement user authentication and authorization mechanisms for secure access.

    • Integrate payment gateway for processing tran...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zepto Software Developer interview:
  • DSA
  • Design patterns

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indraprastha Institute of Information Technology (IIIT), Delhi and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Maximum Sum Subarray
  • Q2. Insert node in binary search tree
  • Ans. 

    To insert a node in a binary search tree, compare the value of the node to be inserted with the current node and traverse left or right accordingly.

    • Start at the root node and compare the value of the node to be inserted with the current node.

    • If the value is less than the current node, move to the left child node. If it is greater, move to the right child node.

    • Repeat this process until reaching a leaf node, then insert ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Given an array of n numbers , find the kth largest find the sum from a th largest to bth largest n can be huge
  • Ans. 

    Find the sum of kth to bth largest numbers in a huge array efficiently.

    • Sort the array in descending order to easily find the kth and bth largest numbers.

    • Use a priority queue or min heap to efficiently find the kth and bth largest numbers without sorting the entire array.

    • Once you have the kth and bth largest numbers, iterate through the array and sum the numbers between them.

  • Answered by AI
  • Q2. Mostly elasticsearch related and company work related questions

Skills evaluated in this interview

WASP3D Interview FAQs

How many rounds are there in WASP3D Software Developer interview?
WASP3D interview process usually has 2 rounds. The most common rounds in the WASP3D interview process are Resume Shortlist and Technical.
How to prepare for WASP3D Software Developer 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 WASP3D. The most common topics and skills that interviewers at WASP3D expect are Application Programming, C#, C++, Coding and Software Development.

Tell us how to improve this page.

WASP3D Software Developer Salary
based on 15 salaries
₹3.6 L/yr - ₹5.8 L/yr
39% less than the average Software Developer Salary in India
View more details

WASP3D Software Developer Reviews and Ratings

based on 2 reviews

3.2/5

Rating in categories

5.0

Skill development

2.3

Work-Life balance

3.2

Salary & Benefits

3.2

Job Security

2.3

Company culture

4.1

Promotions/Appraisal

2.3

Work Satisfaction

Explore 2 Reviews and Ratings
Software Developer
15 salaries
unlock blur

₹3.6 L/yr - ₹5.8 L/yr

Softwaretest Engineer
10 salaries
unlock blur

₹2.8 L/yr - ₹5.1 L/yr

Graphic Designer
9 salaries
unlock blur

₹2.4 L/yr - ₹7.8 L/yr

Senior Application Software Engineer
7 salaries
unlock blur

₹6 L/yr - ₹10.2 L/yr

Application Software Engineer
7 salaries
unlock blur

₹5.5 L/yr - ₹6 L/yr

Explore more salaries
Compare WASP3D with

Vizrt

4.3
Compare

Avid Technology

3.0
Compare

Evertz Microsystems

3.7
Compare

Amazon

4.1
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