Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Vayavya Labs Senior Software Engineer Interview Questions and Answers

Updated 15 Jun 2021

Vayavya Labs Senior Software Engineer Interview Experiences

1 interview found

I applied via Recruitment Consultant and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1.To verify Sudoko in whichever comfortable language i did in python 2. To build queue from stack

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to brush up all the basics.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. 1st round c mcq 2nd round short coding 3rd round advanced coding 4 and 5 technical hr and general hr

Interview Questionnaire 

1 Question

  • Q1. Simple basic c programing questions

I was interviewed before Mar 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Level Order Traversal Problem Statement

    Given a binary tree of integers, return the level order traversal of the binary tree.

    Input:

    The first line contains an integer 'T', representing the number of te...
  • Ans. 

    Return the level order traversal of a binary tree given in level order with null nodes represented by -1.

    • Create a queue to store nodes for level order traversal

    • Start with the root node and add it to the queue

    • While the queue is not empty, dequeue a node, print its value, and enqueue its children

    • Repeat until all nodes are traversed in level order

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

  • Q1. What is a deadlock in DBMS, and can you explain the concepts of join and query?
  • Ans. 

    A deadlock in DBMS occurs when two or more transactions are waiting for each other to release locks, causing them to be stuck indefinitely.

    • Deadlock is a situation where two or more transactions are unable to proceed because each is waiting for the other to release locks.

    • To prevent deadlocks, DBMS uses techniques like deadlock detection and prevention algorithms.

    • Joins in DBMS are used to combine rows from two or more ta...

  • Answered by AI
Round 3 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. Design a system for Twitter, outlining the key components and architecture involved.
  • Ans. 

    Design a system for Twitter

    • Key components: user profiles, tweets, hashtags, timelines

    • Architecture: microservices, load balancers, databases, caching

    • Scalability: sharding, replication, CDN

    • Real-time processing: streaming APIs, push notifications

  • Answered by AI
Round 4 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Maximum Subarray Sum Queries

    You are provided with an array of ‘N’ integers and ‘Q’ queries. Each query requires calculating the maximum subarray sum in a specified range of the array.

    Input:

    The first ...
  • Ans. 

    Implement a function to calculate maximum subarray sum queries in a given range of an array.

    • Iterate through each query and calculate the maximum subarray sum within the specified range using Kadane's algorithm.

    • Keep track of the maximum sum found so far and update it as needed.

    • Return the maximum subarray sum for each query in the test case.

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an integer array containing only 0s, 1s, and 2s in linear time complexity.

    • Use a single scan over the array to sort it in-place.

    • Maintain three pointers for 0s, 1s, and 2s and swap elements accordingly.

    • Example: Input: [0, 2, 1, 2, 0], Output: [0, 0, 1, 2, 2]

  • Answered by AI
Round 5 - Coding Test 

Round duration - 20 Minutes
Round difficulty - Medium

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in ChennaiEligibility criteria7 CGPAFreshworks interview preparation:Topics to prepare for the interview - Algorithms, Data Structures, Dynamic Programming, OOPS, System DesignTime required to prepare for the interview - 2.5 MonthsInterview preparation tips for other job seekers

Tip 1 : Prepare DS and Algo
Tip 2 : Prepare Dynamic programming 

Application resume tips for other job seekers

Tip 1 : Good in DS and algo that will be help in the interview that is very neccassry
Tip 2 : Prepare DBMS

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Coding Test 

10 core subject MCQs along with 3 coding questions

1 Fizz Buzz questions
2 third largest string in array of strings
3 operation on numbers given by strings

Round 2 - Technical 

(3 Questions)

  • Q1. Almost all Basic concepts retlated to OS ie process, threads, multitasking, multiprogramming
  • Q2. Concepts related to AWS
  • Q3. Coding questions like 1. second largest element in array 2. stack implementation and its real time uses 3. frequency of characters in string
Round 3 - Technical 

(2 Questions)

  • Q1. Deep concepts related to CNS , related to your own laptop its processor , cores etc
  • Q2. Top View of binary treee
  • Ans. 

    Top view of binary tree is the nodes visible when viewed from the topmost node.

    • Top view shows the nodes visible from the root node's perspective.

    • Nodes are printed in the order of their horizontal distance from the root node.

    • If two nodes have the same horizontal distance, the node that appears first in the level order traversal is printed first.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Keep fundamentals of AWS clear it is not necessary but if you add it in resume it will be in your advantage and questions will be asked on it
2. Core subjects like CNS ,OS should be good

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

1st round is coding assessment round based on graph and hashmaps

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

1. max of sub-array
2.snake-to-camel

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. As a start you will receive an email about a coding assignment with no expiration date.
2. On the basis of that test only they can reject you irrespective of the situation.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Topics - array , tree , string baics
platorm - hackerank

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

It was on hacker rank. 2 questions easy to medium

Round 2 - One-on-one 

(2 Questions)

  • Q1. Ask questions on trees
  • Q2. Asked questions on OOPS
Round 3 - One-on-one 

(2 Questions)

  • Q1. Asked questions based on resume
  • Q2. Asked some puzzles
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Past Experience and System Design
Round 2 - Technical 

(1 Question)

  • Q1. DSA and System Design
Round 3 - Technical 

(1 Question)

  • Q1. Past Experience and System Design
Contribute & help others!
anonymous
You can choose to be anonymous

Vayavya Labs Interview FAQs

How to prepare for Vayavya Labs Senior 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 Vayavya Labs. The most common topics and skills that interviewers at Vayavya Labs expect are Python, AUTOSAR, Automation Testing, Automotive and Backend.

Recently Viewed

INTERVIEWS

Sopra Steria

No Interviews

INTERVIEWS

Sopra Steria

No Interviews

INTERVIEWS

E-Ring

No Interviews

INTERVIEWS

Zolo

No Interviews

INTERVIEWS

Sopra Steria

No Interviews

INTERVIEWS

Vayavya Labs

No Interviews

INTERVIEWS

Velnik India

No Interviews

INTERVIEWS

Velnik India

No Interviews

SALARIES

Moira Sariya

INTERVIEWS

Sopra Steria

No Interviews

Tell us how to improve this page.

Vayavya Labs Senior Software Engineer Salary
based on 23 salaries
₹6 L/yr - ₹23 L/yr
7% less than the average Senior Software Engineer Salary in India
View more details

Vayavya Labs Senior Software Engineer Reviews and Ratings

based on 2 reviews

4.4/5

Rating in categories

5.0

Skill development

4.4

Work-life balance

4.4

Salary

4.4

Job security

5.0

Company culture

5.0

Promotions

4.4

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