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

Interview Questions & Answers

user image Anonymous

posted on 19 Aug 2021

I applied via Naukri.com and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Java collections
  • Q2. 2 medium level codes
  • Q3. Hashmap, hashtable

Interview Preparation Tips

Interview preparation tips for other job seekers - The whole process consist of 2 rounds: Technical Interview, Managerial Round.
You have to be thorough about your knowledge for the required role. For me it was Java full-stack so Java took 70% of my interview time + 20% database (sql queries & dbms) + 10% UI development experience, angular framework & react library knowledge. No in-depth questions from UI coz u can catch up quickly if you have base knowledge.
Overall it was a great experience, HR call would be there to give your acceptance information, clarify all your doubts and discuss big salaries.

I applied via Naukri.com and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Medium label coding questions and some MCQ questions related to IT

Round 2 - Technical 

(1 Question)

  • Q1. Mainly focus on DSA, project explanation , OOPs concept, DBMS
Round 3 - Technical 

(1 Question)

  • Q1. Also focus on DSA and some puzzle questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in your interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

I applied via Recruitment Consultant and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions related to msbi and PowerBI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Sql msbi and PowerBI for 2 technical rounds and duration of interviews depends on interviewer, in my case it was more than hour, she tried to ask each and everything she knows.

MSBI and Power BI Developer Interview Questions asked at other Companies

Q1. Tell me About yourself? What projects you have done? which are types of SQL joins? Why do you want make transition? How do you handle data ?
View answer (2)

I applied via Referral and was interviewed before Apr 2021. 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 - Technical 

(2 Questions)

  • Q1. About the Process, Wats trade life cycle, Stages of life cycle, Wats CLS, Wats NDF, Fixing Sources of NDF, CLS- Continous Linked Settlement Trade life Cycle passes 3 phases- Front Office, Middle Office an...
  • Ans. Trade life Cycle- Pre Trade, At Trade and Post Trade
  • Answered Anonymously
  • Q2. Wats CLS - Continous linked Settlement
  • Ans. CLS doesnt have tolerance and works on Payment vs Payment
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a Thorough grip on Subject n Specially NDF Product

Top Societe Generale Global Solution Centre Senior Analyst Interview Questions and Answers

Q1. What is VAR? What is SVAR? What is delta of short put? How vol affect the market? What is importance of Risk analysis ?
View answer (1)

Senior Analyst Interview Questions asked at other Companies

Q1. Explain 3 statement financial model Calculating discount rate Could you walk me through the DCF model? Other valuation methods. What PE is ideal? What is the other matrix to value the company? Difference between IRR and CAGR. What is Bond Y... read more
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 before Mar 2022. There were 3 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 

3 easy-mid level question on DP,arrays,strings

Round 3 - Technical 

(2 Questions)

  • Q1. Asked about OOPS and puzzles
  • Q2. What is the logic for merge sort What is inheritance
  • Ans. 

    Merge sort is a divide and conquer algorithm that sorts an array by dividing it into two halves, sorting them separately, and then merging the sorted halves.

    • Divide the unsorted list into n sublists, each containing one element

    • Repeatedly merge sublists to produce new sorted sublists until there is only one sublist remaining

    • Merge operation involves comparing elements from two sublists and adding the smaller one to the fi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study OOps and lil bit about the company .
Focus on coding

Skills evaluated in this interview

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

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

I applied via LinkedIn and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Difference between delegate and event
  • Ans. 

    Delegate is a type that holds a reference to a method, while an event is a mechanism for communication between objects.

    • Delegate is a type that can hold a reference to a method, while an event is a mechanism for communication between objects.

    • Delegates are used to implement callbacks and event handlers, while events are used to notify subscribers when something happens.

    • Delegates can be multicast, meaning they can hold re...

  • Answered by AI
  • Q2. Write code to count number of occurrences for every character in a word
  • Ans. 

    Code to count occurrences of each character in a word

    • Create an array of size 256 to store count of each character

    • Iterate through the word and increment count for each character

    • Print the count for each character

  • Answered by AI
  • Q3. Features of latest version of c sharp
  • Ans. 

    C# 9.0 introduces new features like records, init-only setters, and top-level statements.

    • Records provide a concise syntax for defining immutable types.

    • Init-only setters allow setting properties only during object initialization.

    • Top-level statements allow writing code without a class or namespace.

    • Improved pattern matching with logical patterns and relational patterns.

    • Function pointers and improved support for native int...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Inspite of answering all questions I was rejected. It was a mere time waste for me. There was no response from HR despite direct message in LinkedIn. The questions are easy and selection is biased and fixed before the interview starts.

Skills evaluated in this interview

Senior Development Engineer Interview Questions asked at other Companies

Q1. how to release the drawings from your end?are you working with DFMEA? have you idea about PLM and it's tools?
View answer (1)

Jobs at Societe Generale Global Solution Centre

View all

Interview Questionnaire 

1 Question

  • Q1. 1) Working of concurrent hash map 2) Why method overloading is compile time polymorphism and method overriding is run time polymorphism
  • Ans. 

    Explanation of concurrent hash map and compile time vs run time polymorphism

    • Concurrent hash map allows multiple threads to access and modify the map concurrently without any external synchronization

    • Method overloading is compile time polymorphism as the decision of which method to call is made by the compiler at compile time based on the number and types of arguments passed

    • Method overriding is run time polymorphism as t...

  • Answered by AI

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)

I applied via Campus Placement and was interviewed in Sep 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Coding Test 
Round 3 - Technical 

(1 Question)

  • Q1. Write a program on number pattern
  • Ans. 

    Program to print number pattern

    • Use nested loops to print the pattern

    • The outer loop controls the number of rows

    • The inner loop controls the number of columns

    • Use conditional statements to determine the pattern

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Managerial questions on team work

Interview Preparation Tips

Interview preparation tips for other job seekers - just have some basic technical knowledge to crack this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

I applied via Naukri.com and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Regarding TPRM process
  • Q2. Regarding Cyber Security concepts
  • Q3. Business continuity

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the JD before interview and prepare accordingly

Senior Cyber Security Analyst Interview Questions asked at other Companies

Q1. What is ip and Mac address.
View answer (1)

Lead Interview Questions & Answers

user image Anonymous

posted on 6 Oct 2021

I applied via Naukri.com and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. More questions based on the previous experience...

Interview Preparation Tips

Interview preparation tips for other job seekers - It always depends on the team that your joining. Personally question relevant to my past experience and what more have your done apart from BAU.

Lead Interview Questions asked at other Companies

Q1. Why should we pay you xx Lakhs?
View answer (1)

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

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