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

Updated 8 May 2024

CGI Group Salesforce Developer Interview Experiences

1 interview found

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

1) Trigger to update custom field totalamount__c on account object when opportunity record is updated or inserted . account.totalamount_c is sum of amount value of related opportunity .

2) write apex code to remove duplicate string from array of string .

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice apex coding

Salesforce Developer Jobs at CGI Group

View all

Interview questions from similar companies

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. How to invoke flows - using other flows and Apex. How do we invoke an apex class from a flow and pass variables?
  • Ans. 

    Flows can be invoked using other flows and Apex. Apex classes can be invoked from a flow by using invocable methods and passing variables as input parameters.

    • To invoke a flow from another flow, use the 'Launch Flow' element in the Flow Designer.

    • To invoke an Apex class from a flow, create an invocable method in the Apex class and annotate it with @InvocableMethod.

    • Pass variables from a flow to an Apex class by defining i...

  • Answered by AI
  • Q2. Why can't we create a master detail on contact as the child object
  • Ans. 

    Master-detail relationship on Contact as child object is not allowed due to data integrity concerns.

    • Contact is a standard object and cannot be a child object in a master-detail relationship

    • Master-detail relationships require the child object to have a lookup to the parent object

    • Contacts are often used as the primary object in many relationships, making it unsuitable as a child object

  • Answered by AI
  • Q3. What is child to parent communication in LWC?
  • Ans. 

    Child to parent communication in LWC allows a child component to communicate with its parent component.

    • Child components can dispatch custom events to communicate with parent components.

    • Parent components can listen for these custom events and handle them accordingly.

    • This communication pattern helps in passing data and triggering actions between components.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Write triggers for updating user email from contact emails.
  • Ans. 

    Write triggers to update user email from contact emails

    • Create a trigger on the User object

    • Query for related Contact records

    • Update User email field with Contact email

  • Answered by AI
  • Q2. How does LWC ensure data refresh
  • Ans. 

    LWC ensures data refresh by using Lightning Data Service and @wire decorator.

    • LWC uses Lightning Data Service to ensure data refresh without needing to write Apex code.

    • The @wire decorator in LWC allows for declarative data binding and automatic refresh when data changes.

    • LWC components can also manually refresh data using imperative Apex calls or by calling the refreshApex() method.

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was easy and basic

Round 2 - Coding Test 

Coding questions are bit complicated

Round 3 - Technical 

(2 Questions)

  • Q1. Salesforce platform questions
  • Q2. Basic hr questions and project based question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Basic Apex coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Technical Scenerio in LWC
  • Q2. Basic sceneries in Apex sharing
  • Ans. 

    Apex sharing allows developers to control access to records based on criteria.

    • Apex sharing rules can be used to extend sharing access beyond the organization-wide defaults.

    • Apex managed sharing allows developers to programmatically share records with specific users or groups.

    • Sharing reasons can be used to define the reason for sharing a record in Apex.

    • Apex sharing can be enforced using the 'with sharing' keyword in Apex

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep Basic of Salesforce admin and development
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Can we call future method from batch class
  • Ans. 

    Yes, future methods can be called from a batch class in Salesforce.

    • Future methods can be called from batch classes to perform asynchronous processing.

    • This can be useful for offloading long-running tasks to future methods to avoid hitting governor limits.

    • Example: Calling a future method from a batch class to update records in Salesforce asynchronously.

  • Answered by AI
  • Q2. What's the use of @track decorator. Is it mandatory to explicitly use it? If yes, for which use case?
  • Ans. 

    The @track decorator in Salesforce is used to track changes to a property in a Lightning web component.

    • Used to make a property reactive and trigger re-renders when its value changes

    • Not mandatory but recommended for properties that need to be reactive

    • Use @track when you want changes to a property to be reflected in the UI

  • Answered by AI
  • Q3. When does APEX CPU Limit Exceeded error happens. What's the best practice to avoid getting this error?
  • Ans. 

    APEX CPU Limit Exceeded error happens when code consumes too much CPU time. Best practices include optimizing code, reducing loops, and using asynchronous processing.

    • Avoid using nested loops and optimize code for better performance

    • Use asynchronous processing like @future or Queueable to offload CPU intensive tasks

    • Limit the use of SOQL queries inside loops to reduce CPU consumption

  • Answered by AI
  • Q4. When does Mixed DML Exception occurs?
  • Ans. 

    Mixed DML Exception occurs when DML operations are performed on setup and non-setup objects in a single transaction.

    • Occurs when DML operations are performed on both setup and non-setup objects in a single transaction

    • Setup objects include User, Profile, PermissionSet, etc.

    • Non-setup objects include custom objects, standard objects like Account, Contact, etc.

  • Answered by AI
  • Q5. Debug the following code: var a=10; function abc() { console.log(a); var a=2; } abc();
  • Ans. 

    The code will output 'undefined' because variable 'a' is hoisted within the function.

    • Variable 'a' is hoisted to the top of the function scope, so when 'console.log(a)' is called, 'a' is undefined.

    • To fix this, move the declaration of 'var a=2;' above the 'console.log(a);' statement.

  • Answered by AI
  • Q6. Write a SOQL query to fetch the values of description field from the Account. Why does "the description field cannot be filtered in the query call"?
  • Ans. 

    SOQL query to fetch description field from Account and reason for inability to filter

    • SOQL query: SELECT Description FROM Account

    • Description field is not filterable because it is a long text field

    • Long text fields cannot be filtered in SOQL queries

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Apex trigger security model etc
Round 2 - One-on-one 

(1 Question)

  • Q1. Managerial round
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have high expectations on salary please don’t join this
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Profile, role differencess
  • Q2. How data is sent by callout
  • Ans. 

    Data is sent by callout using HTTP request methods like GET, POST, PUT, DELETE.

    • Data can be sent in the request body or as query parameters

    • Headers can be used to provide additional information

    • Response codes indicate the status of the request

    • Examples: Sending data to an external API, retrieving data from a web service

  • Answered by AI

Skills evaluated in this interview

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

Round 1 - Technical 

(3 Questions)

  • Q1. Types of Sharing Rules
  • Ans. 

    Sharing rules control access to records that are owned by other users or in public groups.

    • Criteria-based sharing rules

    • Owner-based sharing rules

    • Manual sharing

    • Apex managed sharing

  • Answered by AI
  • Q2. Trigger Scenario-based Questions
  • Q3. Types of LWC Decorators
  • Ans. 

    LWC Decorators are used to enhance the functionality of Lightning Web Components.

    • Wire Decorator - used to get data from Apex controllers

    • Track Decorator - used to track changes in a property

    • Api Decorator - used to expose a property or method to other components

    • AuraEnabled Decorator - used to call an Apex method from a Lightning component

    • LightningMessageService Decorator - used to subscribe to and publish events

  • Answered by AI

Interview Preparation Tips

Topics to prepare for DXC Technology Salesforce Developer interview:
  • Apex
  • Sharing rules
  • LWC
Interview preparation tips for other job seekers - I didn't really linked the Interviewer, He is about 60+ I think. Not at all professional behavior.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Soql , Apex Trigger , Integration , About last project
Round 2 - Technical 

(1 Question)

  • Q1. Previous experience, governor limits, apex , soql and sosl
Round 3 - HR 

(1 Question)

  • Q1. Salary Negotiation
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Count all number of contacts and display on account
  • Ans. 

    Use SOQL query to count number of contacts related to an account and display on account record

    • Use a SOQL query to count the number of contacts related to the account

    • Create a formula field on the account object to display the count of contacts

    • Use a trigger to update the count of contacts on the account whenever a contact is added or removed

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Asynchronous apex scenarios
  • Ans. 

    Asynchronous apex scenarios involve executing code in the background to improve performance and user experience.

    • Asynchronous apex can be used for long-running processes, such as batch jobs or callouts to external systems.

    • It helps in avoiding governor limits by processing tasks in the background.

    • Examples include sending email notifications, updating records in bulk, and integrating with external APIs.

  • Answered by AI

CGI Group Interview FAQs

How many rounds are there in CGI Group Salesforce Developer interview?
CGI Group interview process usually has 1 rounds. The most common rounds in the CGI Group interview process are Coding Test.
How to prepare for CGI Group Salesforce 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 Salesforce, CGI, Javascript, Data migration and CRM.

Tell us how to improve this page.

CGI Group Salesforce Developer Salary
based on 49 salaries
₹4.4 L/yr - ₹15 L/yr
49% more than the average Salesforce Developer Salary in India
View more details

CGI Group Salesforce Developer Reviews and Ratings

based on 4 reviews

4.7/5

Rating in categories

3.4

Skill development

4.4

Work-life balance

4.4

Salary

4.4

Job security

4.4

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 4 Reviews and Ratings
Salesforce Developer- Ecomm Cloud

Bangalore / Bengaluru

3-7 Yrs

Not Disclosed

Explore more jobs
Software Engineer
8k salaries
unlock blur

₹2.7 L/yr - ₹13.8 L/yr

Senior Software Engineer
7.2k salaries
unlock blur

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

Wipro

3.7
Compare

HCLTech

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