Upload Button Icon Add office photos

Cybage

Compare button icon Compare button icon Compare

Filter interviews by

Cybage Reactjs Developer Interview Questions and Answers

Updated 5 Dec 2021

Cybage Reactjs Developer Interview Experiences

2 interviews found

I applied via Naukri.com

Interview Questionnaire 

7 Questions

  • Q1. Hoisting in js?
  • Ans. 

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

    • Variables declared with var are hoisted to the top of their scope

    • Function declarations are hoisted before variables

    • Function expressions are not hoisted

    • Let and const declarations are not hoisted

  • Answered by AI
  • Q2. Promises and its working
  • Ans. 

    Promises are a way to handle asynchronous operations in JavaScript.

    • Promises represent a value that may not be available yet.

    • They have three states: pending, fulfilled, and rejected.

    • Promises can be chained using .then() and .catch() methods.

    • They help avoid callback hell and make code more readable.

    • Example: new Promise((resolve, reject) => { ... }).then(result => { ... }).catch(error => { ... })

  • Answered by AI
  • Q3. Redux questions
  • Q4. Asking coding problems and its answers, gives us code and asked to findout errors in code.
  • Q5. ES6 features and its use where and why?
  • Ans. 

    ES6 features are modern JavaScript syntax and features that make code more concise and readable.

    • Arrow functions for concise function syntax

    • Template literals for easier string interpolation

    • Let and const for block-scoped variables

    • Destructuring for easily extracting values from objects and arrays

    • Spread and rest operators for easily manipulating arrays and objects

    • Classes for object-oriented programming

    • Modules for better co...

  • Answered by AI
  • Q6. Asked to write Regular Expressions
  • Q7. Gives 1 coding problem to solve in javascript.
  • Ans. 

    Given an array of integers, return the sum of all even numbers.

    • Use Array.reduce() method to iterate over the array and sum the even numbers.

    • Use the modulo operator (%) to check if a number is even.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly they asked me coding questions of JavaScript , promises, Async-await ,Javascript array methods etc and API related questions.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic javascript questions,React basic questions related to context APIs ,hooks.Validation in react

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st round technical one.Basic questions based on javascript and react.2nd round is coding round.

Reactjs Developer Interview Questions Asked at Other Companies

Q1. Implement a counter with increment and decrement buttons. Include ... read more
asked in Java R & D
Q2. What are Call, apply and bind methods, what is currying in JavaSc ... read more
Q3. Display a list of products using the flexbox layout. Create a sor ... read more
asked in Infosys
Q4. What is the difference between a development dependency and a reg ... read more
asked in NeoSOFT
Q5. Develop a Progress Bar React Component from scratch, without usin ... read more

Top trending discussions

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

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. Basic JavaScript
  • Q2. Agail methology and scrum
  • Q3. Practical test. JavaScript, react

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

Round 1 - Technical 

(1 Question)

  • Q1. React Component updates promises in js fetch and axios api redux architecture redux reducers

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn Js concepts that integrates with React
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Dsa question were asked

Round 2 - Aptitude Test 

Question related to profit loss

Reactjs Developer Interview Questions & Answers

Coforge user image Jeetu gopal chaudhari

posted on 17 Apr 2025

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. JavaScript coding questions
  • Q2. React coding questions
Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-
Round 1 - Coding Test 

React and Javascript

Round 2 - Group Discussion 

Coding test with technical discussion

Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. All Basic questions related DOM, Virtual dom, DOM Manipulation, Redux Thunk saga, data flow, CSS different question like different way to place element in center, DOM node space, hidden/none different. In...

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush out all related skill both react and JS
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Event loop
  • Ans. 

    Event loop is a mechanism in JavaScript that allows for asynchronous operations to be executed in a non-blocking way.

    • Event loop is responsible for handling asynchronous operations in JavaScript.

    • It allows for non-blocking execution of code by moving asynchronous tasks to the event queue.

    • Event loop continuously checks the call stack and the event queue, moving tasks from the queue to the stack when the stack is empty.

    • Exa...

  • Answered by AI
  • Q2. What are closures
  • Ans. 

    Closures are functions that have access to their own scope, as well as the scope in which they were defined.

    • Closures allow functions to access variables from their outer scope even after the outer function has finished executing.

    • They are commonly used to create private variables in JavaScript.

    • Closures are created whenever a function is defined within another function.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Explain about Event Loop
  • Ans. 

    Event Loop is a mechanism in JavaScript that allows asynchronous operations to be executed in a non-blocking way.

    • Event Loop is responsible for handling the execution of code, callbacks, and I/O operations in JavaScript.

    • It continuously checks the call stack for any pending tasks and executes them in a sequential manner.

    • Event Loop ensures that the JavaScript engine is not blocked by long-running tasks, allowing for a smo...

  • Answered by AI
  • Q2. Explain about Promises in Javascript
  • Ans. 

    Promises in JavaScript 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: const myPromise = new Promise((resolve, reject) => { ... });

  • Answered by AI

Skills evaluated in this interview

Cybage Interview FAQs

How to prepare for Cybage Reactjs Developer 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 Cybage. The most common topics and skills that interviewers at Cybage expect are HTML, CSS, Redux, Javascript and Application Development.
What are the top questions asked in Cybage Reactjs Developer interview?

Some of the top questions asked at the Cybage Reactjs Developer interview -

  1. ES6 features and its use where and w...read more
  2. gives 1 coding problem to solve in javascri...read more
  3. Hoisting in ...read more

Tell us how to improve this page.

Cybage Reactjs Developer Salary
based on 4 salaries
₹8.2 L/yr - ₹12.9 L/yr
90% more than the average Reactjs Developer Salary in India
View more details

Cybage Reactjs Developer Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

3.0

Salary

3.3

Job security

5.0

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 2 Reviews and Ratings
React JS Developer

Pune

7-11 Yrs

Not Disclosed

Explore more jobs
Software Engineer
3.2k salaries
unlock blur

₹4.2 L/yr - ₹13 L/yr

Senior Software Engineer
2.1k salaries
unlock blur

₹11.3 L/yr - ₹20.6 L/yr

QA Engineer
1.1k salaries
unlock blur

₹5 L/yr - ₹10.2 L/yr

Senior QA Engineer
791 salaries
unlock blur

₹8.9 L/yr - ₹15.6 L/yr

System Analyst
778 salaries
unlock blur

₹15.2 L/yr - ₹25.7 L/yr

Explore more salaries
Compare Cybage with

Mphasis

3.4
Compare

L&T Technology Services

3.3
Compare

Coforge

3.3
Compare

eClerx

3.2
Compare
write
Share an Interview