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
3.8

based on 2.3k Reviews

Filter interviews by

Societe Generale Global Solution Centre Lead Java Developer Interview Questions and Answers

Updated 9 May 2024

Societe Generale Global Solution Centre Lead Java Developer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Time complexity ordering
  • Q2. Write a program to sum to array in place
  • Ans. 

    Program to sum two arrays in place without using extra space

    • Iterate through the arrays from right to left, adding the elements and storing the sum in the first array

    • Handle carry while adding the elements

    • Ensure to handle cases where arrays have different lengths

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Java microservice rest spring boot

Round 2 - One-on-one 

(2 Questions)

  • Q1. Code count char in string
  • Ans. 

    Count the occurrences of a specific character in a given string.

    • Iterate through each character in the string and compare it to the target character.

    • Increment a counter each time the target character is found.

    • Return the final count of the target character.

  • Answered by AI
  • Q2. Difference monolitic and microservice
  • Ans. 

    Monolithic is a single, large application while microservices is a collection of small, independent services.

    • Monolithic architecture is a single, self-contained unit where all components are interconnected and interdependent.

    • Microservices architecture breaks down the application into smaller, loosely coupled services that communicate with each other through APIs.

    • Monolithic applications are typically easier to develop a...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to group by a value using Java stream Api
  • Ans. 

    Group by a value using Java stream Api

    • Use the Collectors.groupingBy() method to group elements by a specific value

    • Provide a classifier function to specify the grouping criteria

    • Example: Map> groupedByDepartment = employees.stream().collect(Collectors.groupingBy(Employee::getDepartment));

Answered by AI
  • Q2. What is Comparable and Comparator
  • Ans. 

    Comparable and Comparator are interfaces in Java used for comparing objects.

    • Comparable is used for natural ordering of objects, implemented in the class of the object being compared.

    • Comparator is used for custom ordering of objects, implemented in a separate class.

    • Example: Comparable interface is used in String class for natural ordering, while Comparator interface can be used to sort a list of custom objects based on

  • Answered by AI

    Skills evaluated in this interview

    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 Dec 2024. There was 1 interview round.

    Round 1 - Technical 

    (8 Questions)

    • Q1. What improvements to interfaces were introduced in Java 8 that were missing in Java 7, specifically regarding static and default methods?
    • Q2. Explain internal working of HashMap ? How to synchronize it ?
    • Q3. Given a list of employees with their ratings, how can you sort the employees based on their ratings using the Java 8 Streaming API?
    • Q4. Will the program compile if the parent class throws a runtime exception while the child class throws an arithmetic exception?
    • Q5. In a Spring Boot application with two databases, how can you configure JDBC to specify which database to use?
    • Q6. How to use a jetty server in your spring boot application ?
    • Q7. Difference between @RequestParam and @PathVariable ?
    • Q8. How would you handle a scenario where one microservice is awaiting a response from another microservice that is taking an extended time to respond?

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare the basics about Java 8 , Core Java , Springboot , Microservices and MySql.
    Interview experience
    4
    Good
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via Walk-in and was interviewed in Nov 2024. There was 1 interview round.

    Round 1 - Technical 

    (4 Questions)

    • Q1. Given an array {1, 2, 1, 4, 5, 4, 8, 7}, how can you use Streams to remove duplicates while retaining only the even numbers?
    • Ans. 

      Use Streams to remove duplicates and retain only even numbers from an array.

      • Convert the array to a stream using Arrays.stream()

      • Use distinct() to remove duplicates

      • Filter out odd numbers using filter()

      • Collect the result using collect(Collectors.toList())

    • Answered by AI
    • Q2. What is the use of Static and final when you will use Static methods
    • Ans. 

      Static methods can be accessed without creating an instance of the class, while final keyword makes the method unchangeable.

      • Static methods belong to the class itself, not to any specific instance

      • Final keyword ensures that the method cannot be overridden in subclasses

      • Static methods are commonly used for utility methods that do not require access to instance variables

      • Example: Math class in Java has static methods like Ma

    • Answered by AI
    • Q3. What is the difference between @restController and @controller Annotation
    • Ans. 

      The @RestController annotation is used to define RESTful web services while @Controller annotation is used to define MVC controller.

      • RestController is a specialized version of Controller used for RESTful web services

      • RestController eliminates the need for @ResponseBody annotation

      • Controller is used for traditional MVC controller functionality

      • RestController returns data directly without needing to go through a view resolve...

    • Answered by AI
    • Q4. What is microservices why we use it
    • Ans. 

      Microservices are a software development technique where applications are composed of small, independent services that communicate with each other.

      • Microservices allow for easier scalability and maintenance of complex applications.

      • Each service in a microservices architecture can be developed, deployed, and scaled independently.

      • Microservices promote flexibility and agility in software development.

      • Examples of companies us...

    • Answered by AI

    Interview Preparation Tips

    Topics to prepare for Cognizant Senior Java Developer interview:
    • Java SpringBoot
    Interview preparation tips for other job seekers - Need to have strong knowledge on basics Java Spring boot and Microservices
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. Explain architecture of your project
    • Q2. Some questions on Java, Spring Boot and sql
    Round 2 - Technical 

    (2 Questions)

    • Q1. Project flow and some behavioural questions
    • Q2. Project contribution of yours
    • Ans. 

      Developed a web application for tracking employee attendance and performance

      • Implemented user authentication and authorization using Spring Security

      • Utilized Hibernate for database interaction and data persistence

      • Designed and developed RESTful APIs for frontend integration

      • Used AngularJS for frontend development to create interactive user interfaces

    • Answered by AI
    Round 3 - HR 

    (1 Question)

    • Q1. Basic formalities before offer release

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Understand your project properly and have your basic of programming very clear
    Interview experience
    1
    Bad
    Difficulty level
    Moderate
    Process Duration
    2-4 weeks
    Result
    Not Selected

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

    Round 1 - Coding Test 

    The first round was an interview conducted with a GENAI virtual bot.

    Round 2 - One-on-one 

    (2 Questions)

    • Q1. Internal architecture of Spring boot, how enable autoconfiguration works
    • Ans. 

      Spring Boot uses autoconfiguration to automatically configure the Spring application based on dependencies and properties.

      • Spring Boot autoconfiguration is achieved through @EnableAutoConfiguration annotation

      • Autoconfiguration classes are located in the org.springframework.boot.autoconfigure package

      • Autoconfiguration classes are conditionally applied based on the presence of specific classes or properties

    • Answered by AI
    • Q2. Questions mostly on microservices and coding question on restTemplate

    Interview Preparation Tips

    Topics to prepare for Wipro Senior Java Developer interview:
    • Java
    • Spring Boot
    • Microservices
    • REST API
    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    No response

    I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

    Round 1 - One-on-one 

    (3 Questions)

    • Q1. Difference between hashmap and hash table
    • Ans. 

      HashMap is non-synchronized and allows null values, while HashTable is synchronized and does not allow null values.

      • HashMap is non-synchronized, meaning it is not thread-safe, while HashTable is synchronized and thread-safe.

      • HashMap allows null values for both keys and values, while HashTable does not allow null keys or values.

      • HashMap is generally preferred for non-thread-safe applications, while HashTable is used in mul

    • Answered by AI
    • Q2. Static block related questions
    • Q3. Arraylist and linkedlist question

    Skills evaluated in this interview

    Interview experience
    2
    Poor
    Difficulty level
    Moderate
    Process Duration
    2-4 weeks
    Result
    No response

    I applied via Approached by Company and was interviewed in May 2024. There were 4 interview rounds.

    Round 1 - Technical 

    (4 Questions)

    • Q1. What are microservices according to you?
    • Ans. 

      Microservices are a software development technique where an application is divided into smaller, independent services that communicate with each other through APIs.

      • Microservices are small, independent services that focus on specific business functions.

      • Each microservice can be developed, deployed, and scaled independently.

      • Microservices communicate with each other through APIs, typically using lightweight protocols like ...

    • Answered by AI
    • Q2. Explain Microservices Architecture used in your project
    • Ans. 

      Microservices architecture is a design approach where a single application is composed of small, independent services that communicate with each other.

      • Each microservice is responsible for a specific business function or capability

      • Microservices communicate with each other through APIs

      • Each microservice can be developed, deployed, and scaled independently

      • Microservices architecture promotes flexibility, scalability, and re

    • Answered by AI
    • Q3. How are 4-5 microservices connected in rest api's? which technique you are using?
    • Ans. 

      Microservices are connected in REST APIs using communication protocols like HTTP, messaging queues, and service discovery.

      • Microservices communicate with each other using HTTP requests and responses.

      • Messaging queues like RabbitMQ or Kafka can be used for asynchronous communication between microservices.

      • Service discovery tools like Eureka or Consul help in locating and connecting to different microservices.

      • API Gateway ca...

    • Answered by AI
    • Q4. Coding question - 1. Create a immutable class of orders. What happens when two objects are created out of it. 2.Using the immutable orders create a set of orders and how will you sort these out. 3.Given ...
    • Ans. 

      Creating immutable class of orders, sorting orders, finding average of lists of integers.

      • Create an immutable class Orders with private final fields and no setter methods.

      • Override equals() and hashCode() methods to ensure uniqueness of objects.

      • Use Collections.unmodifiableSet() to create a set of orders and Collections.sort() to sort them.

      • Iterate through the List of List of String of integers, convert to integers, and ca

    • Answered by AI
    Round 2 - Technical 

    (2 Questions)

    • Q1. Explain Spring Cloud and how you are using in microservices?
    • Ans. 

      Spring Cloud is a set of tools and frameworks for building cloud-native applications in Java.

      • Spring Cloud provides tools for service discovery, load balancing, configuration management, and more in microservices architecture.

      • It includes projects like Eureka for service discovery, Ribbon for client-side load balancing, and Config Server for externalized configuration.

      • Spring Cloud integrates with Spring Boot to simplify ...

    • Answered by AI
    • Q2. Explain your deployment build config?
    • Ans. 

      Deployment build config includes settings for deploying the application.

      • Use tools like Maven or Gradle to manage dependencies and build the project

      • Specify deployment environment configurations in a separate file (e.g. application.properties)

      • Define build scripts for tasks like compiling, packaging, and deploying the application

      • Leverage CI/CD pipelines for automated builds and deployments

    • Answered by AI
    Round 3 - HR 

    (2 Questions)

    • Q1. Explain your project?
    • Q2. Your expectations from the company
    Round 4 - Coding Test 

    Given a project, you need to create logic for a service using helpers and finally give a aggregate of the final converted price .

    Given few java 8 programming functions, you need to convert them to respective java 11 functions

    Interview Preparation Tips

    Topics to prepare for CGI Group Java Full Stack Developer interview:
    • Microservices
    • java11
    • Angular
    • kafka
    Interview preparation tips for other job seekers - After all the time that has got invested, they told me i cleared everything with passing colors and they said in manegrial/Hr that they will share an offer. I waited and tried to reach out to them over mail and phone. Then i got to know that i got ghosted and our time means nothing to them. Just few un-professional people wasting others time.

    Skills evaluated in this interview

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

    I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

    Round 1 - Technical 

    (2 Questions)

    • Q1. Hashmap internal working
    • Q2. Default methods and multiple abstraction, asynchronous calls in java

    Societe Generale Global Solution Centre Interview FAQs

    How many rounds are there in Societe Generale Global Solution Centre Lead Java Developer interview?
    Societe Generale Global Solution Centre interview process usually has 1 rounds. The most common rounds in the Societe Generale Global Solution Centre interview process are Technical.
    How to prepare for Societe Generale Global Solution Centre Lead Java 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 Societe Generale Global Solution Centre. The most common topics and skills that interviewers at Societe Generale Global Solution Centre expect are Kotlin, Microservices, Spring Boot, Spring Mvc and TDD.
    What are the top questions asked in Societe Generale Global Solution Centre Lead Java Developer interview?

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

    1. Write a program to sum to array in pl...read more
    2. Time complexity order...read more

    Tell us how to improve this page.

    Join Societe Generale Global Solution Centre Building together, a Better & Sustainable future.

    Interview Questions from Similar Companies

    Accenture Interview Questions
    3.9
     • 8.1k Interviews
    Wipro Interview Questions
    3.7
     • 5.6k Interviews
    Cognizant Interview Questions
    3.8
     • 5.5k Interviews
    Capgemini Interview Questions
    3.8
     • 4.8k Interviews
    Genpact Interview Questions
    3.9
     • 3k Interviews
    IBM Interview Questions
    4.0
     • 2.4k Interviews
    DXC Technology Interview Questions
    3.7
     • 804 Interviews
    Nagarro Interview Questions
    4.0
     • 775 Interviews
    Publicis Sapient Interview Questions
    3.5
     • 606 Interviews
    View all
    Senior Analyst
    1.8k salaries
    unlock blur

    ₹4.5 L/yr - ₹15 L/yr

    Software Engineering Specialist
    1.7k salaries
    unlock blur

    ₹8.8 L/yr - ₹33 L/yr

    Analyst
    1.5k salaries
    unlock blur

    ₹2.8 L/yr - ₹10.5 L/yr

    Software Engineer
    1.4k salaries
    unlock blur

    ₹5 L/yr - ₹19.5 L/yr

    Business Analyst
    1.1k salaries
    unlock blur

    ₹6 L/yr - ₹26 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

    4.0
    Compare

    Barclays

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