Upload Button Icon Add office photos

Filter interviews by

Vendekin Technologies Interview Questions, Process, and Tips

Updated 28 Mar 2024

Top Vendekin Technologies Interview Questions and Answers

View all 8 questions

Vendekin Technologies Interview Experiences

Popular Designations

6 interviews found

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

Java Developer Intern Interview Questions asked at other Companies

Q1. What is java ? Whay is java is platform independent language? Why is java not a pure object oriented language? How is java different from c++ ?
View answer (2)
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

Reactjs Developer Interview Questions asked at other Companies

Q1. Implement counter such that it has 2 buttons to increment and decrement the values and also add a input field such that, whatever input is given, the value should be to that and value should should be decreased and increased from the input ... read more
View answer (2)
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

Member Technical Team Interview Questions asked at other Companies

Q1. Javascript map and forEach difference
View answer (1)

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

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)

Vendekin Technologies interview questions for popular designations

 Front end Developer

 (2)

 Member Technical Team

 (1)

 Java Developer Intern

 (1)

 Reactjs Developer

 (1)

 Software Trainee Intern

 (1)

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

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)
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

Software Trainee Intern Interview Questions asked at other Companies

Q1. Simply write the code for quick search - by using the method of divide and conquer, using java language
View answer (1)

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Javascript ES6 HTML and Reactjs

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Javascript more

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 

2 Questions

  • Q1. Bootstrap
  • Q2. Javascript

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 360 minutes
Round difficulty - Medium

Basically TCS conduct its flagship event named as CODEVITA . And it offers Internship to prefinal (3rd )year students .

  • Q1. 

    Allocate Books Problem Statement

    Given an array of integers arr, where arr[i] represents the number of pages in the i-th book, and an integer m representing the number of students, allocate all the books ...

  • Ans. 

    Allocate books to students in a way that minimizes the maximum number of pages assigned to a student.

    • Iterate through possible allocations and calculate the maximum pages assigned to a student.

    • Find the minimum of these maximums to get the optimal allocation.

    • Return the minimum pages allocated in each test case, or -1 if not possible.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaMust be doing B.TECHTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Data Structure , Algorithms ,DBMS , OOPs ,OSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Good understanding of Data Structure and Algorithms 
Tip 2 : Be clear in your Core Subjects.
Tip 3 : Do at least 1 good Project .
Tip 4 : Be humble and speak truth .

Application resume tips for other job seekers

Tip 1 : Simple and Crisp .
Tip 2 : Do host your project and mention the link in the resume .
Tip 3 : Single Page

Final outcome of the interviewSelected

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.

Vendekin Technologies Interview Process

based on 6 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k Interviews
Accenture Interview Questions
3.8
 • 8.3k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.7k Interviews
Amazon Interview Questions
4.0
 • 5.1k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
View all

Vendekin Technologies Reviews and Ratings

based on 14 reviews

3.3/5

Rating in categories

3.1

Skill development

3.3

Work-life balance

2.6

Salary

3.1

Job security

2.8

Company culture

2.4

Promotions

3.1

Work satisfaction

Explore 14 Reviews and Ratings
Team Member
15 salaries
unlock blur

₹12.6 L/yr - ₹18 L/yr

Application Developer
5 salaries
unlock blur

₹5 L/yr - ₹6.6 L/yr

Automation Test Engineer
5 salaries
unlock blur

₹4 L/yr - ₹5.7 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 - ₹7.6 L/yr

Explore more salaries
Compare Vendekin Technologies with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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