Upload Button Icon Add office photos

Filter interviews by

SGS Senior Software Engineer Interview Questions and Answers

Updated 3 Sep 2024

SGS Senior Software Engineer Interview Experiences

1 interview found

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 before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It was a test to create a login page and connect to database

Round 2 - Technical 

(2 Questions)

  • Q1. What is difference between interface and abstract class
  • Ans. 

    Interface is a contract with no implementation, while abstract class can have some implementation.

    • Interface cannot have any implementation, only method signatures

    • Abstract class can have both abstract methods and concrete methods

    • A class can implement multiple interfaces but can only inherit from one abstract class

    • Interfaces are used to achieve multiple inheritance in Java

  • Answered by AI
  • Q2. What are main concepts of oops
  • Ans. 

    Main concepts of OOP include encapsulation, inheritance, polymorphism, and abstraction.

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

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

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

    • Abstraction: Hiding the complex implementation details and showing only the nec

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare with basic concetps

Interview questions from similar companies

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

(1 Question)

  • Q1. Architecture questions
Round 2 - HR 

(1 Question)

  • Q1. Behaviour questions
Round 1 - Technical 

(1 Question)

  • Q1. Basic questions from your previous job profile.
Round 2 - Technical 

(1 Question)

  • Q1. Advance level data structures and algorithms questions.
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions and hobbies.

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst company to work with. Lots of politics. Noncoperative team. Unprofessional people.

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • It is achieved through method overriding and method overloading.

    • Examples include function overloading, operator overloading, and inheritance.

    • Polymorphism helps in achieving loose coupling and flexibility in code design.

  • Answered by AI
  • Q2. Difference b/w abstract class and an interface
  • Ans. 

    Abstract class is a class that can have both abstract and non-abstract methods while an interface can only have abstract methods.

    • Abstract class can have constructors while interface cannot

    • A class can implement multiple interfaces but can only inherit from one abstract class

    • Abstract class can have instance variables while interface cannot

    • Abstract class can provide default implementation for some methods while interface ...

  • Answered by AI
  • Q3. How to create custom exceptions
  • Ans. 

    Custom exceptions can be created by extending the Exception class and defining the desired behavior.

    • Create a new class that extends the Exception class

    • Define the desired behavior for the exception

    • Throw the custom exception when necessary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic questions only.. easy to crack

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Apr 2023. There were 4 interview rounds.

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. - Coin change Variation - Behaviour based questions - Puzzle
Round 3 - Technical 

(1 Question)

  • Q1. - 0-1 knapsack and print its weight - Past Experience and Project
  • Ans. 

    0-1 knapsack problem involves selecting items to maximize value within a weight constraint.

    • 0-1 knapsack is a classic optimization problem where items have a weight and value, and the goal is to maximize the total value while staying within a weight limit.

    • Dynamic programming is commonly used to solve the 0-1 knapsack problem efficiently.

    • Example: Given items with weights [2, 3, 4, 5] and values [3, 4, 5, 6], and a knapsa...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. - SQL Joins - Rest API Paging - Frontend Questions - Past Experience

Interview Preparation Tips

Interview preparation tips for other job seekers - I won't recommend giving your time here as ultimately you will get ghosted after the final interview

Skills evaluated in this interview

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduction about yourself.
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications.

    • I have a strong proficiency in programming languages like Java, Python, and JavaScript.

    • I have experience in working with frameworks like Spring Boot and Django.

    • I am skilled in front-end development using HTML, CSS, and JavaScript.

    • I have worked on database management systems like MySQL and MongoDB.

    • I have knowledge of version control syste...

  • Answered by AI
  • Q2. Hashmap internal working

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not know about the organization but the interview had a very arrogant tone which tells much about what type of people are working there.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Architecture questions
Round 2 - HR 

(1 Question)

  • Q1. Behaviour questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Topics related react, typescript, OOPs
  • Q2. Topics related optimizations
Round 2 - Technical 

(2 Questions)

  • Q1. Project related questions
  • Q2. Question about certain libraries I have used previously.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all your basics.

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • It is achieved through method overriding and method overloading.

    • Examples include function overloading, operator overloading, and inheritance.

    • Polymorphism helps in achieving loose coupling and flexibility in code design.

  • Answered by AI
  • Q2. Difference b/w abstract class and an interface
  • Ans. 

    Abstract class is a class that can have both abstract and non-abstract methods while an interface can only have abstract methods.

    • Abstract class can have constructors while interface cannot

    • A class can implement multiple interfaces but can only inherit from one abstract class

    • Abstract class can have instance variables while interface cannot

    • Abstract class can provide default implementation for some methods while interface ...

  • Answered by AI
  • Q3. How to create custom exceptions
  • Ans. 

    Custom exceptions can be created by extending the Exception class and defining the desired behavior.

    • Create a new class that extends the Exception class

    • Define the desired behavior for the exception

    • Throw the custom exception when necessary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic questions only.. easy to crack

Skills evaluated in this interview

I applied via campus placement at Chaitanya Bharathi Institute of Technology, Hyderabad and was interviewed in Feb 2022. There were 4 interview rounds.

Round 1 - Coding Test 

It was a one hour hackerrank coding test where we need to solve two coding questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. It was mostly based on HTML, CSS, Javascript
Round 3 - One-on-one 

(1 Question)

  • Q1. It was 2nd technical round where I was grilled on topics like DBMS, OOPS, DSA and coding.
Round 4 - One-on-one 

(1 Question)

  • Q1. It was an interview round with the Vice President. Was more of a casual talk.

Interview Preparation Tips

Topics to prepare for Reputation.com Software Engineer interview:
  • data structures
  • Coding
  • DBMS
  • HTML
  • CSS
  • Javascript
  • Java
  • OOPS
Interview preparation tips for other job seekers - Brush up concepts of Data Structures and Algorithms and be thorough with web technologies and concepts like DBMS, OOPS, etc.

SGS Interview FAQs

How many rounds are there in SGS Senior Software Engineer interview?
SGS interview process usually has 2 rounds. The most common rounds in the SGS interview process are Coding Test and Technical.
What are the top questions asked in SGS Senior Software Engineer interview?

Some of the top questions asked at the SGS Senior Software Engineer interview -

  1. what is difference between interface and abstract cl...read more
  2. what are main concepts of o...read more

Tell us how to improve this page.

SGS Senior Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Bureau Veritas Interview Questions
3.9
 • 107 Interviews
TÜV NORD Interview Questions
3.8
 • 61 Interviews
TÜV SÜD Interview Questions
3.9
 • 60 Interviews
Intertek Interview Questions
3.8
 • 50 Interviews
CMS Infosystems Interview Questions
3.6
 • 50 Interviews
Cashify Interview Questions
3.8
 • 39 Interviews
Titan Eye Plus Interview Questions
4.3
 • 29 Interviews
View all

SGS Senior Software Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Inspection Engineer
505 salaries
unlock blur

₹1.1 L/yr - ₹9.5 L/yr

Chemist
297 salaries
unlock blur

₹1.5 L/yr - ₹7.2 L/yr

Executive
230 salaries
unlock blur

₹2 L/yr - ₹9.1 L/yr

Senior Executive
173 salaries
unlock blur

₹4 L/yr - ₹12.2 L/yr

Assistant Manager
118 salaries
unlock blur

₹5.4 L/yr - ₹17 L/yr

Explore more salaries
Compare SGS with

Bureau Veritas

4.0
Compare

Intertek

3.8
Compare

TÜV SÜD

3.9
Compare

DNV GL

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