Premium Employer

i

This company page is being actively managed by Societe Generale Global Solution Centre Team. If you also belong to the team, you can get access from here

Filter interviews by

Societe Generale Global Solution Centre Interview Questions, Process, and Tips

Updated 3 Mar 2025

Top Societe Generale Global Solution Centre Interview Questions and Answers

View all 133 questions

Societe Generale Global Solution Centre Interview Experiences

Popular Designations

251 interviews found

Analyst Interview Questions & Answers

user image Gopalakrishnan ka

posted on 22 May 2023

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

I applied via Approached by Company and was interviewed in Apr 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 - One-on-one 

(2 Questions)

  • Q1. Role and responsibilities
  • Q2. Tell about your job
  • Ans. 

    I work as an Analyst, analyzing data and providing insights to support decision-making.

    • Analyze data from various sources

    • Identify trends and patterns

    • Create reports and presentations

    • Collaborate with stakeholders

    • Provide insights and recommendations

    • Utilize statistical and analytical tools

    • Example: Analyzed sales data to identify customer preferences and optimize marketing strategies

  • Answered by AI

Top Societe Generale Global Solution Centre Analyst Interview Questions and Answers

Q1. what is capital budgeting
View answer (2)

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Sep 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic questions on oops ,.net
  • Q2. Scenario based questions from project.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Project related questions, real time situation
  • Q2. Coding questions
Round 3 - Behavioral 

(2 Questions)

  • Q1. Communication check
  • Q2. Project details
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiation

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Desing a secure rest API
  • Ans. 

    Designing a secure REST API involves implementing authentication, authorization, encryption, and input validation.

    • Use HTTPS to encrypt data in transit

    • Implement OAuth or JWT for authentication and authorization

    • Validate and sanitize input to prevent injection attacks

    • Limit access to sensitive data with role-based access control

  • Answered by AI
  • Q2. How hasmap works internally
  • Ans. 

    HashMap works internally by using a hash function to map keys to their corresponding values in an array of linked lists.

    • HashMap uses a hash function to determine the index of the key-value pair in the array.

    • Collisions can occur when multiple keys hash to the same index, which is resolved by using linked lists at each index.

    • When retrieving a value, the hash function is used to find the correct index and then the linked ...

  • Answered by AI
  • Q3. Microservices desing pattern
Round 2 - Technical 

(2 Questions)

  • Q1. What is major contribution you have done in project
  • Ans. 

    I developed a new algorithm for optimizing database queries, resulting in a 30% increase in performance.

    • Designed and implemented a new algorithm for optimizing database queries

    • Conducted performance testing to measure the impact of the new algorithm

    • Achieved a 30% increase in performance compared to the previous method

  • Answered by AI
  • Q2. How you resolved conflict with other teammate
  • Ans. 

    I resolved conflicts with teammates by actively listening, finding common ground, and seeking a mutually beneficial solution.

    • Actively listen to the other person's perspective

    • Communicate openly and honestly about concerns

    • Find common ground and areas of agreement

    • Seek a mutually beneficial solution

    • Involve a mediator if necessary

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Skills evaluated in this interview

Top Societe Generale Global Solution Centre Software Engineering Specialist Interview Questions and Answers

Q1. How to work in pressurized environment. Handling priority production bugs
View answer (1)

Software Engineering Specialist Interview Questions asked at other Companies

Q1. Explain Python Data Structures and advantages and some differences in each
View answer (2)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

It was good and tough

Round 3 - Technical 

(1 Question)

  • Q1. Tell me about your self

Accounting Specialist Interview Questions asked at other Companies

Q1. What is accruals,prepaid, and other accounting terms.
View answer (1)

Societe Generale Global Solution Centre interview questions for popular designations

 Software Engineer

 (33)

 Analyst

 (23)

 Software Engineering Specialist

 (19)

 Senior Analyst

 (17)

 Softwaretest Engineer

 (12)

 Software Developer

 (12)

 Senior Software Engineer

 (8)

 Business Analyst

 (6)

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

I applied via Campus Placement and was interviewed in Nov 2022. There were 4 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 - Coding Test 

Coding test was easy, there were 2 questions.

Round 3 - Technical 

(1 Question)

  • Q1. Square root of a number in log n time
  • Ans. 

    Using binary search, square root of a number can be found in log n time.

    • Choose a range for the square root

    • Use binary search to find the square root within the range

    • Adjust the range based on whether the guess is too high or too low

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Basic questions on leadership and some problem based.
  • Q2. Basics questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and try to give as many mock interviews as possible

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Get interview-ready with Top Societe Generale Global Solution Centre Interview Questions

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

I applied via Recruitment Consulltant and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Coding questions will be in data structures and algorithms. Mostly from binary tree, linked list, and tree map. Interviewer will ask depth about space and time complexity

Round 2 - One-on-one 

(2 Questions)

  • Q1. 1. Executor service in java 2. String array coding questions 3. Design pattern with industry example (in your current project) 4. Async communication between microservices 5. Event based architecture 6...
  • Q2. 12. Spring boot annotations ( you probably never heard ) like sneakythrows 13. Integration test
Round 3 - Technical 

(1 Question)

  • Q1. Manager round most of the question are scenario based like conflict management, stakeholders management, product support, impact in production delivery
Round 4 - HR 

(1 Question)

  • Q1. Even hr will ask behaviour questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in your core skills .
Scenario based questions so answer efficiency.

Top Societe Generale Global Solution Centre Software Engineering Specialist Interview Questions and Answers

Q1. How to work in pressurized environment. Handling priority production bugs
View answer (1)

Software Engineering Specialist Interview Questions asked at other Companies

Q1. Explain Python Data Structures and advantages and some differences in each
View answer (2)

Jobs at Societe Generale Global Solution Centre

View all
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Indeed and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. It was based on your résumé
Round 2 - HR 

(1 Question)

  • Q1. It was based on our resume

Interview Questions & Answers

user image Anonymous

posted on 26 Mar 2023

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

I was interviewed in Feb 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 - Coding Test 

Vba, tableau and sql test was taken

Round 3 - One-on-one 

(1 Question)

  • Q1. What is kyc and aml
  • Ans. 

    KYC (Know Your Customer) and AML (Anti-Money Laundering) are regulatory compliance processes to prevent financial crimes.

    • KYC is the process of verifying the identity of customers to ensure they are not involved in any illegal activities.

    • AML is the process of monitoring financial transactions to detect and prevent money laundering and terrorist financing.

    • KYC and AML are mandatory for financial institutions to comply wit...

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. Functional head round

Interview Preparation Tips

Interview preparation tips for other job seekers - have good knowledge about the role you have applied for
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

General aptitude with some coding questions

Round 2 - Coding Test 

Streams and method references. Some with data structures

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA

Software Specialist Interview Questions asked at other Companies

Q1. Do you know the architecture of McAfee and CrowedStrike? Did you work on the CrowedStrike console and service now?
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 3 Mar 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Mar 2024.

Round 1 - Aptitude Test 

Aptitude test :- maths, logic, verbal, etc

Round 2 - One-on-one 

(1 Question)

  • Q1. Finance related questions like about derivatives, exchange rates, investment banking

Societe Generale Global Solution Centre Interview FAQs

How many rounds are there in Societe Generale Global Solution Centre interview?
Societe Generale Global Solution Centre interview process usually has 2-3 rounds. The most common rounds in the Societe Generale Global Solution Centre interview process are Technical, One-on-one Round and HR.
How to prepare for Societe Generale Global Solution Centre 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 Societe Generale Global Solution Centre. The most common topics and skills that interviewers at Societe Generale Global Solution Centre expect are genetics, Trade Union, Finance, SQL and Investment Banking.
What are the top questions asked in Societe Generale Global Solution Centre interview?

Some of the top questions asked at the Societe Generale Global Solution Centre interview -

  1. What is Counterparty Credit Risk? What is CVA and how is it calculat...read more
  2. What are the documents delivered by a BA in a data migration proje...read more
  3. Which one is better - Java with DB or PL/SQL and w...read more
How long is the Societe Generale Global Solution Centre interview process?

The duration of Societe Generale Global Solution Centre interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Societe Generale Global Solution Centre Interview Process

based on 211 interviews

Interview experience

4.1
  
Good
View more
Join Societe Generale Global Solution Centre Building together, a Better & Sustainable future.

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.1k Interviews
HSBC Group Interview Questions
4.0
 • 484 Interviews
Goldman Sachs Interview Questions
3.5
 • 376 Interviews
Deutsche Bank Interview Questions
3.9
 • 361 Interviews
UBS Interview Questions
3.9
 • 331 Interviews
Morgan Stanley Interview Questions
3.7
 • 291 Interviews
Barclays Interview Questions
3.8
 • 269 Interviews
BNP Paribas Interview Questions
3.8
 • 178 Interviews
View all

Societe Generale Global Solution Centre Reviews and Ratings

based on 2.4k reviews

3.8/5

Rating in categories

3.5

Skill development

4.1

Work-life balance

3.4

Salary

4.1

Job security

3.8

Company culture

2.9

Promotions

3.5

Work satisfaction

Explore 2.4k Reviews and Ratings
Business Analyst - Liquidity Risk

Bangalore / Bengaluru

4-7 Yrs

₹ 16-22.63496 LPA

Big Data Lead

Bangalore / Bengaluru

7-12 Yrs

₹ 12-22 LPA

.NET Software Developer

Bangalore / Bengaluru

3-6 Yrs

Not Disclosed

Explore more jobs
Senior Analyst
1.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineering Specialist
1.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
1.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
1.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
1.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Societe Generale Global Solution Centre with

BNP Paribas

3.8
Compare

Crédit Agricole

3.5
Compare

HSBC Group

3.9
Compare

Barclays

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