Upload Button Icon Add office photos

Filter interviews by

Vendekin Technologies Interview Questions and Answers

Updated 28 Mar 2024
Popular Designations

9 Interview questions

A Member Technical Team was asked
Q. What are the differences between JavaScript's map and forEach methods?
Ans. 

map creates a new array with the results of calling a provided function on every element, forEach executes a provided function once for each array element.

  • map returns a new array with the results of the provided function, forEach does not return anything

  • map does not modify the original array, forEach can modify the original array

  • Example: const numbers = [1, 2, 3]; numbers.map(num => num * 2); // returns [2, 4, 6];...

View all Member Technical Team interview questions
A Member Technical Team was asked
Q. Write a Java program to generate the Fibonacci series.
Ans. 

Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

  • Start with two initial numbers, usually 0 and 1

  • Add the previous two numbers to get the next number in the sequence

  • Repeat this process to generate the Fibonacci series

View all Member Technical Team interview questions
A Reactjs Developer was asked
Q. Given an unsorted array of consecutive integers, how do you find the missing element?
Ans. 

Find missing element in array of strings

  • Iterate through the array and check for missing elements

  • Use a hash map to keep track of elements present in the array

  • Compare the elements in the array with a reference array to find the missing element

View all Reactjs Developer interview questions
A Reactjs Developer was asked
Q. Write SQL queries for select statements.
Ans. 

SQL SELECT queries retrieve data from a database, allowing for filtering, sorting, and aggregation of results.

  • Basic SELECT syntax: SELECT column1, column2 FROM table_name;

  • To select all columns: SELECT * FROM table_name;

  • Filtering results with WHERE: SELECT * FROM table_name WHERE condition;

  • Sorting results with ORDER BY: SELECT * FROM table_name ORDER BY column_name ASC|DESC;

  • Using aggregate functions: SELECT COUNT(*...

View all Reactjs Developer interview questions
A Java Developer Intern was asked
Q. How do you swap two numbers without using a third variable?
Ans. 

Swap two numbers without using a third variable in Java

  • Use XOR operation to swap two numbers without using a third variable

  • Example: int a = 5, b = 10; a = a ^ b; b = a ^ b; a = a ^ b; // Now a = 10, b = 5

View all Java Developer Intern interview questions
A Java Developer Intern was asked
Q. How do you remove duplicates from an array?
Ans. 

Use a Set to remove duplicates from an array of strings.

  • Create a Set to store unique elements.

  • Iterate through the array and add each element to the Set.

  • Convert the Set back to an array to get the array without duplicates.

View all Java Developer Intern interview questions
A Software Trainee Intern was asked
Q. Write a program to reverse a list.
Ans. 

Program to reverse a list

  • Create an empty list to store the reversed elements

  • Iterate through the original list in reverse order

  • Append each element to the new list

  • Return the new list

View all Software Trainee Intern interview questions
Are these interview questions helpful?
A Reactjs Developer was asked
Q. Join queries of mysql databases
Ans. 

Join queries in MySQL databases allow you to combine data from multiple tables based on a related column.

  • Use JOIN keyword to combine data from two or more tables based on a related column

  • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

  • Specify the columns to be retrieved using SELECT statement

View all Reactjs Developer interview questions
A Software Trainee Intern was asked
Q. What is OOPS? Write a program for palindrome
Ans. 

OOPS stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.

  • OOPS is based on four main concepts: encapsulation, inheritance, polymorphism, and abstraction.

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

  • Inheritance allows a class to inherit properties and methods from another class.

  • Polymorphism allows objects...

View all Software Trainee Intern interview questions

Vendekin Technologies Interview Experiences

6 interviews found

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

I applied via Campus Placement and was interviewed before May 2022. There were 2 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 - One-on-one 

(3 Questions)

  • Q1. Introduce yourself?
  • Ans. 

    I am a software engineering graduate with experience in programming languages like Java and Python.

    • Graduated with a degree in software engineering

    • Proficient in programming languages like Java and Python

    • Experience in developing web applications using frameworks like Spring and Django

  • Answered by AI
  • Q2. What is OOPS? Write a program for palindrome
  • Ans. 

    OOPS stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.

    • OOPS is based on four main concepts: encapsulation, inheritance, polymorphism, and abstraction.

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

    • Inheritance allows a class to inherit properties and methods from another class.

    • Polymorphism allows objects of d...

  • Answered by AI
  • Q3. Write program to reverse a list
  • Ans. 

    Program to reverse a list

    • Create an empty list to store the reversed elements

    • Iterate through the original list in reverse order

    • Append each element to the new list

    • Return the new list

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Vendekin Technologies Software Trainee Intern interview:
  • OOPS
  • Java
  • React
Interview preparation tips for other job seekers - It was campus interview so it was fairly easy just prepare for OOPS and basic programming questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Some questions based on accesibility of variables,methds,guess the output
  • Q2. Hooks lifecycle
  • Q3. Sql queries of select
  • Q4. Join queries of mysql databases
  • Ans. 

    Join queries in MySQL databases allow you to combine data from multiple tables based on a related column.

    • Use JOIN keyword to combine data from two or more tables based on a related column

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Specify the columns to be retrieved using SELECT statement

  • Answered by AI
  • Q5. Find missing ele in array
  • Ans. 

    Find missing element in array of strings

    • Iterate through the array and check for missing elements

    • Use a hash map to keep track of elements present in the array

    • Compare the elements in the array with a reference array to find the missing element

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Fibonacci series on java
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with two initial numbers, usually 0 and 1

    • Add the previous two numbers to get the next number in the sequence

    • Repeat this process to generate the Fibonacci series

  • Answered by AI
  • Q2. Javascript map and forEach difference
  • Ans. 

    map creates a new array with the results of calling a provided function on every element, forEach executes a provided function once for each array element.

    • map returns a new array with the results of the provided function, forEach does not return anything

    • map does not modify the original array, forEach can modify the original array

    • Example: const numbers = [1, 2, 3]; numbers.map(num => num * 2); // returns [2, 4, 6]; numb...

  • Answered by AI
  • Q3. Your favourite Css properties need to explain and give demo of it

Interview Preparation Tips

Interview preparation tips for other job seekers - Go with typescript and react

Skills evaluated in this interview

Front end Developer Interview Questions & Answers

user image 27 Mayur Jadhav

posted on 21 Oct 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Javasctipt que basic and advance

Interview Preparation Tips

Interview preparation tips for other job seekers - Lern about javascript and reactjs
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

Aptitude and c++ combine test

Round 3 - Technical 

(2 Questions)

  • Q1. 1.swap two number without using third variable
  • Ans. 

    Swap two numbers without using a third variable in Java

    • Use XOR operation to swap two numbers without using a third variable

    • Example: int a = 5, b = 10; a = a ^ b; b = a ^ b; a = a ^ b; // Now a = 10, b = 5

  • Answered by AI
  • Q2. Remove duplicate in array
  • Ans. 

    Use a Set to remove duplicates from an array of strings.

    • Create a Set to store unique elements.

    • Iterate through the array and add each element to the Set.

    • Convert the Set back to an array to get the array without duplicates.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It's best software company and best for fresher as well experienced employee

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Tell us about your self
  • Q2. Ques on javaScript

Interview Preparation Tips

Interview preparation tips for other job seekers - learn java scipt

Top trending discussions

View All
Interview Tips & Stories
1w
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 Vendekin Technologies?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Bootstrap
  • Q2. Javascript
Are these interview questions helpful?

Interview Questionnaire 

3 Questions

  • Q1. 1. Basic html schemantics
  • Q2. 2. Pure JS
  • Q3. 3. Angular advance

Interview Preparation Tips

Interview preparation tips for other job seekers - Hard Interview process

I applied via LinkedIn

Interview Questionnaire 

1 Question

  • Q1. Questions on basic html,css,javascript,angular

Interview Preparation Tips

Interview preparation tips for other job seekers - Go specifically through the requirements mentioned in job profile before attending the interview to keep interviewer and us in the same page.

Interview Questionnaire 

1 Question

  • Q1. What is event bubling
  • Ans. 

    Event bubbling is the process of propagating an event from the innermost element to its parent elements in the DOM hierarchy.

    • Events in JavaScript are triggered on elements and then propagate up the DOM tree.

    • During event bubbling, an event triggered on a child element will also trigger on its parent elements.

    • This allows for event delegation, where a single event handler can be used for multiple elements.

    • Event.stopPropag...

  • Answered by AI

Skills evaluated in this interview

Vendekin Technologies Interview FAQs

How many rounds are there in Vendekin Technologies interview?
Vendekin Technologies interview process usually has 1-2 rounds. The most common rounds in the Vendekin Technologies interview process are Resume Shortlist, Technical and One-on-one Round.
How to prepare for Vendekin Technologies 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 Vendekin Technologies. The most common topics and skills that interviewers at Vendekin Technologies expect are Analytical skills, Client Solutions, Javascript, Management and Market Research.
What are the top questions asked in Vendekin Technologies interview?

Some of the top questions asked at the Vendekin Technologies interview -

  1. What is OOPS? Write a program for palindr...read more
  2. Write program to reverse a l...read more
  3. 1.swap two number without using third varia...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 6 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
View all

Vendekin Technologies Reviews and Ratings

based on 15 reviews

3.4/5

Rating in categories

3.2

Skill development

3.4

Work-life balance

2.7

Salary

3.1

Job security

2.8

Company culture

2.5

Promotions

3.2

Work satisfaction

Explore 15 Reviews and Ratings
Team Member
59 salaries
unlock blur

₹12.6 L/yr - ₹18 L/yr

Team Manager
6 salaries
unlock blur

₹16 L/yr - ₹22.5 L/yr

Application Developer
5 salaries
unlock blur

₹5 L/yr - ₹6.6 L/yr

Software Developer Intern
5 salaries
unlock blur

₹1.8 L/yr - ₹3 L/yr

Senior Application Developer
5 salaries
unlock blur

₹5.2 L/yr - ₹20.8 L/yr

Explore more salaries
Compare Vendekin Technologies with

TCS

3.6
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview