Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by CGI Group Team. If you also belong to the team, you can get access from here

CGI Group Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 4.3k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

CGI Group React Developer Interview Questions and Answers

Updated 8 Feb 2024

CGI Group React Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Javascript and React JS interview Questions
  • Q2. Basic Typescript Interview Question
Round 2 - Technical 

(1 Question)

  • Q1. Questions Based on Project
Round 3 - Client Interview 

(1 Question)

  • Q1. Advanced react Interview Questions

Interview Preparation Tips

Topics to prepare for CGI Group React Developer interview:
  • Hooks
  • Redux
  • Routing
  • React.Js
  • Javascript

Interview questions from similar companies

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

Normal js,react question

Round 2 - Technical 

(2 Questions)

  • Q1. Hooks, redux questions
  • Q2. 1. what is hoisting, what is hoc, what is Debouncing.
  • Ans. 

    Hoisting is the JavaScript mechanism where variable and function declarations are moved to the top of their containing scope. HOC stands for Higher Order Component, a pattern used in React for code reusability. Debouncing is a technique used to limit the rate at which a function is executed.

    • Hoisting moves variable and function declarations to the top of their scope during the compilation phase.

    • HOC is a function that ta...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. React native easy questions
Round 2 - HR 

(1 Question)

  • Q1. Talk about salary

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

Interview Questionnaire 

7 Questions

  • Q1. What are the ways to handle Errors in React?
  • Ans. 

    Error handling in React can be done using try-catch blocks, error boundaries, and handling asynchronous errors.

    • Use try-catch blocks to handle synchronous errors

    • Use error boundaries to catch errors in child components

    • Handle asynchronous errors using promises or async/await

    • Use third-party libraries like Sentry or Bugsnag for better error tracking

    • Display user-friendly error messages to improve user experience

  • Answered by AI
  • Q2. What are refs? How will you use it for getting input value? Explain with code.
  • Ans. 

    Refs are a way to access DOM nodes or React components directly. They can be used to get input values.

    • Refs provide a way to access DOM nodes or React components directly.

    • They are commonly used to get input values or trigger imperative animations.

    • Refs can be created using the `createRef()` method or by using a callback function.

    • To get the value of an input using refs, you can assign a ref to the input element and access

  • Answered by AI
  • Q3. Explain useState, useEffect Hooks.
  • Ans. 

    useState and useEffect are React Hooks used for managing state and side effects respectively.

    • useState is used to manage state in functional components

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

    • useEffect is used to manage side effects like fetching data or updating the DOM

    • It takes a function as its argument and runs it after every render

    • useEffect can also take a sec...

  • Answered by AI
  • Q4. What is Lazy Loading, Suspense. How do they work?
  • Ans. 

    Lazy Loading and Suspense are techniques used to improve performance by loading components and data only when needed.

    • Lazy Loading delays the loading of non-critical resources until they are needed, reducing initial load time.

    • Suspense allows components to wait for data to load before rendering, improving user experience.

    • Lazy Loading and Suspense can be used together to optimize performance and user experience.

    • Example: A...

  • Answered by AI
  • Q5. How componentWillUnmount works?
  • Ans. 

    componentWillUnmount is a lifecycle method in React that is called right before a component is unmounted and destroyed.

    • componentWillUnmount is used to perform any necessary cleanup tasks before a component is removed from the DOM.

    • It is commonly used to cancel any pending network requests, remove event listeners, or clear timers or intervals.

    • The method is called automatically by React when a component is about to be unm...

  • Answered by AI
  • Q6. How do you avoid re-rendering of a component? With useEffect second parameter, should ComponentUpdate
  • Ans. 

    To avoid re-rendering, use shouldComponentUpdate or React.memo

    • Use shouldComponentUpdate to compare current and next props/state

    • Use React.memo to memoize functional components

    • Use useMemo to memoize expensive computations

    • Use useCallback to memoize event handlers

    • Use PureComponent for class components

  • Answered by AI
  • Q7. How to optimize React App? Important Question

Interview Preparation Tips

Interview preparation tips for other job seekers - Gave First Round. Interviewer was eating chips which was annoying. Be prepared with React Interview Questions and you can nail this interview. It was a WebEx call with candidate's video on all the time. Stay calm and answer. This round is easy to pass.

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(16 Questions)

  • Q1. What is hosting and closer
  • Ans. 

    Hosting is the process of storing a website or application on a server, while closure is a function that retains access to variables from its parent scope.

    • Hosting involves storing a website or application on a server to make it accessible on the internet.

    • Closure is a function that retains access to variables from its parent scope, even after the parent function has finished executing.

  • Answered by AI
  • Q2. What is difference between var let and const give me an explanation on what block scope
  • Ans. 

    var, let, and const are used to declare variables in JavaScript. var has function scope, let has block scope, and const is a constant with block scope.

    • var has function scope, meaning it is accessible throughout the function it is declared in.

    • let has block scope, meaning it is only accessible within the block it is declared in.

    • const is similar to let in terms of block scope, but the value cannot be reassigned.

  • Answered by AI
  • Q3. What is asynchronous and how it works
  • Ans. 

    Asynchronous programming allows tasks to run independently of the main program flow, improving performance and responsiveness.

    • Asynchronous code does not block the main thread, allowing other tasks to continue while waiting for a response.

    • Callbacks, promises, and async/await are common ways to handle asynchronous operations in JavaScript.

    • Example: fetching data from an API while the rest of the application continues to r

  • Answered by AI
  • Q4. Tell me the output 1)a = 20; console.log(a); var a; 2)b=10; console.log(b); let b; 3)let a =5; if(a<5){ let b = " a lessthen 5"; }else{ let b = "b is grater then 5"; } console.log(b);
  • Ans. 

    The output for the given code snippets will be: 1) 20 2) ReferenceError: Cannot access 'b' before initialization 3) ReferenceError: b is not defined

    • In the first snippet, variable 'a' is declared using 'var' after it is assigned a value, so it logs 20 without any issues.

    • In the second snippet, variable 'b' is declared using 'let' after it is assigned a value, so it throws a ReferenceError as 'b' is accessed before initia...

  • Answered by AI
  • Q5. Give a div with text and display center of the page and apply animation using HTML and css
  • Ans. 

    Centered div with text and animation using HTML and CSS

    • Create a div element with text inside

    • Apply CSS styles to center the div on the page

    • Use CSS animations to add animation effects

  • Answered by AI
  • Q6. What are semantic tags and explain
  • Ans. 

    Semantic tags are HTML tags that provide meaning to the content they enclose, helping search engines and screen readers understand the structure of a webpage.

    • Semantic tags help improve SEO by providing context to search engines.

    • They also improve accessibility for screen readers by clearly defining the structure of a webpage.

    • Examples of semantic tags include

      ,
      ,

Answered by AI
  • Q7. How can we write responsive for web page
  • Ans. 

    Use media queries, flexible grids, and relative units to create a responsive web page.

    • Use media queries to apply different styles based on screen size

    • Create flexible grids using CSS Grid or Flexbox

    • Use relative units like percentages or ems for sizing elements

    • Consider using frameworks like Bootstrap or Material-UI for responsive design

    • Test your design on different devices and screen sizes

  • Answered by AI
  • Q8. What is the difference between CSS and SASS? what is the use of Sass
  • Ans. 

    SASS is a preprocessor scripting language that is interpreted into CSS, offering more features and flexibility.

    • SASS is a preprocessor for CSS, allowing for variables, nesting, and mixins to be used in stylesheets.

    • SASS code needs to be compiled into CSS before being used in a web project.

    • SASS helps in writing cleaner and more organized CSS code, making it easier to maintain and update styles.

    • CSS is the styling language ...

  • Answered by AI
  • Q9. Event propagation
  • Q10. How would you validate the form using HTML? How do you validate the phone number with the country code?
  • Ans. 

    Form validation can be done using HTML attributes like required, pattern, and maxlength. Phone number validation with country code can be achieved using regex.

    • Use the 'required' attribute to make fields mandatory

    • Use the 'pattern' attribute with regex to validate input format

    • Use the 'maxlength' attribute to limit the number of characters in a field

    • For phone number validation with country code, use regex to match the des...

  • Answered by AI
  • Q11. Which test library you use why it usecase
  • Ans. 

    I use Jest for testing React applications due to its simplicity and integration with React ecosystem.

    • Jest is the most popular test library for React applications

    • It comes pre-configured with Create React App and has great support for snapshot testing

    • Jest also has built-in mocking capabilities which make it easy to test components with dependencies

  • Answered by AI
  • Q12. Tell me mounting and shallow concept in testing library
  • Ans. 

    Mounting is the process of rendering a component into the DOM, while shallow rendering allows testing a component without rendering its children.

    • Mounting is the initial phase of the component lifecycle where the component is rendered into the DOM.

    • Shallow rendering in testing library renders only the component itself, not its children.

    • Shallow rendering is useful for isolating the component being tested and avoiding rend...

  • Answered by AI
  • Q13. What is redux-toolkit and what difference b/w redux and redux-toolkit
  • Ans. 

    Redux Toolkit is the official, recommended way to write Redux logic. It simplifies the process of managing state in React applications.

    • Redux Toolkit provides a set of tools and best practices to streamline Redux development.

    • It includes utilities like createSlice, createReducer, and configureStore to simplify the code and reduce boilerplate.

    • Redux Toolkit also includes built-in Immer integration for writing immutable upd...

  • Answered by AI
  • Q14. How api call handle in redux and how can you get and display user name from redux
  • Ans. 

    API calls in Redux are typically handled using middleware like Redux Thunk. User name can be retrieved from Redux state and displayed in components.

    • Use Redux Thunk middleware to make API calls in Redux

    • Dispatch actions to update Redux state with API response data

    • Access user name from Redux state in components to display it

  • Answered by AI
  • Q15. React hooks and how optimization
  • Q16. Why we need thank in redux
  • Ans. 

    Thunk middleware in Redux allows for asynchronous logic to be handled in Redux actions.

    • Thunk middleware allows for dispatching functions instead of just plain objects in Redux actions.

    • It enables handling asynchronous API calls within Redux actions.

    • Thunk middleware helps in simplifying the code by moving complex logic outside of components.

    • Example: Thunk middleware can be used to dispatch an action after a delay or to f...

  • Answered by AI

    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 Oct 2024. There were 2 interview rounds.

    Round 1 - Technical 

    (5 Questions)

    • Q1. I am fine or not
    • Q2. I want this job
    • Q3. I want information for selected in job and interview
    • Q4. And I want the company your details and related studies details
    • Q5. And it will be a good job for me so please select in this company for my family situation
    Round 2 - Group Discussion 

    Group discussion related in company

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Mmm
    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. Ui development and component related
    • Q2. Performance of technology and challenges
    Round 2 - HR 

    (2 Questions)

    • Q1. Personal introduction and location details
    • Q2. Negatition of salries excepectations

    Interview Preparation Tips

    Interview preparation tips for other job seekers - It's very good organization. Freindly nature in team operation is good from leads hikes also ok
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    No response

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

    Round 1 - Technical 

    (3 Questions)

    • Q1. What is CVS? How it is installed in IIB
    • Ans. 

      CVS stands for Concurrent Versions System, a version control system. It can be installed in IIB using the command line or GUI.

      • CVS is a version control system used to track changes in files and manage multiple versions of the same project.

      • To install CVS in IIB, you can use the command line by running 'sudo apt-get install cvs' or use a GUI tool like TortoiseCVS.

      • Once installed, you can configure CVS in IIB by setting up ...

    • Answered by AI
    • Q2. How SSL is configured in ACE
    • Ans. 

      SSL in ACE is configured using SSL profiles which define the SSL settings for a virtual server.

      • SSL profiles in ACE define the SSL version, cipher suite, key exchange algorithm, etc.

      • SSL profiles can be attached to a virtual server to enable SSL encryption for client connections.

      • ACE supports SSL termination where SSL connections from clients are decrypted at the ACE and forwarded to backend servers in clear text.

    • Answered by AI
    • Q3. Difference between IIB and ACE
    • Ans. 

      IIB is the previous version of IBM Integration Bus, while ACE is the newer version with added features and capabilities.

      • IIB stands for IBM Integration Bus, while ACE stands for App Connect Enterprise.

      • ACE includes all the features of IIB along with additional capabilities such as support for RESTful APIs and enhanced security.

      • ACE also provides a more user-friendly interface for developers compared to IIB.

      • Migration from ...

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Knowledgable interviewer

    Skills evaluated in this interview

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

    Coding test was around 2 hrs

    Round 2 - One-on-one 

    (2 Questions)

    • Q1. What is kubernets
    • Ans. 

      Kubernetes is an open-source container orchestration platform for automating deployment, scaling, and management of containerized applications.

      • Kubernetes helps in automating the deployment, scaling, and management of containerized applications.

      • It allows for easy scaling of applications by adding or removing containers based on demand.

      • Kubernetes provides features like load balancing, self-healing, and rolling updates fo...

    • Answered by AI
    • Q2. What is docker container runtime
    • Ans. 

      Docker container runtime is the engine that executes containers, managing their lifecycle and resources.

      • Docker container runtime is responsible for running and managing Docker containers.

      • It provides an isolated environment for applications to run without affecting the host system.

      • Popular container runtimes include Docker Engine, containerd, and CRI-O.

    • Answered by AI

    Skills evaluated in this interview

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

    (2 Questions)

    • Q1. Array qs reverse
    • Q2. Question about angular and react

    CGI Group Interview FAQs

    How many rounds are there in CGI Group React Developer interview?
    CGI Group interview process usually has 3 rounds. The most common rounds in the CGI Group interview process are Technical and Client Interview.
    How to prepare for CGI Group React 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 CGI Group. The most common topics and skills that interviewers at CGI Group expect are CGI, JIRA, Agile, Business Consulting and Business Services.
    What are the top questions asked in CGI Group React Developer interview?

    Some of the top questions asked at the CGI Group React Developer interview -

    1. Basic Javascript and React JS interview Questi...read more
    2. Advanced react Interview Questi...read more
    3. Basic Typescript Interview Quest...read more

    Tell us how to improve this page.

    People are getting interviews through

    based on 1 CGI Group interview
    Job Portal
    100%
    Low Confidence
    ?
    Low Confidence means the data is based on a small number of responses received from the candidates.
    Software Engineer
    8k salaries
    unlock blur

    ₹3.8 L/yr - ₹13.8 L/yr

    Senior Software Engineer
    7.1k salaries
    unlock blur

    ₹6 L/yr - ₹21.6 L/yr

    Lead Analyst
    3.1k salaries
    unlock blur

    ₹9.9 L/yr - ₹29.5 L/yr

    Associate Software Engineer
    1.8k salaries
    unlock blur

    ₹2.5 L/yr - ₹6.7 L/yr

    Senior Test Engineer
    1.2k salaries
    unlock blur

    ₹6 L/yr - ₹20.2 L/yr

    Explore more salaries
    Compare CGI Group with

    TCS

    3.7
    Compare

    Infosys

    3.7
    Compare

    Wipro

    3.7
    Compare

    HCLTech

    3.5
    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