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 Application Developer Interview Questions and Answers

Updated 31 Dec 2021

CGI Group Application Developer Interview Experiences

2 interviews found

I applied via Recruitment Consultant and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Plan and package
  • Q2. Cursor
  • Q3. Array, continue vs next

Interview Preparation Tips

Interview preparation tips for other job seekers - For exp 1-3 yrs: focus on your basics that is enough.
For exp 3-5 yrs: strong technical in depth questions
For 5 and above: real life project scenarios.

Application Developer interview

user image AG Tech

posted on 25 Nov 2021

Application Developer Interview Questions Asked at Other Companies

asked in Fujitsu
Q1. Reverse Linked List Problem Statement Given a singly linked list ... read more
asked in Oracle
Q2. Minimum Cost to Connect All Points Problem Statement Given an arr ... read more
asked in Oracle
Q3. Remove the Kth Node from the End of a Linked List You are given a ... read more
asked in Oracle
Q4. Count Subsequences Problem Statement Given an integer array ARR o ... read more
asked in Oracle
Q5. Partition Equal Subset Sum Problem Given an array ARR consisting ... read more

Application Developer Jobs at CGI Group

View all

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basics of Core Python concepts like Loops, Lambda functions.
  • Q2. Check if a string is Palindrome or not.
  • Ans. 

    Check if a string is Palindrome or not.

    • Create a function to compare the original string with its reverse

    • Ignore spaces and punctuation when checking for palindrome

    • Examples: 'racecar' is a palindrome, 'hello' is not

  • Answered by AI
  • Q3. Questions of Sql.
Round 2 - One-on-one 

(2 Questions)

  • Q1. What questions were asked regarding the projects you worked on, and what specific technicalities were included?
  • Q2. Questions on Django, Flask and REST API services.

Interview Preparation Tips

Topics to prepare for Accenture Application Developer interview:
  • Python
  • Django
  • Flask
  • SQL
Interview preparation tips for other job seekers - Easy going interview. Brush up-on your basics and then be prepared with your resume.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. About yourself and Recent project
  • Q2. Why you are shifting
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is bussniess rule ?
  • Ans. 

    A business rule is a specific guideline or constraint that dictates how a business operates or makes decisions.

    • Business rules are typically defined by stakeholders or subject matter experts.

    • They help ensure consistency, compliance, and efficiency in business processes.

    • Examples include age restrictions for purchasing alcohol, pricing strategies, and approval processes for expenses.

  • Answered by AI
  • Q2. What is update set?
  • Ans. 

    An update set is a group of changes that can be moved from one instance to another in ServiceNow.

    • Update sets are used to transport customizations, such as new fields, tables, or scripts, between instances.

    • They help in organizing changes and tracking what customizations are being moved.

    • Update sets can be previewed, committed, and rolled back if needed.

    • Example: Creating a new field in a development instance and moving it

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. About primary keys (how columns can be accommodated in a single primary key)
  • Q2. Types of Constructors
  • Ans. 

    Constructors are special methods used to initialize objects in a class.

    • Constructors have the same name as the class.

    • Types of constructors include default, parameterized, copy, and static constructors.

    • Example: public class Person { public Person() { } }

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. What are the differences between a procedure and a function?
  • Q2. Write a query to find 3rd highest salary from each department
  • Q3. What is synonym.
  • Q4. What are the indexes you used ? Diff between bitmap and btree index
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Oops related questions
  • Q2. MVC related questions
Round 2 - HR 

(2 Questions)

  • Q1. Managerial questions
  • Q2. About expectations
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is memorization
  • Ans. 

    Memorization is the process of committing information to memory for later recall.

    • Memorization involves encoding information into memory through repetition or association.

    • It is often used in education to learn facts, formulas, or concepts.

    • Techniques like mnemonics, visualization, and chunking can aid in memorization.

    • Examples include memorizing multiplication tables, historical dates, or foreign language vocabulary.

  • Answered by AI
  • Q2. What is currying
  • Ans. 

    Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of functions, each taking a single argument.

    • Currying helps in creating reusable functions and improving code readability.

    • It allows partial application of functions, where some arguments are fixed and others are left to be provided later.

    • Curried functions can be composed easily to create more complex...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Internal working of Hashmap
  • Ans. 

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

    • HashMap uses hashing to store and retrieve key-value pairs

    • It uses an array of linked lists to handle collisions

    • The key's hash code is used to determine the index in the array where the key-value pair is stored

    • HashMap allows one null key and multiple null values

    • Example: HashMap<String, Integer> map = new

  • Answered by AI
  • Q2. Difference between string builder and string buffer
  • Ans. 

    String builder is not synchronized, faster but not thread-safe. String buffer is synchronized, slower but thread-safe.

    • String builder is faster due to lack of synchronization, suitable for single-threaded environments.

    • String buffer is slower due to synchronization, suitable for multi-threaded environments.

    • Example: StringBuilder sb = new StringBuilder(); StringBuffer sbf = new StringBuffer();

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why would you like to join us
  • Ans. 

    I am passionate about developing innovative applications and believe in the mission of your company.

    • Excited about the opportunity to work on cutting-edge technologies

    • Aligned with the company's values and goals

    • Seeking a challenging and dynamic work environment

    • Impressed by the company's reputation and success stories

  • Answered by AI
  • Q2. Expected CTC and current CTC

CGI Group Interview FAQs

How to prepare for CGI Group Application 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, Coding, Architecture, Cryptography and MVC.
What are the top questions asked in CGI Group Application Developer interview?

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

  1. Array, continue vs n...read more
  2. Plan and pack...read more

Tell us how to improve this page.

CGI Group Application Developer Salary
based on 4 salaries
₹5 L/yr - ₹15.3 L/yr
11% less than the average Application Developer Salary in India
View more details
Salesforce Applications Developer

Bangalore / Bengaluru

4-6 Yrs

Not Disclosed

Explore more jobs
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.5 L/yr

Lead Analyst
3.1k salaries
unlock blur

₹9.9 L/yr - ₹30 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 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