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 Software Engineer Interview Questions, Process, and Tips for Experienced

Updated 21 Mar 2025

Top Societe Generale Global Solution Centre Software Engineer Interview Questions and Answers for Experienced

View all 9 questions

Societe Generale Global Solution Centre Software Engineer Interview Experiences for Experienced

11 interviews found

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

2 coding questions...........

Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions on java and project
  • Q2. Questions on project
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Coding Test 

1 hour coding test with 2 LC easy questions

Round 2 - Technical 

(1 Question)

  • Q1. Basic DSA and problem solving
Round 3 - One-on-one 

(1 Question)

  • Q1. Bit of SQL and Personal Projects
Round 4 - HR 

(1 Question)

  • Q1. It was more like a discussion

Software Engineer Interview Questions Asked at Other Companies for Experienced

Q1. String Compression Problem Statement Implement a program that per ... read more
asked in HCLTech
Q2. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q3. Total time: 110 mins 1. Find missing and duplicate numbers from g ... read more
asked in HCLTech
Q4. Reverse Array Elements Given an array containing 'N' elements, th ... read more
asked in Cisco
Q5. Intersection of Linked List Problem You are provided with two sin ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Here we were asked 3 coding questions and 30 questions each on english, apti and network/os/dbms

Round 2 - Technical 

(1 Question)

  • Q1. Simple medium level leetcode question
Round 3 - One-on-one 

(1 Question)

  • Q1. It was purely behavioural round about projects and scrnario based questions were asked
Round 4 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. If you are here then selected
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Coding Test 

Coding test that included adhoc programming questions and MCQs.

Round 2 - Group Discussion 

Impact of Social Media on Society.

Round 3 - Technical 

(1 Question)

  • Q1. 2 technical interviews based on resume and computer science fundamentals.
Round 4 - HR 

(1 Question)

  • Q1. General HR questions to judge our mindset and how it aligns with company's ideology.

Societe Generale Global Solution Centre interview questions for designations

 Senior Software Engineer

 (8)

 Lead Software Engineer

 (3)

 Associate Software Engineer

 (2)

 Software Developer

 (12)

 Software Specialist

 (1)

 Software Engineering Specialist

 (19)

 Software Developer Intern

 (1)

 Senior Software Developer

 (1)

Interview experience
3
Average
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 - Technical 

(1 Question)

  • Q1. Work experience , functional knowledge, technical knowledge
Round 3 - HR 

(1 Question)

  • Q1. General question , salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Read everything possible…though they don’t use everything for specific role

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

Software Engineer Interview Questions & Answers

user image kranthi kumar

posted on 21 Mar 2025

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

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Write code on exception handling
  • Ans. 

    Exception handling is a mechanism to manage runtime errors in programming, ensuring smooth execution and error reporting.

    • Use try-catch blocks to handle exceptions. Example: try { // code } catch (Exception e) { // handle error }

    • Always catch specific exceptions before general ones to avoid masking errors. Example: catch (IOException e) { // handle IO error }

    • Use finally block for cleanup code that must run regardless of ...

  • Answered by AI
  • Q2. Write code n execute which explains method over loading and over riding
  • Ans. 

    Method overloading allows multiple methods with the same name but different parameters. Overriding allows a subclass to provide a specific implementation.

    • Method Overloading: Same method name, different parameters (e.g., int add(int a, int b) vs. double add(double a, double b)).

    • Method Overriding: Subclass provides specific implementation of a method already defined in its superclass.

    • Example of Overloading: public int mu...

  • Answered by AI

I applied via Recruitment Consulltant and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Hashmap, linkedlist, arraylist, collection interface
  • Q2. Small coding questions on collection interface
Round 2 - One-on-one 

(1 Question)

  • Q1. Managerial round, questions were on certain scenarios like production issues and how to handle them
Round 3 - HR 

(1 Question)

  • Q1. Relocation, salary discussion

Interview Preparation Tips

Topics to prepare for Societe Generale Global Solution Centre Software Engineer interview:
  • Java
  • Collections
  • Sprint boot
Interview preparation tips for other job seekers - Overall interview experience was good and smooth.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 coding question and some Aptitude question

Round 2 - Technical 

(3 Questions)

  • Q1. 2 DSA question and OOPs concepts, SQL, DBMS etc
  • Q2. Coin Change Leetcode Question
  • Q3. House Robber Leetcode Question
Round 3 - Technical 

(1 Question)

  • Q1. 2 DSA questions and some situational based questions
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 Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Quant and Coding Questions

Round 2 - Group Discussion 

A team GD where you talk for and against the topic

Round 3 - One-on-one 

(1 Question)

  • Q1. Interview on resume and prior projects

I applied via Recruitment Consultant and was interviewed in May 2019. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Two tables are given, write the output for all types of JOINS.
  • Ans. 

    Answering types of JOINS for two given tables.

    • INNER JOIN: returns only matching rows from both tables

    • LEFT JOIN: returns all rows from left table and matching rows from right table

    • RIGHT JOIN: returns all rows from right table and matching rows from left table

    • FULL OUTER JOIN: returns all rows from both tables and NULL values where there is no match

    • CROSS JOIN: returns all possible combinations of rows from both tables

  • Answered by AI
  • Q2. A question based on self join.
  • Q3. Which one is better - Java with DB or PL/SQL and why?
  • Ans. 

    Java with DB is better than PL/SQL as it offers more flexibility and scalability.

    • Java with DB allows for easier integration with other technologies

    • Java offers more advanced programming features than PL/SQL

    • Java with DB can handle larger and more complex data sets

    • PL/SQL is limited to Oracle databases only

    • Java with DB is more widely used and has a larger community for support

  • Answered by AI
  • Q4. An aptitude question based on time.
  • Q5. What is dynamic SQL and how do you execute it?
  • Ans. 

    Dynamic SQL is a technique to generate SQL statements at runtime based on user input or other conditions.

    • Dynamic SQL is used to create flexible and customizable queries.

    • It allows for the creation of complex queries with multiple conditions.

    • Dynamic SQL can be executed using prepared statements or by concatenating strings.

    • It is important to properly sanitize user input to prevent SQL injection attacks.

  • Answered by AI
  • Q6. Explain overriding in PL/SQL
  • Ans. 

    Overriding in PL/SQL is the ability to define a subprogram in a child package that has the same name and signature as a subprogram in a parent package.

    • Overriding allows a child package to provide its own implementation of a subprogram that is already defined in a parent package.

    • The child subprogram must have the same name and signature as the parent subprogram.

    • The child subprogram can have a different implementation th...

  • Answered by AI
  • Q7. What are the types of triggers?
  • Ans. 

    Triggers are database objects that are used to automatically execute a response when a certain event occurs.

    • DML Triggers

    • DDL Triggers

    • Logon Triggers

    • CLR Triggers

    • INSTEAD OF Triggers

  • Answered by AI
  • Q8. Two tables are given and four outputs are given. Identify the type of join for each output.
  • Ans. 

    Identifying type of join for given outputs of two tables.

    • Inner join: returns only the matching rows from both tables.

    • Left join: returns all rows from left table and matching rows from right table.

    • Right join: returns all rows from right table and matching rows from left table.

    • Full outer join: returns all rows from both tables and matching rows from both tables.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For the role of PL/SQL developer, make sure to be clear with topics like JOINS, indexing and OOPS principles of PL/SQL

Skills evaluated in this interview

Societe Generale Global Solution Centre Interview FAQs

How many rounds are there in Societe Generale Global Solution Centre Software Engineer interview for experienced candidates?
Societe Generale Global Solution Centre interview process for experienced candidates usually has 3 rounds. The most common rounds in the Societe Generale Global Solution Centre interview process for experienced candidates are Technical, One-on-one Round and HR.
How to prepare for Societe Generale Global Solution Centre Software Engineer interview for experienced candidates?
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, Agile, Python, Trade Union and SQL.
What are the top questions asked in Societe Generale Global Solution Centre Software Engineer interview for experienced candidates?

Some of the top questions asked at the Societe Generale Global Solution Centre Software Engineer interview for experienced candidates -

  1. Which one is better - Java with DB or PL/SQL and w...read more
  2. Two tables are given, write the output for all types of JOIN...read more
  3. What is dynamic SQL and how do you execute ...read more
How long is the Societe Generale Global Solution Centre Software Engineer interview process?

The duration of Societe Generale Global Solution Centre Software Engineer 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 Software Engineer Interview Process for Experienced

based on 8 interviews

4 Interview rounds

  • Coding Test Round
  • Technical Round
  • One-on-one Round
  • HR Round
View more
Join Societe Generale Global Solution Centre Building together, a Better & Sustainable future.
Societe Generale Global Solution Centre Software Engineer Salary
based on 1.6k salaries
₹5 L/yr - ₹20 L/yr
34% more than the average Software Engineer Salary in India
View more details

Societe Generale Global Solution Centre Software Engineer Reviews and Ratings

based on 194 reviews

3.9/5

Rating in categories

3.5

Skill development

4.4

Work-life balance

3.2

Salary

4.4

Job security

3.9

Company culture

2.8

Promotions

3.5

Work satisfaction

Explore 194 Reviews and Ratings
Software Engineering Specialist
1.8k salaries
unlock blur

₹9 L/yr - ₹31.9 L/yr

Senior Analyst
1.8k salaries
unlock blur

₹3.8 L/yr - ₹15 L/yr

Analyst
1.6k salaries
unlock blur

₹2 L/yr - ₹9.4 L/yr

Software Engineer
1.6k salaries
unlock blur

₹5 L/yr - ₹20 L/yr

Business Analyst
1.1k salaries
unlock blur

₹6 L/yr - ₹24 L/yr

Explore more salaries
Compare Societe Generale Global Solution Centre with

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

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