Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Vayavya Labs Software Developer Interview Questions and Answers

Updated 14 Jun 2024

Vayavya Labs Software Developer Interview Experiences

2 interviews found

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

40mins profit or loss, time and distance,percentage, etc

Round 2 - Coding Test 

1 hours searching,sorting,programs on string manipulation

Software Developer Interview Questions & Answers

user image Prasad Nandanwar

posted on 21 Oct 2023

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

I applied via Company Website and was interviewed before Oct 2022. 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. Creating a C program to swap values
  • Ans. 

    Swapping values in a C program involves using a temporary variable to store one value while the other is replaced.

    • Declare three variables: two for the values to be swapped and one for the temporary storage.

    • Assign the values to be swapped to the two variables.

    • Use the temporary variable to store one of the values.

    • Assign the value from the other variable to the first variable.

    • Assign the value from the temporary variable t

  • Answered by AI
  • Q2. Details about projects performed in past
  • Q3. About other skills
Round 3 - Technical 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. Roles and Responsibilities in previous job
  • Q3. Explaned roles and responsibilities here
Round 4 - HR 

(4 Questions)

  • Q1. Tell me about yourself
  • Q2. Reasons for quitting previous jobs
  • Q3. How do I react in difficult situations
  • Q4. Expected salary

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Strings, arrays, dp

Interview Preparation Tips

Round: Test
Experience: PAPER DURATION: 3 hours
NO. OF QUESTIONS: 2 (20 marks each)
MAXIMUM MARKS: 20*2 = 40 marksQUESTION 1:
JSON Prettier:-Write a program which takes JSON as input and gives prettified JSONYou need to read JSON from STDIN. Input gives one line of uglified JSON.Output should be formatted JSON. Check the standard output link.Use 2 white spaces (not‘\t’) for one indentation.SAMPLE INPUT:{“group” : {list : [1,2,3]}, “list” : [“a”,”b”,”c”]}SAMPLE OUTPUT:{“group” : {List : [1,2,3]},“list” : [“a”,”b”,”c”]}EXPLANATION: Input will be uglifiedjson in one line and output will be prettified format of that. QUESTION 2:XML parse plus series computationEvaluate an expression given in XML format. Keys will be Expr- contains the entire expression. Elem – contains the digit, sum, Prod- contains two or more keys whose evaluation needs to be summed or multiplied respectively. Sub will contain 2 keys or more, where the second key onwards will have to be subtracted from the first one. Div- will contain 2 keys in which first key will need to be divided by second. SAMPLE INPUT:4673 SAMPLE OUTPUT:
20EXPLANATION:Input will be xml file through standard input. End of xml file marked by .
Duration: 180 minutes
Total Questions: 2

College Name: NA

I applied via Company Website and was interviewed in Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Coding and solution architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - It’s one good interview worth to attend

Software Engineer Interview Questions & Answers

Druva user image Sohom Bhattacharjee

posted on 2 Oct 2024

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

(2 Questions)

  • Q1. Details about career goals
  • Q2. Details about expectations (in terms of role)
Round 2 - Coding Test 

DSA and lagorithmic optimizations (this is based on team you are joining so questions vary a LOT)

Round 3 - HR 

(1 Question)

  • Q1. Salary expectation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2022. 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 Resume tips
Round 2 - Coding Test 

Medium level leetcode questions and some apti very rare but.

Round 3 - Technical 

(3 Questions)

  • Q1. Good practice of ds algo and os
  • Ans. 

    Good practice of data structures, algorithms, and operating systems is essential for software engineers.

    • Regularly practice coding challenges to improve problem-solving skills

    • Understand the time and space complexity of algorithms

    • Learn about different data structures and when to use them

    • Familiarize yourself with operating system concepts like processes, threads, and memory management

  • Answered by AI
  • Q2. Is given tree bst or not?
  • Q3. Check whether cycle in linked list.
  • Ans. 

    Check for cycle in a linked list by using two pointers approach.

    • Use two pointers, one moving at double the speed of the other.

    • If there is a cycle, the two pointers will eventually meet.

    • Alternatively, use a hash set to keep track of visited nodes.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Binary search tree
Linked list

Round 2 - Technical 

(2 Questions)

  • Q1. Project related
  • Q2. Technologies used
  • Ans. 

    I have experience with a variety of technologies including Java, Python, SQL, and JavaScript.

    • Java

    • Python

    • SQL

    • JavaScript

  • Answered by AI

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

Round 1 - Coding Test 

100 minutes, there were 3 coding questions and some easy to medium level mcq on core subjects

Round 2 - Technical 

(2 Questions)

  • Q1. Isomorphic string
  • Q2. What you'll use to implement a playlist
  • Ans. 

    A playlist can be implemented using an array of strings to store the list of songs.

    • Use an array of strings to store the list of songs in the playlist

    • Implement functions to add, remove, and shuffle songs in the playlist

    • Consider using a linked list data structure for more efficient insertion and deletion operations

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on problem solving skills and your core knowledge

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Coding Test 

2 coding , 2 SQL with some quants

Round 2 - Technical 

(1 Question)

  • Q1. Remove redundant parentheses in a expression
  • Ans. 

    Remove redundant parentheses in a expression

    • Identify the innermost parentheses

    • Evaluate the expression inside the innermost parentheses

    • Replace the innermost parentheses with the evaluated expression

    • Repeat until no more redundant parentheses exist

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to join Chargebee?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and focus on your strength and if you screw up a part don’t feel bad

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Vayavya Labs Interview FAQs

How many rounds are there in Vayavya Labs Software Developer interview?
Vayavya Labs interview process usually has 3 rounds. The most common rounds in the Vayavya Labs interview process are Technical, HR and Aptitude Test.

Recently Viewed

INTERVIEWS

Velnik India

No Interviews

INTERVIEWS

Velnik India

No Interviews

SALARIES

Moira Sariya

INTERVIEWS

Sopra Steria

No Interviews

INTERVIEWS

Sopra Steria

No Interviews

INTERVIEWS

Velnik India

No Interviews

INTERVIEWS

Velnik India

No Interviews

INTERVIEWS

E-Ring

No Interviews

INTERVIEWS

Vayavya Labs

No Interviews

INTERVIEWS

Velnik India

10 top interview questions

Tell us how to improve this page.

Vayavya Labs Software Developer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
Vayavya Labs Software Developer Salary
based on 5 salaries
₹3.7 L/yr - ₹9 L/yr
8% less than the average Software Developer Salary in India
View more details

Vayavya Labs Software Developer Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

4.8

Skill development

4.0

Work-life balance

2.8

Salary

4.0

Job security

5.0

Company culture

3.2

Promotions

4.0

Work satisfaction

Explore 2 Reviews and Ratings
Engineer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Embedded Software Engineer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Vayavya Labs with

Innovaccer

3.4
Compare

Indus OS

4.5
Compare

Postman

3.6
Compare

Freshworks

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