Upload Button Icon Add office photos

VassarLabs

Compare button icon Compare button icon Compare

Filter interviews by

VassarLabs Software Engineer Interview Questions and Answers

Updated 18 Oct 2023

VassarLabs Software Engineer Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Basic java questions

Round 3 - Technical 

(2 Questions)

  • Q1. Explain Linked list implementation and stack
  • Ans. 

    Linked list is a data structure where each element points to the next element. Stack is a data structure that follows Last In First Out (LIFO) principle.

    • Linked list implementation involves creating nodes with data and a pointer to the next node.

    • Stack implementation involves pushing elements onto the stack and popping them off in reverse order.

    • Example: Linked list - 1 -> 2 -> 3 -> NULL, Stack - push(1), push(2), push(3)...

  • Answered by AI
  • Q2. Oops concepts in java
  • Ans. 

    Oops concepts in Java refer to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability of a method to do different things based on the object it is acting upon.

    • Abstraction: Hiding the imp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn java and dsa

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Sep 2021. 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 - Technical 

(1 Question)

  • Q1. Questions on IOT and related
Round 3 - Coding Test 

Questions mainly from Linked list.

Round 4 - Technical 

(1 Question)

  • Q1. Basically coding round, with basic questions from arrays. One needs to have good communication skills to explain to interviewers.

Interview Preparation Tips

Topics to prepare for VassarLabs Software Engineer interview:
  • DSA
  • IOT
Interview preparation tips for other job seekers - It is an startup, you need to ready for any questions.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more

Top trending discussions

View All
Interview Tips & Stories
6d
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about VassarLabs?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. What is JPA
  • Q2. Write a program to find duplicate elements in the list

I applied via Indeed and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic php and array functions
  • Q2. Mysql basic, views, triggers

Interview Preparation Tips

Interview preparation tips for other job seekers - Array related question and basic php mysql

I applied via Company Website and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Php basic and array functions
  • Q2. Mysql basic,views,triggers

Interview Preparation Tips

Interview preparation tips for other job seekers - Average

Interview Questionnaire 

5 Questions

  • Q1. What do you mean by virtualization in Operating System?
  • Ans. 

    Virtualization in OS refers to creating a virtual version of a resource such as hardware, operating system, or storage.

    • Virtualization allows multiple operating systems to run on a single physical machine

    • It enables better utilization of resources and reduces hardware costs

    • Examples include VMware, VirtualBox, and Hyper-V

  • Answered by AI
  • Q2. What happens when you type in a URL in browser
  • Ans. 

    When a URL is typed in a browser, it initiates a series of requests and responses to display the requested webpage.

    • Browser checks cache for DNS resolution

    • If not found, browser sends a DNS request to resolve the domain name

    • Browser sends a request to the server for the webpage

    • Server responds with the requested webpage

    • Browser renders the webpage and displays it to the user

  • Answered by AI
  • Q3. Write the Double Ordered Traversal of Binary Tree.
  • Ans. 

    Double Ordered Traversal is a traversal technique used to traverse a binary tree in a specific order.

    • In Double Ordered Traversal, we first traverse the left subtree in an inorder manner.

    • Then we traverse the right subtree in a reverse postorder manner.

    • Finally, we traverse the root node.

    • This traversal technique is also known as Morris Traversal.

    • It is used to traverse a binary tree without using recursion or a stack.

  • Answered by AI
  • Q4. Add Two Binary Number, given in String form.
  • Ans. 

    Add two binary numbers given in string form.

    • Convert the binary strings to integers.

    • Add the integers.

    • Convert the sum back to binary string.

    • Handle cases where the binary strings have different lengths.

    • Handle cases where there is a carry over.

  • Answered by AI
  • Q5. What is Thread and how to use it in programming?
  • Ans. 

    Thread is a lightweight process that can run concurrently with other threads within a program.

    • Threads allow for parallelism and can improve performance in certain scenarios.

    • Threads can communicate with each other through shared memory or message passing.

    • Thread creation and management is typically handled by the operating system or a thread library.

    • Examples of thread libraries include pthreads for C/C++ and java.util.co...

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Hello everyone, i would just like to tell everyone that the level of questions basically depends on the individual's experience. As I was having 2.5 years of experience at the time of interview so I was as...

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go with fresh mind and grab a job.
Are these interview questions helpful?

I applied via Walk-in and was interviewed in Mar 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops in depth, class, object, interfaces , abstraction, encapsulation, abstract classes, virtual override examples. MVC , routing, view model, areas, html helpers, benifits ,of MVC,ajax, features of MVC ...

Interview Preparation Tips

Interview preparation tips for other job seekers - There are 3 rounds with different panels

I applied via Referral and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1. Bit Manipulation
  • Q2. 2. String Manipulation

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on basics of programming and memory management.

I applied via Referral and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About VCB, ACB, UPS, inverter, transformers, DG set, chillers, AHU, fire systems and excel work and PPT

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to take full knowledge, & ensure that I'm capable for this post & ready to take any challenge

VassarLabs Interview FAQs

How many rounds are there in VassarLabs Software Engineer interview?
VassarLabs interview process usually has 3-4 rounds. The most common rounds in the VassarLabs interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for VassarLabs Software Engineer 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 VassarLabs. The most common topics and skills that interviewers at VassarLabs expect are Algorithms, Data Structures, Design Patterns, Java and Microservices.
What are the top questions asked in VassarLabs Software Engineer interview?

Some of the top questions asked at the VassarLabs Software Engineer interview -

  1. Explain Linked list implementation and st...read more
  2. Oops concepts in j...read more
  3. Questions on IOT and rela...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

More than 8 weeks 100%
View more
VassarLabs Software Engineer Salary
based on 44 salaries
₹4.5 L/yr - ₹18 L/yr
26% more than the average Software Engineer Salary in India
View more details

VassarLabs Software Engineer Reviews and Ratings

based on 8 reviews

2.4/5

Rating in categories

3.0

Skill development

2.1

Work-life balance

2.1

Salary

2.2

Job security

2.1

Company culture

2.1

Promotions

2.6

Work satisfaction

Explore 8 Reviews and Ratings
Software Engineer
44 salaries
unlock blur

₹4.5 L/yr - ₹18 L/yr

Software Development Engineer
32 salaries
unlock blur

₹5.5 L/yr - ₹14 L/yr

Software Developer
23 salaries
unlock blur

₹4 L/yr - ₹10.1 L/yr

R&D Engineer
14 salaries
unlock blur

₹9 L/yr - ₹13.5 L/yr

Project Manager
13 salaries
unlock blur

₹7.8 L/yr - ₹22 L/yr

Explore more salaries
Compare VassarLabs with

Karvy Financial Services

3.8
Compare

Reliance Money

3.6
Compare

Sonata Finance

3.9
Compare

Incrementors Web Solutions

4.1
Compare
write
Share an Interview