Premium Employer

i

This company page is being actively managed by Saint-Gobain Team. If you also belong to the team, you can get access from here

Saint-Gobain Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Saint-Gobain Solution Engineer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Scenario case was provided and I was asked to develop simulink model.
Round 2 - HR 

(1 Question)

  • Q1. Nothing unique about hr interview.
Round 1 - Technical 

(1 Question)

  • Q1. What is arbitration in can
  • Ans. 

    Arbitration in CAN is a process of resolving conflicts when multiple nodes try to transmit data simultaneously.

    • Arbitration is used in Controller Area Network (CAN) to ensure that only one node transmits data at a time.

    • Each node on the CAN bus has a unique identifier, and the node with the highest priority identifier gets to transmit its data first.

    • If two or more nodes try to transmit data at the same time, the arbitrat...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - can knowledge must. you should work on Automotive domain
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Gave topic for discussion. How anyone can conduct GD round for experienced people without checking their technical knowledge.

Round 2 - Technical 

(2 Questions)

  • Q1. Asked easy Java SQL questions
  • Q2. Are strings immutable and explain its benifits.
  • Ans. 

    Yes

    • Strings are immutable in most programming languages.

    • Immutable strings provide safety and consistency in code.

    • Immutable strings allow for efficient memory management.

    • Immutable strings enable string interning and caching for optimization.

    • Immutable strings facilitate thread safety in concurrent programming.

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Autosar questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 String matching on given string

Round 2 - Technical 

(2 Questions)

  • Q1. What is optimizer s
  • Ans. 

    An optimizer is a software tool or algorithm used to improve the performance of a system by minimizing errors or maximizing efficiency.

    • Optimizers are commonly used in programming languages to improve code execution speed and reduce memory usage.

    • Examples of optimizers include compiler optimizers, database query optimizers, and machine learning model optimizers.

    • Optimizers work by analyzing code or data to identify ineffi...

  • Answered by AI
  • Q2. What is LsTM s
  • Ans. 

    LSTM stands for Long Short-Term Memory, a type of recurrent neural network (RNN) architecture.

    • LSTM networks are designed to overcome the vanishing gradient problem in traditional RNNs.

    • They are capable of learning long-term dependencies in data sequences.

    • LSTM networks have gates (input, output, forget) that regulate the flow of information within the network.

    • They are commonly used in tasks such as speech recognition, la

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. What is stack overloading?
  • Ans. 

    Stack overloading occurs when the stack memory is exceeded due to excessive function calls or large local variables.

    • Occurs when the stack memory limit is exceeded

    • Caused by excessive function calls or large local variables

    • Can lead to stack overflow error

  • Answered by AI
  • Q2. What are acsess specifiers
  • Ans. 

    Access specifiers determine the level of access to classes, methods, and variables in object-oriented programming languages.

    • Access specifiers include public, private, protected, and default.

    • Public allows access from any other class.

    • Private restricts access to only within the same class.

    • Protected allows access within the same package and subclasses.

    • Default (no specifier) restricts access to only within the same package.

  • Answered by AI
  • Q3. What is class and object
  • Ans. 

    A class is a blueprint for creating objects, while an object is an instance of a class.

    • A class defines the properties and behaviors of objects.

    • An object is a specific instance of a class.

    • Objects can have their own unique values for properties defined in the class.

    • Classes can be used to create multiple objects with similar characteristics.

    • Example: Class 'Car' defines properties like 'color' and 'model', while an object

  • Answered by AI
  • Q4. Expalin oops concepts?
  • Ans. 

    OOPs concepts are fundamental principles of object-oriented programming, including inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex imple...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

Easy-Moderate, Coding problem related to string

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There was a aptitude test of 60 questions

Round 2 - Coding Test 

Coding test having 2 questions

Round 3 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Graduated with a degree in Computer Science

    • Worked on various projects using Java and Python

    • Familiar with web development technologies like HTML, CSS, and JavaScript

  • Answered by AI
  • Q2. Explain oops concept in detail
  • Ans. 

    OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPs focuses on creating objects that interact with each other to solve a problem

    • Key principles of OOPs include Inheritance, Encapsulation, Polymorphism, and Abstraction

    • Inheritance allows a class to inherit properties and behavior from another class

    • Encapsulation involves bundling data and method...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Kotlin coroutine
  • Q2. Easy leetcode question
  • Q3. Different types of launch mode
  • Ans. 

    Launch modes in Android determine how a new instance of an activity is associated with the current task.

    • Standard - creates a new instance of an activity in the task

    • SingleTop - if the activity is at the top of the stack, it will not be recreated

    • SingleTask - creates a new task and puts the activity at the root of the task

    • SingleInstance - similar to SingleTask, but the activity is the only one in the task

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1hour,Time and Speed,Time and work

Round 2 - Aptitude Test 

1 hour,Data Structure

Round 3 - Technical 

(1 Question)

  • Q1. 1 hour, Final Year Project

Tell us how to improve this page.

Join Saint-Gobain Leader in Light and Sustainable Construction

Interview Questions from Similar Companies

Tata Projects Interview Questions
4.2
 • 453 Interviews
KEC International Interview Questions
4.0
 • 314 Interviews
Tata Technologies Interview Questions
3.6
 • 263 Interviews
TCE Interview Questions
3.8
 • 251 Interviews
AECOM Interview Questions
4.2
 • 118 Interviews
View all
Team Member
526 salaries
unlock blur

₹1.4 L/yr - ₹8.3 L/yr

Key Account Manager
176 salaries
unlock blur

₹5.4 L/yr - ₹18 L/yr

Software Engineer
172 salaries
unlock blur

₹3 L/yr - ₹11.4 L/yr

Senior Software Engineer
168 salaries
unlock blur

₹6.5 L/yr - ₹24.1 L/yr

Production Engineer
155 salaries
unlock blur

₹1 L/yr - ₹11 L/yr

Explore more salaries
Compare Saint-Gobain with

Tata Projects

4.2
Compare

Shapoorji Pallonji Group

4.1
Compare

Kalpataru Projects International

4.1
Compare

Nagarjuna Construction Company

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