Upload Button Icon Add office photos

VEDAVAAG Systems

Compare button icon Compare button icon Compare

Filter interviews by

VEDAVAAG Systems Interview Questions and Answers

Updated 10 Apr 2025

VEDAVAAG Systems Interview Experiences

2 interviews found

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

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. Why are you considering hiring me?
  • Ans. 

    Your extensive experience and leadership skills make you an ideal candidate for the Assistant General Manager role.

    • Proven track record in management: Successfully led a team of 20 in a previous role, increasing productivity by 30%.

    • Strong communication skills: Regularly facilitated cross-departmental meetings to enhance collaboration and resolve conflicts.

    • Strategic thinker: Developed and implemented a new marketing stra...

  • Answered by AI
  • Q2. How do you effectively manage your team?
  • Ans. 

    I manage my team by fostering open communication, setting clear goals, and providing support and recognition for their efforts.

    • Establish clear objectives: I set SMART goals for the team, ensuring everyone understands their roles and responsibilities.

    • Encourage open communication: I hold regular one-on-one meetings to discuss progress and address any concerns.

    • Provide support and resources: I ensure my team has the tools ...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. What can you tell me about your field?
  • Ans. 

    The field of management encompasses planning, organizing, leading, and controlling resources to achieve organizational goals.

    • Management involves strategic planning, such as setting long-term goals and determining the best approach to achieve them.

    • Effective leadership is crucial; for example, motivating teams to enhance productivity and foster a positive work environment.

    • Resource allocation is key; managers must efficie...

  • Answered by AI
  • Q2. Why are you considering hiring me?

Top trending discussions

View All
Interview Tips & Stories
2w
timepasstiwari
·
A Digital Markter
ChatGPT prepped me HARD for my interview!
Spent like two hours on chatgpt yesterday prepping for an interview. First, the usual, copy-pasted my resume and the job description, telling it to "upload this to your memory 'cause we are going to talk about it later". Then I grilled it with questions about stuff I didn't get in the job spec, and chatgpt helped me figure things out. I asked it to list the four or five key things they are looking for in the role. Then I told chatgpt to quiz me with ten questions, one at a time, to help me think about how I have gained experience in those areas. After the ten questions, it gave me strengths/weaknesses and a summary. Finally, I had chatgpt summarize each of my answers into three bullet points. Now have got a list of stories ready to go for any interview. No matter the question, I can steer the convo toward one of these success stories.
Got a question about VEDAVAAG Systems?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

9 Questions

  • Q1. Questions related to the work done at my previous company
  • Q2. Find if a given directed graph is cyclic or not
  • Ans. 

    To check if a directed graph is cyclic or not

    • Use Depth First Search (DFS) algorithm to traverse the graph

    • Maintain a visited set to keep track of visited nodes

    • Maintain a recursion stack to keep track of nodes in the current DFS traversal

    • If a node is visited and is already in the recursion stack, then the graph is cyclic

    • If DFS traversal completes without finding a cycle, then the graph is acyclic

  • Answered by AI
  • Q3. You have a stream of bytes from which you can read one byte at a time. You only have enough space to store one byte. After processing those bytes, you have to return a random byte. Note: The probability of...
  • Ans. 

    Return a random byte from a stream of bytes with equal probability.

    • Create a variable to store the count of bytes read

    • Create a variable to store the current random byte

    • For each byte read, generate a random number between 0 and the count of bytes read

    • If the random number is 0, store the current byte as the random byte

    • Return the random byte

  • Answered by AI
  • Q4. Find if a given Binary Tree is BST or not
  • Ans. 

    Check if a binary tree is a binary search tree or not.

    • Traverse the tree in-order and check if the values are in ascending order.

    • For each node, check if its value is greater than the maximum value of its left subtree and less than the minimum value of its right subtree.

    • Use recursion to check if all nodes in the tree satisfy the above condition.

  • Answered by AI
  • Q5. Devise an algorithm to determine the Nth-to-Last element in a singly linked list of unknown length. If N = 0, then your algorithm must return the last element. You should parse the list only once
  • Ans. 

    Algorithm to find Nth-to-Last element in a singly linked list of unknown length

    • Traverse the list and maintain two pointers, one at the beginning and one at Nth node from beginning

    • Move both pointers simultaneously until the second pointer reaches the end of the list

    • The first pointer will be pointing to the Nth-to-Last element

    • If N=0, return the last element

    • Parse the list only once

  • Answered by AI
  • Q6. Given an array of integers, print all possible permutations. Also explain your approach
  • Ans. 

    Print all possible permutations of an array of integers

    • Use recursion to swap elements and generate permutations

    • Start with the first element and swap it with each subsequent element

    • Repeat the process for the remaining elements

    • Stop when all elements have been swapped with the first element

    • Print each permutation as it is generated

  • Answered by AI
  • Q7. Design a Stack DS that also prints in O(1) the minimum element you pushed in the stack
  • Ans. 

    Design a stack that prints the minimum element pushed in O(1)

    • Use two stacks, one for storing elements and another for storing minimums

    • When pushing an element, compare it with the top of minimum stack and push the smaller one

    • When popping an element, pop from both stacks

    • To get the minimum element, just return the top of minimum stack

  • Answered by AI
  • Q8. Given a linked list with loop, how would you find the starting point of the loop ?
  • Ans. 

    To find the starting point of a loop in a linked list, use Floyd's cycle-finding algorithm.

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

    • When they meet, move one pointer to the head of the list and keep the other at the meeting point.

    • Move both pointers one step at a time until they meet again, which is the starting point of the loop.

  • Answered by AI
  • Q9. Find a number a matrix mat[m][n] where all the rows and columns are sorted non-decreasingly. What will be the complexity of the solution
  • Ans. 

    To find a number in a matrix where all rows and columns are sorted non-decreasingly. Complexity of the solution.

    • Use binary search to find the number in each row and column

    • Start from the top-right corner or bottom-left corner to optimize search

    • Time complexity: O(m log n) or O(n log m) depending on the starting corner

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Data structure
College Name: Na

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What is oops
  • Ans. 

    OOPs is a programming paradigm that uses objects to represent real-world entities and their interactions.

    • OOPs stands for Object-Oriented Programming.

    • It focuses on encapsulation, inheritance, and polymorphism.

    • Encapsulation means hiding the implementation details of an object from the outside world.

    • Inheritance allows creating new classes based on existing ones.

    • Polymorphism allows using a single interface to represent dif...

  • Answered by AI
  • Q2. Real world thing

Interview Questionnaire 

1 Question

  • Q1. SQL Basics, CTE, MERGE Statement

I applied via Campus Placement and was interviewed before Jun 2021. There were 5 interview rounds.

Round 1 - Aptitude Test 

It has aptitude and coding based questions.For coding you can choose any coding language

Round 2 - Group Discussion 

There will be a GD for 7-10 people on random topic

Round 3 - Technical 

(1 Question)

  • Q1. 1st TR,ask to write a code of your preference.Linux commands,SQL
Round 4 - Technical 

(1 Question)

  • Q1. 2nd TR ,ask about the projects you have done
Round 5 - HR 

(1 Question)

  • Q1. Basic HR round,where they will discuss about the company , job role etc

Interview Preparation Tips

Interview preparation tips for other job seekers - The above process is for freshers which is of 2 years back.there might be change in process.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Database indexing, partitioning, sharding.
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. Why should we hire you?
  • Ans. 

    I have a strong technical background, a passion for problem-solving, and a proven track record of delivering high-quality software solutions.

    • Extensive experience in software development, including proficiency in multiple programming languages such as Java, Python, and JavaScript.

    • Strong problem-solving skills and ability to think critically to find innovative solutions to complex technical challenges.

    • Proven track record...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic to intermediate.net, EF, SQL, C#, OOP
  • Q2. Basics of .Net Core
Round 2 - Technical 

(1 Question)

  • Q1. Deep into.net and sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers were good and friendly, but HR's does not have any management.

I completed 2 tech rounds, shortlisted in both of them and then HR is saying that my experience is low for the position so they will not move forward. Seriously W.T.F..

And after that HR is not picking up calls
Even while scheduling interviews there were 3-4 rescheduled.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Sql server, healthcare
  • Q2. Python basic coding

VEDAVAAG Systems Interview FAQs

How to prepare for VEDAVAAG Systems 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 VEDAVAAG Systems. The most common topics and skills that interviewers at VEDAVAAG Systems expect are Android SDK, Customer Service, Insurance, MS Office and User Interface Designing.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 4 interview experiences

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Subex Interview Questions
3.5
 • 36 Interviews
MapmyIndia Interview Questions
3.7
 • 26 Interviews
Twilio Interview Questions
3.9
 • 24 Interviews
Mentor Graphics Interview Questions
4.0
 • 18 Interviews
Relyon Softech Interview Questions
3.9
 • 16 Interviews
Upland Software Interview Questions
4.6
 • 15 Interviews
MongoDB Interview Questions
3.7
 • 15 Interviews
View all

VEDAVAAG Systems Reviews and Ratings

based on 25 reviews

3.8/5

Rating in categories

3.9

Skill development

4.2

Work-life balance

3.9

Salary

4.0

Job security

4.0

Company culture

3.8

Promotions

3.9

Work satisfaction

Explore 25 Reviews and Ratings
District Manager
5 salaries
unlock blur

₹3.2 L/yr - ₹3.6 L/yr

Company Secretary
4 salaries
unlock blur

₹2 L/yr - ₹7.5 L/yr

Senior Test Engineer
4 salaries
unlock blur

₹5.7 L/yr - ₹25.4 L/yr

Project Manager
3 salaries
unlock blur

₹6.9 L/yr - ₹9 L/yr

Business Executive
3 salaries
unlock blur

₹1.9 L/yr - ₹1.9 L/yr

Explore more salaries
Compare VEDAVAAG Systems with

Subex

3.5
Compare

Evolent Health International

4.0
Compare

Yalamanchili Software Exports

3.3
Compare

MapmyIndia

3.7
Compare
write
Share an Interview