Upload Button Icon Add office photos

Filter interviews by

Codebuddy Interview Questions, Process, and Tips

Updated 11 Mar 2025

Top Codebuddy Interview Questions and Answers

View all 9 questions

Codebuddy Interview Experiences

Popular Designations

8 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are hooks in react
  • Ans. 

    Hooks are a new addition in React 16.8 that allow you to use state and other React features without writing a class.

    • Hooks are functions that let you use state and other React features in functional components.

    • They allow you to reuse stateful logic without changing your component hierarchy.

    • Examples of hooks include useState, useEffect, useContext, etc.

  • Answered by AI
  • Q2. DSA question asked based on array
Round 2 - Coding Test 

It was mixed test some of them are mcq, subjective and dsa question test as well

Round 3 - Technical 

(2 Questions)

  • Q1. Questions on resume
  • Q2. Asked to do react coding live

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare from the basics and also prepare for dsa questions

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)

Sopra Steria

Success to our employee's well-being? A work-life balance that's simply unbeatable.

Our employees have rated us 4 for Work-Life Balance on AmbitionBox

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. What are keys and what are their uses?
  • Ans. 

    Keys are unique identifiers for elements in a list in React, used for efficient rendering and updating.

    • Keys help React identify which items have changed, are added, or are removed in a list.

    • Keys should be unique among siblings, but don't need to be globally unique.

    • Using index as a key is not recommended as it can cause issues with component state.

    • Keys are important for performance optimization in React.

    • Example:

        {items.

  • Answered by AI
  • Q2. What is code splitting?
  • Ans. 

    Code splitting is a technique used to split a large bundle of code into smaller chunks that can be loaded on demand.

    • Code splitting helps improve performance by reducing initial load times.

    • It allows for lazy loading of code, meaning only the necessary code is loaded when needed.

    • Commonly used in React applications using dynamic imports or React.lazy().

  • Answered by AI
  • Q3. Is it advisable to use indexes as keys? If not, why?
  • Ans. 

    No, it is not advisable to use indexes as keys in React components.

    • Using indexes as keys can lead to performance issues and incorrect behavior when reordering or deleting items in a list.

    • It is recommended to use unique IDs as keys to ensure proper component rendering and reconciliation.

    • Example:

        {items.map((item, index) =>
      • {item}
      • )}

  • Answered by AI

Skills evaluated in this interview

React Js Frontend Developer Interview Questions asked at other Companies

Q1. 1. What is difference between abstract class and interface ?
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. What are your hobbies?

Interview Preparation Tips

Interview preparation tips for other job seekers - Required Tech Stack: Codebuddy values strong skills in React, JavaScript, TypeScript, and full-stack development.

Senior Software Developer Interview Questions asked at other Companies

Q1. Intersection of Linked List Problem You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list. Your task is to determine the data of the node at which they sta... read more
View answer (1)

QA Tester Interview Questions & Answers

user image Anonymous

posted on 15 Mar 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Intro , Defect life cycle, Experience,
  • Q2. Calculation related questions, Experience, Tools used, Scenario based questions
  • Q3. Experience, Tech Known, Scenario based question

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company even if receive an offer letter. They don't value our time. Getting rejection after taking 3rd round of interview is frustrating.
1. First round taken by HR
2. Second round taken by Founder "Abhishek Gupta'
3. Third round taken a guy from development team.
4. Then received an rejection email.

You are startup company and still have an expectations like a MNC.
HR was supportive throughout the entire interview process.

QA Tester Interview Questions asked at other Companies

Q1. If you are given a ball pen tested for indian market, now you have to test it for international market, what testings will you perform.?
View answer (1)

Codebuddy interview questions for popular designations

 QA Tester

 (2)

 Reactjs Developer

 (2)

 Node JS Developer

 (1)

 Senior Software Developer

 (1)

 Front end Developer

 (1)

 React Js Frontend Developer

 (1)

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. What is hoisting?
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope.

    • Variable and function declarations are hoisted to the top of their scope during the compilation phase.

    • Only declarations are hoisted, not initializations.

    • Function declarations are hoisted before variable declarations.

  • Answered by AI
  • Q2. When to use memoisation?
  • Ans. 

    Memoisation should be used to optimize performance by caching expensive function calls.

    • Use memoisation when a function is computationally expensive and its output depends only on its input parameters.

    • Memoisation can be used to cache the results of recursive function calls to avoid redundant calculations.

    • In React, useMemo hook can be used to memoize the result of a function component to prevent unnecessary re-renders.

    • Me...

  • Answered by AI
Round 2 - Assignment 

Gave to build a login form system with react

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
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Approached by Company and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. React without JSX
  • Ans. 

    React can be used without JSX by using React.createElement() method.

    • React.createElement() method can be used to create React elements without JSX.

    • JSX is just syntactic sugar for React.createElement() calls.

    • Example: React.createElement('div', {className: 'container'}, 'Hello, World!')

  • Answered by AI

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)

Jobs at Codebuddy

View all

QA Tester Interview Questions & Answers

user image Masaud Nadaf

posted on 26 Jun 2022

I applied via LinkedIn and was interviewed in May 2022. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Write bug report. On scenario
  • Ans. 

    Unable to login with correct credentials

    • Entered correct username and password

    • Clicked on login button

    • Error message displayed: 'Invalid username or password'

  • Answered by AI
  • Q2. Write test case on apple
  • Ans. 

    Test case for apple

    • Verify the apple is not rotten or spoiled

    • Check the weight and size of the apple

    • Ensure the apple is not bruised or damaged

    • Test the sweetness and texture of the apple

    • Confirm the apple is free from pesticides and chemicals

  • Answered by AI
  • Q3. Manual basic questions
  • Q4. Automation basic questions
  • Q5. Real time more questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Real time questions prepare,and all practical knowledge important

Skills evaluated in this interview

QA Tester Interview Questions asked at other Companies

Q1. If you are given a ball pen tested for indian market, now you have to test it for international market, what testings will you perform.?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Mar 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Js and Node.js questions
Round 2 - Assignment 

Had to clone a repo and complete pagination for a Get api endpoint and implement it using MongoDB aggregation

Round 3 - Coding Test 

A panel of interviewers asked questions on jwt, db schemas/design, some topics of node such as templating engines, static file serving from server, and 3 coding questions - 1. Implement pick method of lodash library 2. Question on JS objects 3. Async await related coding question

Round 4 - HR 

(1 Question)

  • Q1. HR round asked about my strengths and weaknesses, about my background, talked to the CEO as well

Node JS Developer Interview Questions asked at other Companies

Q1. 2. What are the main modules of Node.js? Explain in detail.
View answer (3)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Asked to write a general reusable form component in Reactjs, fields should be dynamic and inputs to the form should get displayed as table format.

I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic questions
  • Q2. Lifecycle, let vs bar, real dom vs shadow dom

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst Company
Even after clearing all round.. they said candidature is closed due to verification didn't match.
Contribute & help others!
anonymous
You can choose to be anonymous

Codebuddy Interview FAQs

How many rounds are there in Codebuddy interview?
Codebuddy interview process usually has 1-2 rounds. The most common rounds in the Codebuddy interview process are Technical, Assignment and Coding Test.
How to prepare for Codebuddy 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 Codebuddy. The most common topics and skills that interviewers at Codebuddy expect are Recruitment, Agile, Javascript, Scrum and Analytical.
What are the top questions asked in Codebuddy interview?

Some of the top questions asked at the Codebuddy interview -

  1. Is it advisable to use indexes as keys? If not, w...read more
  2. What are keys and what are their us...read more
  3. Write bug report. On scena...read more

Recently Viewed

DESIGNATION

JOBS

Browse jobs

Discover jobs you love

DESIGNATION

COMPANY BENEFITS

Sun Vacuum Formers

No Benefits

COMPANY BENEFITS

Acro Technologies

No Benefits

COMPANY BENEFITS

Acro Technologies

No Benefits

Tell us how to improve this page.

Codebuddy Interview Process

based on 7 interviews

Interview experience

3.3
  
Average
View more

HCLTech

A more secure future awaits you

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Whitehat jr Interview Questions
3.5
 • 262 Interviews
Unacademy Interview Questions
3.0
 • 206 Interviews
upGrad Interview Questions
3.7
 • 198 Interviews
Coding Ninjas Interview Questions
3.8
 • 49 Interviews
Pluralsight Interview Questions
3.3
 • 10 Interviews
Coursera Interview Questions
3.6
 • 8 Interviews
Udemy Interview Questions
4.4
 • 3 Interviews
View all

Codebuddy Reviews and Ratings

based on 21 reviews

3.6/5

Rating in categories

3.8

Skill development

3.5

Work-life balance

3.8

Salary

3.1

Job security

3.5

Company culture

3.4

Promotions

3.4

Work satisfaction

Explore 21 Reviews and Ratings
Project Manager
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Front end Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Node JS Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Codebuddy with

Coding Ninjas

3.8
Compare

Geekyants Software

3.5
Compare

upGrad

3.7
Compare

Whitehat jr

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