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 Associate Software Engineer Interview Questions and Answers for Experienced

Updated 27 Feb 2024

Saint-Gobain Associate Software Engineer Interview Experiences for Experienced

1 interview found

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

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

Round 1 - Aptitude Test 

Basics of coding and mathematics

Round 2 - Coding Test 

Hackerrank and Java program

Round 3 - Technical 

(1 Question)

  • Q1. Basics of Core java and socket programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Should have proper knowledge for Java and c# and frontend technology- react and angular

Interview questions from similar companies

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

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. About java and collections of java
  • Q2. Related to Data structure and coding
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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. V&V testing concepts
Round 2 - HR 

(1 Question)

  • Q1. About Alstom, previous projects, salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident to the answer. Prepare well for the interview
Interview experience
5
Excellent
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 

(3 Questions)

  • Q1. Mcdc , vnv techniques, v model
  • Q2. Oops concepts,ecp and bva
  • Q3. C language, structures, unions , storage classes
Round 3 - HR 

(1 Question)

  • Q1. Package negotiation
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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. HTML5, Javascript question
  • Q2. Responsive Web Design
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.
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
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic level of Q asked based on math ,english and programming

Round 2 - Coding Test 

Easy to medium level 7 Q asked and minimum 4 is compulsory for crack next round

Round 3 - One-on-one 

(1 Question)

  • Q1. It was like personal interview asked about familiy background and all

Saint-Gobain Interview FAQs

How many rounds are there in Saint-Gobain Associate Software Engineer interview for experienced candidates?
Saint-Gobain interview process for experienced candidates usually has 3 rounds. The most common rounds in the Saint-Gobain interview process for experienced candidates are Aptitude Test, Coding Test and Technical.

Tell us how to improve this page.

Saint-Gobain Associate Software Engineer Interview Process for Experienced

based on 1 interview

Interview experience

4
  
Good
View more
Join Saint-Gobain Leader in Light and Sustainable Construction

Interview Questions from Similar Companies

Tata Projects Interview Questions
4.2
 • 459 Interviews
KEC International Interview Questions
4.0
 • 318 Interviews
Tata Technologies Interview Questions
3.6
 • 266 Interviews
TCE Interview Questions
3.8
 • 253 Interviews
AECOM Interview Questions
4.2
 • 120 Interviews
View all
Saint-Gobain Associate Software Engineer Salary
based on 58 salaries
₹3 L/yr - ₹8 L/yr
5% more than the average Associate Software Engineer Salary in India
View more details

Saint-Gobain Associate Software Engineer Reviews and Ratings

based on 5 reviews

3.8/5

Rating in categories

2.9

Skill development

3.2

Work-life balance

2.9

Salary

4.3

Job security

3.2

Company culture

2.5

Promotions

3.4

Work satisfaction

Explore 5 Reviews and Ratings
Team Member
526 salaries
unlock blur

₹1.4 L/yr - ₹8.3 L/yr

Key Account Manager
180 salaries
unlock blur

₹5.4 L/yr - ₹18 L/yr

Senior Software Engineer
166 salaries
unlock blur

₹6.5 L/yr - ₹24.1 L/yr

Software Engineer
164 salaries
unlock blur

₹3 L/yr - ₹14 L/yr

Production Engineer
157 salaries
unlock blur

₹1 L/yr - ₹9.7 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