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.4k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

CGI Group Fullstack Java Developer Interview Questions and Answers

Updated 4 Mar 2024

CGI Group Fullstack Java Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I was interviewed in Feb 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. As its for experienced , most of the questions are scenario based like how will you handle if one microservice goes down ?

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
-

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Find the second largest element from array
  • Ans. 

    Find the second largest element from array of strings

    • Sort the array in descending order

    • Access the element at index 1 to get the second largest element

  • Answered by AI
  • Q2. Java basics and advanced programming
  • Q3. Failsafe vs fail fast integrators
  • Ans. 

    Failsafe integrators prioritize system stability by handling errors gracefully, while fail fast integrators prioritize quick detection and resolution of errors.

    • Failsafe integrators focus on ensuring the system continues to function even in the presence of errors.

    • Fail fast integrators aim to quickly identify and address errors to prevent further issues.

    • Failsafe integrators often use techniques like retries, circuit brea...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Saga design patterns
  • Q2. Micro services architecture

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. It asked basics of Java related to OOPs pillar and DSA questions
  • Q2. DSA linkedlist coding summary etc
Round 2 - HR 

(2 Questions)

  • Q1. How are you now??
  • Q2. Are you good now anymore??

Interview Preparation Tips

Interview preparation tips for other job seekers - study hard and smart
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Tech panel did not show up

Interview Preparation Tips

Interview preparation tips for other job seekers - Very Bad Process. They kept rescheduling the interview call.
First they scheduled the Technical interview. Sent the invites & then when I joined at the particular time - HR came on the call instead of tech panel & told that interviewer is busy ,got some other interview going on. So, cant have it right now.
This kind of thing happened 3 times where none of tech panel show up.
Very bad. Not expecting from such a big company like Wipro.

Afterwards, they dont even pick call. They just call randomly & setup an interview. And then cancel it. Very unprofessional.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Aug 2023.

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. SQL - a table with emp-id, emp-name, manager-id, Need to find the manger name for each emplyee.
  • Q2. FizzBuzz - if number is divisible by 3 print "fizz", if by 5 print "buzz", if by both "fizzbuzz"
  • Ans. 

    A simple program to print 'fizz' for multiples of 3, 'buzz' for multiples of 5, and 'fizzbuzz' for multiples of both.

    • Iterate through numbers from 1 to n.

    • Use modulo operator to check divisibility by 3 and 5.

    • Print 'fizz', 'buzz', or 'fizzbuzz' accordingly.

  • Answered by AI
  • Q3. Is it necessary for classes implementing an interface to implement interface methods?
  • Ans. 

    Yes, classes implementing an interface must implement interface methods.

    • Classes implementing an interface must provide concrete implementations for all methods declared in the interface.

    • Failure to implement all interface methods will result in a compilation error.

    • Interfaces are used to define a contract that implementing classes must adhere to.

  • Answered by AI
  • Q4. Spring basics - annotations
Round 3 - Technical 

(1 Question)

  • Q1. Spring boot basics
Round 4 - HR 

(1 Question)

  • Q1. Talked about my previous companies and salary. Before they conduct the interview I had told them my expectation, while negotiation they denied for providing that and were offering just 10% hike over my cur...

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go for this company. It is just waste of time.

Skills evaluated in this interview

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

I applied via campus placement at Ajay Kumar Garg Engineering College, Ghaziabad and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Core Java
DSA
MySQL
Aptitude

Round 2 - Technical 

(1 Question)

  • Q1. Oops concept one dsa question based on array sql query for filter data LinkedList
Round 3 - HR 

(1 Question)

  • Q1. Just document veriication
Round 1 - Group Discussion 

1)Driffience between Abstract class &
Interface.
-abstract class
represents property
&
behaviour of an object
whereas
interface
represents
behaviour
of an object.
2)Driffience between equal() vs ==operator.
equal() is
an object class method
whereas
equal() of string class
override
the object class equal().
3)can we use pointer's in Java.
Not explicitly but implicitly we can use pointer's in java.
Dynamic m/m refers with help of pointer's but java does not support the pointer's.
when we r creating an object in java refrence varaible of an object holds the identity that is nothing but an implicit pointer that holds an unique identity of an object.
4)How we can print object ID.
-Object ID printed with help of object class which is a service provider class having 9().
5)what is object class.
-it is a super class of all predefined & userdefined class.
6)Write a prog to get name of main thread in java.
-class A
{
psvm(String args [])
{
s.o.pln(Thread.currentThread().getName());
}
}
7)length vs length()
-length
is
data menmber
of proxy class
whereas
length() is a string class().

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain JVM in ur own language.
  • Ans. 

    JVM is an abstract machine that executes Java bytecode.

    • JVM stands for Java Virtual Machine.

    • It is responsible for interpreting and executing Java bytecode.

    • JVM provides platform independence to Java programs.

    • It has its own memory management system and garbage collector.

    • JVM can be implemented on different operating systems.

    • Examples of JVM languages include Java, Kotlin, and Scala.

  • Answered by AI
  • Q2. Exlplaing Multhreading.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepairing accordingly
for to improve
i) strength,
ii)creativity
&
problem analysis & sloving attitude
with accessing fundamental stratergies of software development.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Agile methodology
  • Q2. Decorators in annular
  • Ans. 

    Decorators in Angular are functions that allow you to modify or extend the behavior of classes or methods.

    • Decorators are used to add metadata to classes or methods in Angular applications.

    • They are prefixed with @ symbol and are followed by the decorator name.

    • Common decorators in Angular include @Component, @Directive, @Injectable, @Input, @Output, etc.

    • Decorators can be used for various purposes such as defining compone...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was easy to answer all the questions,basics of aptitude

Round 2 - Group Discussion 

There were 10 members in the gd and it went smoothly

Round 3 - HR 

(2 Questions)

  • Q1. Asked about my project
  • Q2. About project , willing to relocate and some other project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Do prepare well it will be easy and learn some basic Java questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Java 8 code to find occurrence
  • Ans. 

    Java 8 code to find occurrence of a specific string in an array of strings

    • Use Java 8 Stream API to filter the array of strings based on the specific string

    • Count the occurrences of the specific string using the 'count' method

    • Return the count of occurrences

  • Answered by AI
  • Q2. Core java questions
  • Q3. Collection questions
  • Q4. Spring boot question
Round 2 - HR 

(2 Questions)

  • Q1. Basic introduction
  • Q2. Salary discussion

Skills evaluated in this interview

CGI Group Interview FAQs

How many rounds are there in CGI Group Fullstack Java Developer interview?
CGI Group interview process usually has 1 rounds. The most common rounds in the CGI Group interview process are One-on-one Round.

Tell us how to improve this page.

CGI Group Fullstack Java Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
CGI Group Fullstack Java Developer Salary
based on 6 salaries
₹5.5 L/yr - ₹15.4 L/yr
At par with the average Fullstack Java Developer Salary in India
View more details
Software Engineer
8.1k salaries
unlock blur

₹3.8 L/yr - ₹12 L/yr

Senior Software Engineer
7.2k salaries
unlock blur

₹6.1 L/yr - ₹22.4 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.6 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.6
Compare

Wipro

3.7
Compare

HCLTech

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