Upload Button Icon Add office photos

Filter interviews by

Cybage Reactjs Developer Interview Questions, Process, and Tips

Updated 5 Dec 2021

Top Cybage Reactjs Developer Interview Questions and Answers

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 counter such that it has 2 buttons to increment and dec ... read more
asked in Accenture
Q2. How do you make a page responsive. Bootstrap layouts and alerts
asked in Java R & D
Q3. What are Call, apply and bind methods, what is currying in JavaSc ... read more
Q4. what is ES6 feature small coding on how let,var,const works javas ... read more
asked in Metafic
Q5. Write code for functional component to call an API and show a lis ... read more

Interview questions from similar companies

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

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Write progame for palindrome

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

I applied via Company Website and was interviewed in Nov 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 - HR 

(5 Questions)

  • Q1. JavaScript callback?
  • Q2. What is useState?
  • Ans. 

    useState is a hook in React that allows functional components to have state.

    • useState is a built-in hook in React.

    • It allows functional components to have state.

    • It returns an array with two elements: the current state value and a function to update the state.

    • The initial state can be passed as an argument to useState.

    • The state can be of any data type, such as a string, number, boolean, or object.

    • Example: const [count, set

  • Answered by AI
  • Q3. What is closure in JavaScript?
  • Ans. 

    Closure is a feature in JavaScript that allows a function to access variables from its outer scope even after the function has finished executing.

    • Closure is created when a function is defined inside another function.

    • The inner function has access to the variables and parameters of the outer function.

    • The inner function forms a closure with the outer function, preserving the state of the outer function's variables.

    • Closure...

  • Answered by AI
  • Q4. JavaScript promise?
  • Q5. What are props in react?
  • Ans. 

    Props are read-only properties that are passed from a parent component to a child component in React.

    • Props allow data to be passed between components in a unidirectional flow.

    • Props are immutable and cannot be modified by the child component.

    • Props can be used to customize the behavior or appearance of a component.

    • Props are accessed using the 'this.props' syntax in class components or as function arguments in functional

  • Answered by AI

Skills evaluated in this interview

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

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 Questionnaire 

3 Questions

  • Q1. Basic JavaScript
  • Q2. Agail methology and scrum
  • Q3. Practical test. JavaScript, react
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It's walkin, so they conducted 1 technical mcqs round.

Round 2 - Technical 

(11 Questions)

  • Q1. Multi threading
  • Q2. Internal working of hashmap
  • Ans. 

    HashMap in Java is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values based on keys.

    • HashMap uses an array of buckets to store key-value pairs.

    • Keys are hashed to determine the index in the array where the key-value pair will be stored.

    • In case of hash collisions, a linked list or a balanced tree is used to store multiple key-value pairs in the same bucket.

    • HashMap allows null keys...

  • Answered by AI
  • Q3. Spring batch related
  • Q4. Non repeating characters in a array
  • Ans. 

    Function to find and return all non-repeating characters in an array of strings.

    • Iterate through the array and count the occurrences of each character using a HashMap.

    • Then iterate through the array again and check if the count of each character is 1, if so add it to the result list.

    • Return the list of non-repeating characters.

  • Answered by AI
  • Q5. 3rd highest salary
  • Ans. 

    To find the 3rd highest salary in a database, we can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.

    • Use a SQL query with 'ORDER BY salary DESC' to sort the salaries in descending order.

    • Use 'LIMIT 1 OFFSET 2' to skip the first two highest salaries and retrieve the third highest salary.

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 2;

  • Answered by AI
  • Q6. Qualifier vs primary
  • Ans. 

    A qualifier in Java is used to specify additional information about a primary, which is the main data type or variable.

    • A primary in Java is the main data type or variable, while a qualifier provides additional information about the primary.

    • Qualifiers can be used to modify the behavior or characteristics of a primary.

    • For example, in Java, 'final' is a qualifier that can be used to make a variable constant.

  • Answered by AI
  • Q7. Controller vs restcontroller
  • Ans. 

    The main difference is that @RestController is a specialized version of @Controller that is used for RESTful web services.

    • Both @Controller and @RestController are used in Spring MVC to handle HTTP requests, but @RestController is specifically used for RESTful web services.

    • @Controller is used to create web pages, while @RestController is used to return data in JSON or XML format.

    • @RestController is a convenience annotati...

  • Answered by AI
  • Q8. Spring boot annotataions
  • Q9. Oops concepts with examples
  • Ans. 

    OOP concepts include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class Dog extends Animal.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorphism: Ability for objects to be treated as instances of their paren...

  • Answered by AI
  • Q10. Spring batch configuration
  • Q11. They covered all java, spring and Microservices
Round 3 - Technical 

(4 Questions)

  • Q1. Microservices architecture
  • Q2. How do Microservices communicate
  • Ans. 

    Microservices communicate with each other through various communication protocols like HTTP, messaging queues, and gRPC.

    • Microservices can communicate over HTTP using RESTful APIs.

    • Messaging queues like RabbitMQ or Kafka can be used for asynchronous communication between microservices.

    • gRPC is a high-performance, open-source RPC framework that can be used for communication between microservices.

    • Service discovery mechanism...

  • Answered by AI
  • Q3. How to access the Microservice end point
  • Ans. 

    Microservice endpoints can be accessed using HTTP requests with the appropriate URL

    • Use HTTP methods like GET, POST, PUT, DELETE to interact with the microservice

    • Construct the URL with the base URL of the microservice and the specific endpoint path

    • Include any necessary headers or parameters in the request for authentication or data filtering

  • Answered by AI
  • Q4. Why we use microservices
  • Ans. 

    Microservices allow for modular, scalable, and flexible software development by breaking down applications into smaller, independent services.

    • Microservices enable easier maintenance and updates as each service can be developed, deployed, and scaled independently.

    • They improve fault isolation, as failures in one service do not necessarily affect the entire application.

    • Microservices promote agility and faster time-to-mark...

  • Answered by AI

Skills evaluated in this interview

Java Developer Interview Questions & Answers

ValueLabs user image syed gajini ahmed

posted on 18 Nov 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. Spring Security Implementation
  • Q2. Api design Implementation
  • Ans. 

    API design implementation involves creating a well-structured and user-friendly interface for interacting with software applications.

    • Understand the requirements and use cases for the API

    • Design clear and consistent endpoints with proper documentation

    • Implement secure authentication and authorization mechanisms

    • Follow RESTful principles for creating APIs

    • Consider scalability and performance optimizations

  • Answered by AI
  • Q3. Stream API coding question

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
₹10.3 L/yr - ₹12.9 L/yr
99% more than the average Reactjs Developer Salary in India
View more details

Cybage Reactjs Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

3.0

Salary

3.0

Job security

5.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
3.2k salaries
unlock blur

₹3.2 L/yr - ₹12.4 L/yr

Senior Software Engineer
2k salaries
unlock blur

₹5.9 L/yr - ₹19.1 L/yr

QA Engineer
1.1k salaries
unlock blur

₹2.4 L/yr - ₹11 L/yr

Senior QA Engineer
797 salaries
unlock blur

₹6 L/yr - ₹14.2 L/yr

System Analyst
739 salaries
unlock blur

₹10 L/yr - ₹25 L/yr

Explore more salaries
Compare Cybage with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

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