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
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 (1)
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:
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 - 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 ArrayYou have been given an integer array/list 'ARR' of size 'N'. Write a solution to check if it could become non-decreasing by modifying at most 1 element. We define an array as non-decreasing, if ARR[i] <= ARR[i + 1] ho... read more
View answer (6)
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)

Vendekin Technologies interview questions for popular designations

ย Front end Developer

ย (2)

ย Java Developer Intern

ย (1)

ย Member Technical Team

ย (1)

ย Reactjs Developer

ย (1)

ย Software Trainee Intern

ย (1)

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - 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 ArrayYou have been given an integer array/list 'ARR' of size 'N'. Write a solution to check if it could become non-decreasing by modifying at most 1 element. We define an array as non-decreasing, if ARR[i] <= ARR[i + 1] ho... read more
View answer (6)
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:
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 - 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

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

I applied via Naukri.com and was interviewed in Dec 2024.ย There was 1 interview round.

Round 1 - One-on-oneย 

(5 Questions)

  • Q1. How many variance in sap?
  • Ans. 

    The number of variances in SAP can vary depending on the specific processes and transactions being analyzed.

    • The number of variances in SAP can be influenced by factors such as data entry errors, system glitches, or discrepancies in invoice processing.

    • Variances in SAP may be identified through reconciliation processes, exception reports, or manual reviews of accounts payable transactions.

    • Examples of variances in SAP inc...

  • Answered by AI
  • Q2. We cac explain the all accounts receivable and accounts payable
  • Ans. 

    Accounts receivable and accounts payable are two important aspects of a company's financial operations.

    • Accounts receivable refers to money owed to a company by its customers for goods or services provided.

    • Accounts payable refers to money owed by a company to its suppliers or vendors for goods or services received.

    • Accounts receivable is an asset on the balance sheet, while accounts payable is a liability.

    • Managing accoun...

  • Answered by AI
  • Q3. What is the cost element and cost center?
  • Ans. 

    Cost element and cost center are key concepts in accounting for tracking and allocating costs within an organization.

    • Cost element refers to the specific types of costs incurred by an organization, such as materials, labor, or overhead.

    • Cost center is a specific department, team, or function within an organization that is responsible for incurring costs.

    • Cost elements are assigned to cost centers to track and allocate cos...

  • Answered by AI
  • Q4. How many we have currencies in sap?
  • Ans. 

    SAP supports over 160 currencies worldwide.

    • SAP supports over 160 currencies for global transactions.

    • Currencies can be configured in SAP using transaction code OB22.

    • Each currency is assigned a unique currency code (e.g. USD for US Dollar, EUR for Euro).

  • Answered by AI
  • Q5. How many types of projects
  • Ans. 

    There are various types of projects, including internal projects, external projects, research projects, and development projects.

    • Internal projects focus on improving processes within the organization.

    • External projects involve working with external partners or clients.

    • Research projects aim to gather data and analyze findings.

    • Development projects focus on creating new products or services.

    • Examples: IT system implementati...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture P2P Accounts Payable Executive interview:
  • mba fresher
Interview preparation tips for other job seekers - 1. Self-Reflection & Goal Setting
* Identify Your Strengths & Weaknesses:
* Strengths: What are you good at? What do you enjoy doing? What are your unique skills and talents?
* Weaknesses: What areas do you need to improve? What are your biggest challenges?
* Define Your Career Goals:
* Short-term: What kind of job are you looking for? What industry are you interested in? What salary range are you targeting?
* Long-term: What is your ideal career path? What are your long-term professional aspirations?
2. Enhance Your Job Search Strategy
* Build a Strong Online Presence:
* LinkedIn: Create a professional and engaging LinkedIn profile.
* Portfolio/Website: If applicable, showcase your work through a portfolio or personal website.
* Network, Network, Network:
* Attend industry events: Conferences, meetups, and workshops.
* Informational interviews: Connect with people working in your field of interest.
* Leverage your existing network: Let your friends, family, and former colleagues know you're job searching.
* Tailor Your Resume & Cover Letter:
* Customize: Tailor your resume and cover letter to each specific job application.
* Keywords: Use keywords from the job description to increase your chances of getting noticed by Applicant Tracking Systems (ATS).
* Quantify your achievements: Use numbers and data to demonstrate your accomplishments.
* Master the Job Interview:
* Practice: Prepare for common interview questions (behavioral, technical, etc.).
* Research: Learn about the company and the role you're interviewing for.
* Ask insightful questions: Demonstrate your interest and engagement.
3. Continuous Improvement
* Skill Development:
* Online courses: Platforms like Coursera, Udemy, and edX offer a wide range of courses.
* Certifications: Obtain relevant industry certifications to enhance your credentials.
* Volunteer work: Gain valuable experience and build your network.
* Stay Updated:
* Industry news: Keep up-to-date with the latest trends and developments in your field.
* Job market trends: Monitor job boards and industry publications to understand the current job market.
Key Advice:
* Be patient and persistent: The job search process can be challenging, but don't give up.
* Stay positive and maintain a growth mindset: Focus on your strengths and opportunities for improvement.
* Take care of yourself: Prioritize your physical and mental well-being during your job search.
Remember: The job market is constantly evolving. Be adaptable, proactive, and resourceful in your job search efforts. Good luck!
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024.ย There were 13 interview rounds.

Round 1 - Technicalย 

(2 Questions)

  • Q1. What is the Entity-Relationship (ER) model?
  • Ans. 

    The Entity-Relationship (ER) model is a data model used to describe the relationships between entities in a database.

    • Entities are objects or concepts in the real world that can be distinguished from each other.

    • Relationships describe how entities are related to each other.

    • Attributes are properties that describe entities and relationships.

    • ER diagrams visually represent the ER model, showing entities, relationships, and a...

  • Answered by AI
  • Q2. What are the advantages of using threads compared to processes?
  • Ans. 

    Threads are lighter weight than processes, share memory space, and are more efficient for multitasking.

    • Threads share the same memory space, making communication between them faster and more efficient.

    • Threads are lighter weight than processes, as they share resources such as memory and file descriptors.

    • Threads are more efficient for multitasking, as they can run concurrently within the same process.

    • Threads are easier to...

  • Answered by AI
Round 2 - Coding Testย 

Google primarily focuses on pure data structures and algorithms-based questions during coding interviews. Other computer science core topics are typically not covered in Google's interviews. Therefore, it is essential to be proficient in data structures and algorithms to succeed in the Google coding interview.

Round 3 - Aptitude Testย 

An aptitude test is a tool used to evaluate a person's skills, abilities, and potential for success in a specific role or activity.

Round 4 - Group Discussionย 

Group discussion is a process of exchanging ideas and opinions among individuals on a specific topic. It is a structured form of communication in which participants have the opportunity to express their views while also listening to others' perspectives on the same subject.

Round 5 - HRย 

(2 Questions)

  • Q1. What are your strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving skills and attention to detail. My weaknesses include time management and public speaking.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Weaknesses: time management

    • Weaknesses: public speaking

  • Answered by AI
  • Q2. What reasons can you provide for why we should consider hiring you?
  • Ans. 

    I have a strong foundation in web development, a passion for learning, and a proven track record of delivering high-quality projects.

    • I have a solid understanding of HTML, CSS, and JavaScript

    • I am proficient in using various web development tools and frameworks such as React and Node.js

    • I have successfully completed several web development projects, including a responsive e-commerce website for a local business

  • Answered by AI
Round 6 - Assignmentย 

An assignment is a task or piece of work that you are given to complete, particularly as part of your job or studies. The assignment for the course includes written assignments and practical tests, similar to tasks, work, jobs, or charges.

Round 7 - Case Studyย 

A case study is a detailed description and assessment of a specific situation in the real world, created for the purpose of deriving generalized insights and understanding. It can focus on an individual, a group of people, an organization, or an event, among other subjects.

Round 8 - One-on-oneย 

(2 Questions)

  • Q1. What do you consider your greatest accomplishment?
  • Ans. 

    My greatest accomplishment was successfully leading a team to launch a new website for a major client ahead of schedule.

    • Successfully led a team to launch a new website

    • Completed the project ahead of schedule

    • Received positive feedback from the client

  • Answered by AI
  • Q2. What factors motivate you in your professional life?
  • Ans. 

    I am motivated by challenges, learning opportunities, and the ability to make a positive impact.

    • Challenges push me to grow and improve my skills.

    • Learning opportunities allow me to stay updated with the latest technologies and trends.

    • Making a positive impact through my work gives me a sense of fulfillment and purpose.

  • Answered by AI
Round 9 - HRย 

(2 Questions)

  • Q1. What does your ideal work environment look like?
  • Ans. 

    My ideal work environment is a collaborative space with supportive colleagues, opportunities for growth, and a healthy work-life balance.

    • Collaborative team environment where ideas are shared and valued

    • Supportive colleagues who are willing to help and provide feedback

    • Opportunities for growth and learning new technologies

    • Healthy work-life balance with flexible hours and remote work options

  • Answered by AI
  • Q2. How would you impact employee retention?
  • Ans. 

    By creating a positive work environment, offering growth opportunities, and implementing employee recognition programs.

    • Creating a positive work environment through open communication and support

    • Offering growth opportunities such as training programs and career advancement

    • Implementing employee recognition programs to acknowledge and reward hard work

    • Providing competitive salaries and benefits to attract and retain top ta

  • Answered by AI
Round 10 - Technicalย 

(2 Questions)

  • Q1. What are real-time operating systems?
  • Ans. 

    Real-time operating systems are designed to provide predictable response times and prioritize tasks based on timing constraints.

    • Real-time operating systems prioritize tasks based on timing constraints

    • They are designed to provide predictable response times

    • Examples include VxWorks, QNX, and FreeRTOS

  • Answered by AI
  • Q2. Are the applicants first asked several questions regarding data structures and algorithms?
Round 11 - HRย 

(2 Questions)

  • Q1. What topics are typically discussed during the final round of interviews, particularly regarding salary expectations, working hours, and other job requirements?
  • Q2. Are you comfortable working night shifts, considering that many roles at Genpact support international clients?
  • Ans. 

    Yes, I am comfortable working night shifts to support international clients.

    • I have previous experience working night shifts in a customer service role.

    • I am a night owl and tend to be more productive during late hours.

    • I understand the importance of supporting international clients and am willing to adjust my schedule accordingly.

  • Answered by AI
Round 12 - Process associateย 

(2 Questions)

  • Q1. A process associate is crucial in ensuring the smooth operation of various business processes across different industries
  • Q2. What are the operational tasks necessary to maintain efficiency and quality?
  • Ans. 

    Operational tasks for maintaining efficiency and quality include regular testing, monitoring performance, updating software, and implementing best practices.

    • Regularly test website functionality to ensure it is working properly

    • Monitor website performance metrics such as load times and user experience

    • Update software and plugins to the latest versions to prevent security vulnerabilities

    • Implement best practices for coding,

  • Answered by AI
Round 13 - Mangerย 

(2 Questions)

  • Q1. How can you prepare examples demonstrating your leadership, conflict resolution, and prioritization skills to excel in a managerial round interview?
  • Ans. 

    Prepare examples showcasing leadership, conflict resolution, and prioritization skills for a managerial round interview.

    • Leadership: Discuss a project where you led a team to success, highlighting your ability to motivate and guide others.

    • Conflict Resolution: Share a situation where you successfully resolved a conflict within a team or project, emphasizing your communication and problem-solving skills.

    • Prioritization: Ta...

  • Answered by AI
  • Q2. How do you demonstrate adaptability, leadership, and a commitment to fostering a positive work environment?
  • Ans. 

    I demonstrate adaptability, leadership, and commitment by actively seeking feedback, taking on new challenges, and fostering collaboration within the team.

    • Seek feedback from colleagues and supervisors to continuously improve

    • Volunteer for new projects or tasks to expand skills and knowledge

    • Encourage open communication and teamwork among team members

    • Lead by example by showing a positive attitude and willingness to help o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Update your resume, customize your application, and be ready to show kindness.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technicalย 

(2 Questions)

  • Q1. Azure cloud platform tech
  • Q2. Informatica tech stack ques
Round 2 - Technicalย 

(2 Questions)

  • Q1. Adf tech stack que
  • Q2. Scd type 2 implementation
  • Ans. 

    SCD Type 2 implementation involves tracking historical changes in data by creating new records for each change.

    • Identify the columns that need to be tracked for changes

    • Add effective start and end dates to track the validity of each record

    • Insert new records for changes and update end dates for previous records

    • Maintain a surrogate key to uniquely identify each version of the record

  • Answered by AI
Round 3 - Technicalย 

(2 Questions)

  • Q1. Dw related que ans
  • Q2. Solution design related que
Round 4 - HRย 

(2 Questions)

  • Q1. Aspiration from my end
  • Q2. How soon can join
  • Ans. 

    I can join the team within 2 weeks.

    • I can start within 2 weeks of receiving the offer.

    • I need to give notice to my current employer.

    • I may need to relocate, which could affect my start date.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join or even I would suggest not to apply or give interview to this pathetic company. I have cleared all my 4 rounds of interview including HR out of which 3 technical and 1 HR. 3 held on video conferencing and one face to face for which I have travelled almost 40 kms from my current location and they said without face to face they cannot proceed hence I had no option left but to travel, then when I entered into the office again put a laptop infront of me which is again video conferencing then I didn't understand why exactly they called me if they want to have it over video online.

Then after putting my lot of time and efforts when finally it comes to release the offer, then they stop picking up the calls and stop responding and the final excuses which I got from them for not releasing the offer is that their software will not allow them to release any offer which is more that 2 days of joining.

Such a pathetic company who even don't know that atleast if you are not releasing the offer, it's your duty to atleast tell the person that either they are not able to provide the compensation as discussed or they are looking parallelly for someone who can settle in less compensation.

Due to all this I have wasted almost my 3-4 weeks of time expecting that I will receive the offer, and didn't focus on other organisations which was ready to provide slightly lower than this.

Hence it's a total scam which is going here suggesting not to get trapped otherwise you will not only waste your time but also other good opportunities as well.

It's a total boycott for me, expecting the same from your end as well, so that they will understand that playing with someone's job is not a joke.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Testย 

For example, a โ‚น10 LPA CTC could mean an in-hand salary of โ‚น70,000โ€“โ‚น75,000 per month, depending on deductions and benefits.

โœจ ๐—ฃ๐—ฟ๐—ผ ๐—ง๐—ถ๐—ฝ: Always request a detailed salary structure during negotiationsโ€”itโ€™s your roadmap to making informed decisions

Round 2 - Coding Testย 

๐—–๐—ง๐—– ๐˜ƒ๐˜€ ๐—œ๐—ป-๐—›๐—ฎ๐—ป๐—ฑ ๐—ฆ๐—ฎ๐—น๐—ฎ๐—ฟ๐˜†: ๐—ง๐—ต๐—ฒ ๐—ฅ๐—ฒ๐—ฎ๐—น๐—ถ๐˜๐˜† ๐—–๐—ต๐—ฒ๐—ฐ๐—ธ ๐—˜๐˜ƒ๐—ฒ๐—ฟ๐˜† ๐—ฃ๐—ฟ๐—ผ๐—ณ๐—ฒ๐˜€๐˜€๐—ถ๐—ผ๐—ป๐—ฎ๐—น ๐—ก๐—ฒ๐—ฒ๐—ฑ๐˜€!

Weโ€™ve all been thereโ€”excitedly discussing job offers and hearing about the impressive CTC (Cost to Company). But when payday arrives, you wonder

Round 3 - Technicalย 

(2 Questions)

  • Q1. 2๏ธโƒฃ ๐—œ๐—ป-๐—›๐—ฎ๐—ป๐—ฑ ๐—ฆ๐—ฎ๐—น๐—ฎ๐—ฟ๐˜†: This is the actual amount you take home after deductions like: โ€ข Employeeโ€™s contribution to PF โ€ข Income tax (TDS) โ€ข Professional tax
  • Q2. ๐—–๐—ง๐—– ๐˜ƒ๐˜€ ๐—œ๐—ป-๐—›๐—ฎ๐—ป๐—ฑ ๐—ฆ๐—ฎ๐—น๐—ฎ๐—ฟ๐˜†: ๐—ง๐—ต๐—ฒ ๐—ฅ๐—ฒ๐—ฎ๐—น๐—ถ๐˜๐˜† ๐—–๐—ต๐—ฒ๐—ฐ๐—ธ ๐—˜๐˜ƒ๐—ฒ๐—ฟ๐˜† ๐—ฃ๐—ฟ๐—ผ๐—ณ๐—ฒ๐˜€๐˜€๐—ถ๐—ผ๐—ป๐—ฎ๐—น ๐—ก๐—ฒ๐—ฒ๐—ฑ๐˜€! Weโ€™ve all been thereโ€”excitedly discussing job offers and hearing about the impressi...

Interview Preparation Tips

Interview preparation tips for other job seekers - ๐—–๐—ง๐—– ๐˜ƒ๐˜€ ๐—œ๐—ป-๐—›๐—ฎ๐—ป๐—ฑ ๐—ฆ๐—ฎ๐—น๐—ฎ๐—ฟ๐˜†: ๐—ง๐—ต๐—ฒ ๐—ฅ๐—ฒ๐—ฎ๐—น๐—ถ๐˜๐˜† ๐—–๐—ต๐—ฒ๐—ฐ๐—ธ ๐—˜๐˜ƒ๐—ฒ๐—ฟ๐˜† ๐—ฃ๐—ฟ๐—ผ๐—ณ๐—ฒ๐˜€๐˜€๐—ถ๐—ผ๐—ป๐—ฎ๐—น ๐—ก๐—ฒ๐—ฒ๐—ฑ๐˜€!

Weโ€™ve all been thereโ€”excitedly discussing job offers and hearing about the impressive CTC (Cost to Company). But when payday arrives, you wonder:

โ€œ๐˜ž๐˜ฉ๐˜บ ๐˜ฅ๐˜ฐ๐˜ฆ๐˜ด๐˜ฏโ€™๐˜ต ๐˜ฎ๐˜บ ๐˜ช๐˜ฏ-๐˜ฉ๐˜ข๐˜ฏ๐˜ฅ ๐˜ด๐˜ข๐˜ญ๐˜ข๐˜ณ๐˜บ ๐˜ฎ๐˜ข๐˜ต๐˜ค๐˜ฉ ๐˜ต๐˜ฉ๐˜ฆ ๐˜Š๐˜›๐˜Š ๐˜ ๐˜ธ๐˜ข๐˜ด ๐˜ฑ๐˜ณ๐˜ฐ๐˜ฎ๐˜ช๐˜ด๐˜ฆ๐˜ฅ?โ€

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.

People are getting interviews through

based on 3 Vendekin Technologies interviews
Job Portal
Campus Placement
33%
33%
34% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
ย โ€ขย 10.3k Interviews
Swiggy Interview Questions
3.8
ย โ€ขย 423 Interviews
BigBasket Interview Questions
3.9
ย โ€ขย 346 Interviews
Zomato Interview Questions
3.8
ย โ€ขย 314 Interviews
Blinkit Interview Questions
3.7
ย โ€ขย 173 Interviews
Uber Interview Questions
4.2
ย โ€ขย 160 Interviews
Ola Cabs Interview Questions
3.4
ย โ€ขย 141 Interviews
Urban Company Interview Questions
3.5
ย โ€ขย 133 Interviews
Dunzo Interview Questions
3.4
ย โ€ขย 75 Interviews
Cult.fit Interview Questions
3.7
ย โ€ขย 68 Interviews
View all

Vendekin Technologies Reviews and Ratings

based on 12 reviews

3.3/5

Rating in categories

3.1

Skill development

3.3

Work-Life balance

2.4

Salary & Benefits

2.9

Job Security

2.7

Company culture

2.1

Promotions/Appraisal

3.0

Work Satisfaction

Explore 12 Reviews and Ratings
Senior Application Developer
7 salaries
unlock blur

โ‚น2.6 L/yr - โ‚น7.6 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

Software Developer
4 salaries
unlock blur

โ‚น1 L/yr - โ‚น3 L/yr

Explore more salaries
Compare Vendekin Technologies with

Swiggy

3.8
Compare

Zomato

3.8
Compare

Cult.fit

3.7
Compare

BigBasket

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview