Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Vendasta Technology (India) Private Limited Team. If you also belong to the team, you can get access from here

Filter interviews by

Vendasta Technology (India) Private Limited HR Recruiter Interview Questions and Answers

Updated 28 Jun 2024

Vendasta Technology (India) Private Limited HR Recruiter Interview Experiences

1 interview found

HR Recruiter Interview Questions & Answers

user image suharsha kt

posted on 28 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. What is the most challenges faced as a Recruiter
  • Ans. 

    The most common challenges faced as a Recruiter include sourcing qualified candidates, managing high volume of applicants, and balancing multiple priorities.

    • Sourcing qualified candidates from a limited pool of talent

    • Managing a high volume of applicants and screening them efficiently

    • Balancing multiple priorities and deadlines

    • Dealing with candidate ghosting or last-minute withdrawals

    • Adapting to changing recruitment trend

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. How do Yo deal with Multiple offers with a candidate
  • Ans. 

    I prioritize the candidate's preferences, negotiate with employers, and ensure transparency throughout the process.

    • Understand the candidate's priorities and preferences

    • Negotiate with employers to see if any offers can be improved

    • Communicate openly and transparently with the candidate about the options available

    • Help the candidate make an informed decision based on their career goals

  • Answered by AI

Interview questions from similar companies

I applied via Company Website and was interviewed before May 2018. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions about Oops, data structures based on the projects I had done, and my resume
  • Q2. Questions about classes and abstraction

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 parts; part 1 is a coding test and part 2 is discussion.

I applied via Naukri.com and was interviewed before Jul 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions about the projects you worked with. About how specific coding challenges were solved. How it could have been done other ways. etc.
  • Q2. About Python versions and differences. Impact on frameworks.
  • Q3. About module design, apis.

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a relaxed interview, like a discussion. The questions are tough in that they make you think. Review your previous projects and be honest.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Application developement

I was interviewed in Jun 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 180 minutes
Round difficulty - Hard

The test link had 3 days expiry so I could attempt test anytime. It was conducted on doselect.com

  • Q1. 

    Equilibrium Indices in a Sequence

    You are given an array/list named 'SEQUENCE', which consists of 'N' integers. The task is to identify all equilibrium indices in this sequence.

    Explanation:

    An equilibr...

  • Ans. 

    The task is to find the equilibrium indices of a given sequence, where the sum of elements at lower indices is equal to the sum of elements at higher indices.

    • Iterate through the sequence and calculate the total sum of all elements

    • Initialize a left sum and right sum as 0

    • For each index, update the left sum and right sum and check if they are equal

    • If they are equal, add the index to the equilibrium indices

    • Return the equil

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Video interview round wherein I was asked to wrote code for the problem statements given by the interviewer. The problems were mainly focused on advanced JS concepts like asynchonous progamming, timers, closures, and data structure problems around arrays, sets, linked list etc.

  • Q1. 

    Rearrange Linked List Problem Statement

    Given a singly linked list in the form 'L1' -> 'L2' -> 'L3' -> ... 'Ln', your task is to rearrange the nodes to the form 'L1' -> 'Ln' -> 'L2' -> '...

  • Ans. 

    The task is to rearrange the nodes of a singly linked list in a specific order without altering the data of the nodes.

    • Iterate through the linked list to find the middle node using the slow and fast pointer technique.

    • Reverse the second half of the linked list.

    • Merge the first and reversed second half of the linked list alternatively to get the desired order.

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was the last round with HR wherein they judged cultural fit and there was discussion on things like my expectations v/s their expectations etc.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNoSpringworks interview preparation:Topics to prepare for the interview - Javascript/Typescript, NodeJS, MongoDB, SQL, Angular, Data Structures and Algorithms, Object Oriented Programming ConceptsTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Get well versed with the fundamentals of Javascript including advanced concepts like promises, async/await, generators, higher order functions, closures, currying etc.
Tip 2 : Do some projects on MERN Stack because a lot of projects here use some or all of those technologies
Tip 3 : Do prepare for behavioral/cultural-fit questions especially around how you'll handle various stituations during work or how will you manage productivity while working remotely.

Application resume tips for other job seekers

Tip 1 : Having projects on MERN stack will give you advantage
Tip 2 : Do mention if you have any AWS experience.
Tip 3 : Mention all your internships/past experiences. Keep them crisp and talk about what you did and it's impact/outcome.
Tip 4 : Any experience/exposure to blockchain will definitely give brownie points.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Nov 2021.

Round 1 - Coding Test 

Round duration - 30 minutes
Round difficulty - Easy

This round mainly consisted of some questions on advanced JS topics like Execution Context, Callback queue, Micro task queue, Promises, etc.

Round 2 - Telephonic Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

This round was more technical compared to the previous one. The interviewer was a senior developer. If questions were not answered, answers would be given/explained.

  • Q1. What are some aggregate operators in MongoDB?
  • Ans. 

    Aggregate operators in MongoDB are used for data aggregation and manipulation.

    • Some aggregate operators in MongoDB include $sum, $avg, $min, $max, $push, $addToSet, $first, $last, $project, $match, $group, $sort, $limit, $skip.

    • Example: db.collection.aggregate([{$group: {_id: '$field', total: {$sum: '$value'}}}])

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This round was mainly to assess my experience level, roles, and responsibilities from my previous company. Salary negotiations also happened here.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo criteriaSpringworks interview preparation:Topics to prepare for the interview - Databases, Asynchronous programming, Promises, JavaScript, DS.Time required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Learn about Execution Context, Promises in JS
Tip 2 : Learn about indices, Difference between different databases
Tip 3 : Error handling and Exceptions

Application resume tips for other job seekers

Tip 1 : Put in what you’ve done and not what you could have done.
Tip 2 : Keep it short and simple

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Online apitude containing 10 question without camera

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

I applied via Naukri.com and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Oops? .net core features
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Basic Logical programs

Round 2 - Technical 

(4 Questions)

  • Q1. Explain laravel Structure
  • Q2. Database migration
  • Q3. What is indexing in database
  • Q4. What is controller ,What is Route
Round 3 - HR 

(2 Questions)

  • Q1. Why you leave your previous Company
  • Q2. What is your role in previous company
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Simple aptitude think logically

Round 2 - Coding Test 

Basic coding string and array concepts

Round 3 - Technical 

(2 Questions)

  • Q1. Object Oriented concepts
  • Q2. Basic coding questions
Round 4 - HR 

(1 Question)

  • Q1. Object Oriented concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong in oops and basic coding questions

Vendasta Technology (India) Private Limited Interview FAQs

How many rounds are there in Vendasta Technology (India) Private Limited HR Recruiter interview?
Vendasta Technology (India) Private Limited interview process usually has 2 rounds. The most common rounds in the Vendasta Technology (India) Private Limited interview process are HR.

Tell us how to improve this page.

Vendasta Technology (India) Private Limited HR Recruiter Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 48 Interviews
Fleetx.io Interview Questions
3.7
 • 28 Interviews
ZIGRAM Interview Questions
3.2
 • 26 Interviews
RGBSI Interview Questions
3.5
 • 24 Interviews
Springworks Interview Questions
4.6
 • 23 Interviews
Fingent Interview Questions
4.4
 • 22 Interviews
View all
Digital Marketing Specialist
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Web Designer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Content Specialist
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Client Solution Specialist
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Digital Marketing Executive
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Vendasta Technology (India) Private Limited with

Aurigo

4.7
Compare

Peel-works

4.0
Compare

Prime Focus Technologies

3.4
Compare

ZIGRAM

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