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 Software Engineer Trainee Interview Questions and Answers

Updated 25 Dec 2021

Saint-Gobain Software Engineer Trainee Interview Experiences

1 interview found

I applied via Recruitment Consultant and was interviewed in Nov 2021. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Why should we hire you?
  • Q2. Do you know about salesforce
  • Q3. Types of joins in sql
  • Ans. 

    Types of joins in SQL

    • Inner Join: returns only the matching rows from both tables

    • Left Join: returns all rows from the left table and matching rows from the right table

    • Right Join: returns all rows from the right table and matching rows from the left table

    • Full Outer Join: returns all rows from both tables

    • Cross Join: returns the Cartesian product of both tables

  • Answered by AI
  • Q4. Explain view state in asp. Net
  • Ans. 

    View state is a hidden field that stores the state of a web page and its controls between postbacks.

    • View state is used to maintain the state of controls on a web page.

    • It is stored as a hidden field on the page.

    • View state can be disabled to improve performance.

    • View state can be encrypted for security purposes.

  • Answered by AI
  • Q5. Where do you see yourself after 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - It was amazing, saint-gobain recruitment process is so smooth and recruitment team is also good and co operative. I would like to thank all of them for smooth on boarding.

Skills evaluated in this interview

Interview questions from similar companies

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 

Is women better hr then men

Round 2 - Technical 

(2 Questions)

  • Q1. Is string immutable and explain its benifits
  • Ans. 

    Yes

    • String is immutable, meaning its value cannot be changed once created

    • Immutable strings provide benefits like thread safety, caching, and security

    • Immutable strings allow for efficient memory management and optimization

    • Immutable strings enable easy sharing and reusability of string objects

  • Answered by AI
  • Q2. Jdk,jre,jvm working
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 - Aptitude Test 

BASIC APTITUDE QUESTIONS

Round 3 - Coding Test 

BASED ON ARRAYS AND STRINGS

Round 4 - Group Discussion 

NEED GOOD COMMUNICATION

Round 5 - Technical 

(1 Question)

  • Q1. BASICS OF SQL,OOPS,BASIC DS
Round 6 - HR 

(1 Question)

  • Q1. BASIC QUESTIONS
Interview experience
4
Good
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic algorithms concepts
  • Q2. 4 oop concepts in detail
  • Ans. 

    4 key OOP concepts are encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (class)

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

    • Polymorphism: ability for objects to be treated as instances of their parent class or their own class

    • Abstraction: hiding the complex implementation details and showing

  • Answered by AI
Round 2 - Coding Test 

Again just know coding concepts that’s what they care about

Interview Preparation Tips

Interview preparation tips for other job seekers - Just know your coding concepts, President algorithms
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Verbal reasoning
Logical reasoning
Analytical thinking

Round 2 - Group Discussion 

Common titles like culture , agricuture

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication skills...
Good programming knowledge....
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Why we use CAN in automotive?
  • Ans. 

    CAN is used in automotive for reliable and real-time communication between electronic control units.

    • CAN allows for communication between various electronic control units in a vehicle

    • It is reliable and can handle real-time data transmission

    • CAN is widely used in automotive for applications such as engine control, transmission control, and more

  • Answered by AI
  • Q2. What does a CAN frame look like ?
  • Ans. 

    A CAN frame is a data structure used in Controller Area Network (CAN) communication, consisting of an identifier, data, and control bits.

    • A CAN frame typically consists of an 11-bit or 29-bit identifier, which helps prioritize messages on the bus.

    • It also includes a data field, which can range from 0 to 8 bytes depending on the protocol version.

    • Control bits like the start of frame, arbitration field, control field, data ...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What is your current location? Are you able to commute to the office location?
  • Ans. 

    I am currently located in downtown Seattle and I am able to commute to the office location.

    • Located in downtown Seattle

    • Able to commute to office location

    • Have reliable transportation

  • Answered by AI
  • Q2. What is your expected salary?
  • Ans. 

    My expected salary is based on my experience, skills, and the market rate for software developers.

    • Consider my years of experience in software development.

    • Take into account my specialized skills and certifications.

    • Research the current market rate for software developers in this location.

    • Be open to negotiation based on the overall compensation package offered.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What is sparksession
  • Ans. 

    SparkSession is the entry point for programming Spark with the Dataset and DataFrame API.

    • It replaces the older SQLContext and HiveContext in Spark 2.0 and later.

    • Allows users to create DataFrames and execute SQL queries.

    • Example: `val spark = SparkSession.builder.appName("MyApp").getOrCreate()`.

    • Supports reading data from various sources like JSON, Parquet, and JDBC.

    • Example: `val df = spark.read.json("path/to/file.json")`

  • Answered by AI
  • Q2. What spark architechture
  • Ans. 

    Apache Spark is a unified analytics engine for big data processing, with built-in modules for streaming, SQL, machine learning, and graph processing.

    • Spark operates on a cluster computing model, allowing distributed data processing.

    • It uses Resilient Distributed Datasets (RDDs) for fault tolerance and parallel processing.

    • Spark provides high-level APIs in Java, Scala, Python, and R, making it accessible to various develop...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - better good to have this place and multiple techs you can learn
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. Just basics in java
  • Q2. Advance oops concepts
Round 2 - HR 

(2 Questions)

  • Q1. What do u know about our company
  • Ans. 

    Company is a leading software development firm specializing in creating innovative solutions for various industries.

    • Specializes in creating innovative software solutions

    • Works with clients from various industries

    • Known for high-quality and reliable products

  • Answered by AI
  • Q2. Strengths and waekness
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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java opps concept
  • Q2. App cycle status

Saint-Gobain Interview FAQs

What are the top questions asked in Saint-Gobain Software Engineer Trainee interview?

Some of the top questions asked at the Saint-Gobain Software Engineer Trainee interview -

  1. Explain view state in asp. ...read more
  2. Types of joins in ...read more

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
 • 457 Interviews
KEC International Interview Questions
4.0
 • 316 Interviews
Tata Technologies Interview Questions
3.6
 • 266 Interviews
TCE Interview Questions
3.8
 • 251 Interviews
AECOM Interview Questions
4.2
 • 119 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