Upload Button Icon Add office photos

Filter interviews by

Vendekin Technologies Reactjs Developer Interview Questions and Answers

Updated 16 Feb 2024

Vendekin Technologies Reactjs Developer Interview Experiences

1 interview 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

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Approached by Company and was interviewed in Sep 2023. 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. What are promises
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

    • Example: fetch() API returns a promise that resolves with the response to a request.

  • Answered by AI
  • Q2. How js handle asynchronous codes
  • Ans. 

    JavaScript handles asynchronous codes using callbacks, promises, and async/await.

    • Callbacks are functions passed as arguments to another function to be executed later.

    • Promises represent the eventual completion (or failure) of an asynchronous operation and allow chaining of multiple asynchronous operations.

    • Async/await is a modern way of handling asynchronous code that makes it look synchronous.

    • Example: Using setTimeout w...

  • Answered by AI
  • Q3. Stair climbing leetcode question

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Dec 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 - Technical 

(4 Questions)

  • Q1. Some of important javascript questions
  • Q2. On react js like hooks, virtual dom,html5 and html,state, useMemo, useCallback,useEffect
  • Q3. Box model, css selector
  • Q4. What are fragments in react js
  • Ans. 

    Fragments in React.js are used to group multiple elements without adding an extra node to the DOM.

    • Fragments are a way to group multiple elements without using a wrapper element.

    • They help in avoiding unnecessary divs in the DOM.

    • Fragments can improve performance by reducing the number of DOM nodes.

    • They are useful when returning multiple elements from a component's render method.

    • Fragments can be written using the

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - just prepare basic of front end technology like html,css,javascript,es6

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(1 Question)

  • Q1. Basic Question JS , React JS , Redux

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with basics.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic Javascript, React Js question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

React js and JavaScript scenarios based problems.

Interview Preparation Tips

Topics to prepare for TCS Reactjs Developer interview:
  • Javascript
  • React.Js
  • Redux
  • HTML
  • CSS

I applied via Approached by Company and was interviewed in Apr 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Scenario based and General ReactJS and javascript Questions.

Interview Preparation Tips

Topics to prepare for TCS Reactjs Developer interview:
  • Javascript
  • React.Js
  • CSS
Interview preparation tips for other job seekers - It's kinda techno-managerial round, where questions were about your project, role, daily routines and again javascript and react questions.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
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 - Technical 

(2 Questions)

  • Q1. About CI-CD , JS browser working ,
  • Q2. React basics like working and jsx

I applied via Naukri.com and was interviewed in Aug 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 - Technical 

(4 Questions)

  • Q1. What is a single page appliction?
  • Ans. 

    A single page application is a web application that loads once and dynamically updates the content without refreshing the page.

    • Loads once and dynamically updates content

    • No page refreshes

    • Uses JavaScript frameworks like React to handle routing and rendering

    • Improves user experience by providing a seamless and responsive interface

  • Answered by AI
  • Q2. What are the advantages of react?
  • Ans. 

    React provides efficient and flexible UI rendering, component reusability, and easy integration with other libraries.

    • Virtual DOM allows for faster rendering and improved performance

    • Component-based architecture promotes reusability and modularity

    • Easy integration with other libraries and frameworks like Redux and React Native

    • JSX syntax allows for easy creation of complex UI components

    • React community provides a vast array

  • Answered by AI
  • Q3. What is useMemo and its usecases
  • Ans. 

    useMemo is a hook in React that memoizes the result of a function and returns the cached value on subsequent renders.

    • useMemo is used to optimize performance by avoiding unnecessary re-renders.

    • It takes two arguments: a function and an array of dependencies.

    • The function is only re-executed if any of the dependencies change.

    • Common use cases include expensive calculations, filtering, and sorting.

    • Example: useMemo(() => calc

  • Answered by AI
  • Q4. What are functional components
  • Ans. 

    Functional components are a type of React component that are defined as a function rather than a class.

    • They are simpler and easier to read than class components.

    • They don't have state or lifecycle methods.

    • They receive props as an argument and return JSX.

    • They are often used for presentational components.

    • They can use React hooks to manage state and lifecycle.

    • Example: const MyComponent = (props) => { return

      {props.text}
      }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare allbasics of ReactJs and Hooks.Know well about you project and present with confidence

Skills evaluated in this interview

Reactjs Developer Interview Questions & Answers

TCS user image GATHPA HARSHINI REDDY

posted on 5 Jul 2024

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

I applied via Job Portal and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Difference between let,var and const
  • Ans. 

    let, var, and const are all used for variable declaration in JavaScript, but they have different scopes and behaviors.

    • let has block scope, var has function scope, and const is a constant that cannot be reassigned.

    • Using let allows you to declare variables that are limited to the scope of a block statement.

    • var variables are hoisted to the top of their function scope.

    • const variables must be initialized with a value and ca

  • Answered by AI

Skills evaluated in this interview

Vendekin Technologies Interview FAQs

How many rounds are there in Vendekin Technologies Reactjs Developer interview?
Vendekin Technologies interview process usually has 1 rounds. The most common rounds in the Vendekin Technologies interview process are Technical.
What are the top questions asked in Vendekin Technologies Reactjs Developer interview?

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

  1. join queries of mysql databa...read more
  2. find missing ele in ar...read more
  3. some questions based on accesibility of variables,methds,guess the out...read more

Tell us how to improve this page.

Vendekin Technologies Reactjs Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Application Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Automation Test Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer Intern
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Application Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 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
Did you find this page helpful?
Yes No
write
Share an Interview