Upload Button Icon Add office photos

Sterlite Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Sterlite Technologies Interview Questions, Process, and Tips

Updated 2 Mar 2025

Top Sterlite Technologies Interview Questions and Answers

View all 91 questions

Sterlite Technologies Interview Experiences

Popular Designations

165 interviews found

Software Developer Interview Questions & Answers

user image Amol Kailas Gadage

posted on 1 Feb 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(12 Questions)

  • Q1. Find the min and max from List of Integers using java 8 streams.
  • Ans. 

    Find min and max from List of Integers using Java 8 streams.

    • Use the `stream()` method on the List to create a stream of integers.

    • Use the `min()` method to find the minimum value.

    • Use the `max()` method to find the maximum value.

  • Answered by AI
  • Q2. Find 2nd largest element using java 8 streams from list of integers.
  • Ans. 

    Find 2nd largest element using Java 8 streams from a list of integers.

    • Sort the list of integers in descending order using streams.

    • Skip the first element to get the second largest element.

  • Answered by AI
  • Q3. Given a Product class and some ArrayList data Find which products has price greater than 200 using java 8 streams?. Find which products having maximum price?
  • Q4. Increase a value of List of Integers by *2 and written new list.
  • Ans. 

    Increase the values of a list of integers by 2 and create a new list.

    • Iterate through the list of integers

    • For each integer, add 2 to its value

    • Create a new list with the updated values

  • Answered by AI
  • Q5. What are the java new features?
  • Ans. 

    Java has introduced several new features in recent versions.

    • Java 8 introduced lambda expressions, which allow for functional programming.

    • Java 8 also introduced the Stream API for processing collections of data.

    • Java 9 introduced the module system, which provides better encapsulation and modularity.

    • Java 10 introduced local variable type inference, allowing the omission of explicit type declarations.

    • Java 11 introduced the...

  • Answered by AI
  • Q6. @Components vs @Repository
  • Ans. 

    The @Component and @Repository annotations are used in Spring Framework for different purposes.

    • Both annotations are used to define beans in the Spring container.

    • @Component is a generic stereotype annotation for any Spring-managed component.

    • @Repository is a specialization of @Component used for DAO classes.

    • The @Repository annotation provides additional exception translation for data access exceptions.

    • Using @Repository i...

  • Answered by AI
  • Q7. @SpringBootApplication
  • Q8. @Entity explain?
  • Ans. 

    The @Entity annotation is used in Java to mark a class as an entity, which represents a table in a relational database.

    • The @Entity annotation is part of the Java Persistence API (JPA) and is used in object-relational mapping (ORM) to map Java objects to database tables.

    • It is typically used in conjunction with other JPA annotations like @Table, @Column, and @Id.

    • The @Entity annotation is used to define the entity name, s...

  • Answered by AI
  • Q9. How the database is configure?
  • Ans. 

    The database is configured by setting up the necessary parameters and configurations to ensure proper functioning and performance.

    • Database configuration involves defining the database schema, tables, and relationships.

    • It includes setting up indexes and constraints for data integrity.

    • Configuring database security measures like user access control and permissions.

    • Tuning database performance by optimizing query execution ...

  • Answered by AI
  • Q10. What is Dockerfile?
  • Ans. 

    Dockerfile is a text file that contains instructions to build a Docker image.

    • Dockerfile is used to automate the creation of Docker images.

    • It specifies the base image, dependencies, environment variables, and commands to run.

    • Each instruction in the Dockerfile creates a new layer in the image.

    • Dockerfile can be version controlled and shared to ensure consistent builds.

    • Example: FROM ubuntu:latest RUN apt-get update && apt-...

  • Answered by AI
  • Q11. Explain CI CD and your project deployment.
  • Ans. 

    CI/CD is a software development practice that enables frequent and automated code integration, testing, and deployment.

    • CI/CD stands for Continuous Integration and Continuous Deployment.

    • It involves automating the process of integrating code changes, running tests, and deploying the application.

    • CI/CD helps in reducing manual errors, improving code quality, and increasing development speed.

    • Tools like Jenkins, GitLab CI/CD...

  • Answered by AI
  • Q12. What is mutable classes in java? How to create?
  • Ans. 

    Mutable classes in Java are classes whose state can be modified after creation.

    • Mutable classes allow changing their internal state

    • They can have mutable fields or methods that modify their state

    • To create a mutable class, define fields with non-final modifiers

    • Provide public methods to modify the state of the class

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Yet to sChedule

Skills evaluated in this interview

Top Sterlite Technologies Software Developer Interview Questions and Answers

Q1. Find the min and max from List of Integers using java 8 streams.
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Abstract class java
  • Q2. Inheritance in java
  • Ans. 

    Inheritance in Java allows a class to inherit properties and behaviors from another class.

    • Inheritance is achieved using the 'extends' keyword in Java.

    • Subclasses can access the methods and fields of their superclass.

    • Java does not support multiple inheritance, but a class can implement multiple interfaces.

  • Answered by AI
  • Q3. SQL query to find last element
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find the last element in a table.

    • Use ORDER BY column_name DESC to sort the data in descending order.

    • Use LIMIT 1 to retrieve only the last element.

  • Answered by AI
  • Q4. Html 5 vs Html
  • Ans. 

    HTML5 is the latest version of HTML with new features and improvements.

    • HTML5 supports new elements like <video>, <audio>, and <canvas> for multimedia content.

    • HTML5 introduces new APIs like Geolocation, Web Storage, and Web Workers for enhanced functionality.

    • HTML5 includes improvements in semantics, accessibility, and performance compared to HTML.

  • Answered by AI
  • Q5. About the company

Skills evaluated in this interview

Top Sterlite Technologies Software Developer Interview Questions and Answers

Q1. Find the min and max from List of Integers using java 8 streams.
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Sterlite Technologies Interview Questions and Answers for Freshers
illustration image

Interview Questions & Answers

user image Anonymous

posted on 4 Sep 2024

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

(3 Questions)

  • Q1. Why need to changes the current Job
  • Ans. 

    To seek new challenges, opportunities for growth, and to expand my skill set.

    • Seeking new challenges and opportunities for growth

    • Want to expand my skill set

    • Looking for a more fulfilling role

  • Answered by AI
  • Q2. For Exposer ourself and Learn from worldwide.
  • Q3. What is the expectation.
  • Ans. 

    The expectation is to effectively perform the duties and responsibilities of a Process Associate in the security department.

    • Understanding and following security protocols and procedures

    • Monitoring and responding to security alerts and incidents

    • Maintaining accurate records and reports

    • Coordinating with team members and other departments

    • Continuously improving security measures and practices

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - On board process and Could interview with Google meet.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java Development and UI
  • Q2. Explain the scrum ceremonies
  • Ans. 

    Scrum ceremonies are regular meetings held during a sprint to facilitate communication and collaboration within the team.

    • Sprint Planning: At the beginning of each sprint, the team plans the work to be done.

    • Daily Standup: A brief daily meeting where team members discuss progress, plans, and any obstacles.

    • Sprint Review: At the end of the sprint, the team demonstrates the completed work to stakeholders.

    • Sprint Retrospectiv...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer mostly was not interested in taking the interview.
He was asking the questions just for the sake of asking.

Skills evaluated in this interview

Project Manager Scrum Master Interview Questions asked at other Companies

Q1. What is agile? How you trained your team for agile development? What action item came out of sprint retro and how you handled? What techniques you follow in estimation? Who are stake holders of PI planning?
View answer (1)

Sterlite Technologies interview questions for popular designations

 Graduate Engineer Trainee (Get)

 (15)

 Field Engineer

 (11)

 Technical Lead

 (6)

 Senior Software Engineer

 (6)

 Project Engineer

 (4)

 Process Associate

 (4)

 Diploma Trainee Engineer

 (3)

 Graduate Engineer

 (3)

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

Average Test and was easy to clear

Round 2 - Technical 

(4 Questions)

  • Q1. Study Mechanical related topics
  • Q2. What are different gas laws
  • Ans. 

    Gas laws describe the behavior of gases under different conditions.

    • Boyle's Law: Pressure and volume of a gas are inversely proportional at constant temperature.

    • Charles's Law: Volume and temperature of a gas are directly proportional at constant pressure.

    • Gay-Lussac's Law: Pressure and temperature of a gas are directly proportional at constant volume.

    • Avogadro's Law: Volume of a gas is directly proportional to the number ...

  • Answered by AI
  • Q3. What is torson stress
  • Ans. 

    Torsion stress is the stress experienced by a material when it is subjected to twisting or torsional forces.

    • Torsion stress occurs when a material is twisted or subjected to torsional forces.

    • It is measured in units of force per unit area, such as pounds per square inch (psi) or pascals (Pa).

    • Torsion stress can cause deformation or failure in a material, especially if it exceeds the material's torsional strength.

    • Examples ...

  • Answered by AI
  • Q4. Different types of compressors
  • Ans. 

    Different types of compressors include reciprocating, rotary, centrifugal, and axial compressors.

    • Reciprocating compressors use pistons to compress the gas.

    • Rotary compressors use rotating impellers or screws to compress the gas.

    • Centrifugal compressors use a rotating impeller to accelerate the gas and then convert the kinetic energy into pressure.

    • Axial compressors use a series of rotating and stationary blades to compres

  • Answered by AI
Round 3 - HR 

(4 Questions)

  • Q1. General questions which are asked
  • Q2. Tell me about yourself
  • Q3. What are your strenghts
  • Ans. 

    My strengths include problem-solving, adaptability, and teamwork.

    • Strong problem-solving skills: I enjoy analyzing complex problems and finding innovative solutions.

    • Adaptability: I am able to quickly adapt to new situations and learn new technologies or processes.

    • Teamwork: I work well in a team environment, collaborating with others to achieve common goals.

    • Example: During my internship, I was part of a team that success...

  • Answered by AI
  • Q4. What are your hobbies

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Top Sterlite Technologies Graduate Engineer Trainee (Get) Interview Questions and Answers

Q1. What is OOP Concept? What is inheritance?
View answer (2)

Graduate Engineer Trainee (Get) Interview Questions asked at other Companies

Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Difference between Otto cycle and Diesel cycle? What is the process of both cycle and what is the effeciency of both cycle ? Which one is good in effeciency? Q:3 Difference between... read more
View answer (2)

Get interview-ready with Top Sterlite Technologies Interview Questions

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Approached by Company

Round 1 - Technical 

(2 Questions)

  • Q1. What is fiber types of fiber?
  • Ans. 

    Fiber is a type of carbohydrate that the body cannot digest. There are two main types of fiber: soluble and insoluble.

    • Soluble fiber dissolves in water and can help lower cholesterol and regulate blood sugar levels. Examples include oats, beans, and fruits.

    • Insoluble fiber does not dissolve in water and helps with digestion by adding bulk to the stool. Examples include whole grains, nuts, and vegetables.

  • Answered by AI
  • Q2. What is modulation
  • Ans. 

    Modulation is the process of varying a carrier signal's properties to transmit information.

    • Modulation involves changing one or more properties of a high-frequency carrier signal to encode information.

    • Common types of modulation include amplitude modulation (AM), frequency modulation (FM), and phase modulation (PM).

    • Modulation is used in various communication systems such as radio broadcasting, television broadcasting, an

  • Answered by AI

Production Associate Interview Questions asked at other Companies

Q1. Why milk loss temperature when in farmers hands?
View answer (1)

Jobs at Sterlite Technologies

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Networking ,os and MySQL questions and few questions based on resume will be asked
  • Ans. I don't remember much but networkung and MySQL questions are of moderate level.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - None just don't expect the unexpected

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Toughest time and how you handled
  • Ans. 

    Dealing with a project deadline delay due to unexpected technical challenges

    • Identified root cause of the technical challenges

    • Collaborated with team members to brainstorm solutions

    • Adjusted project timeline and communicated with stakeholders

    • Worked extra hours to meet the revised deadline

  • Answered by AI

Embedded Developer Interview Questions asked at other Companies

Q1. What is the difference betwe en nill pointer and void pointer
View answer (1)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Can you duty in shift

Round 2 - Technical 

(1 Question)

  • Q1. What work in last job

Regional Coordinator Interview Questions asked at other Companies

Q1. How can you demonstrate your ability to mobilize funds for the Agriculture Skill Development sector at ASCI?
View answer (2)

Interview Questions & Answers

user image Anonymous

posted on 9 Jan 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Sep 2023.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Linux commands mkdir or top command
  • Q2. Gitlab script writing
  • Q3. Doctor container and command
  • Q4. Git or gitclon questions
  • Q5. Gitlab ci-cd base questions
Contribute & help others!
anonymous
You can choose to be anonymous

Sterlite Technologies Interview FAQs

How many rounds are there in Sterlite Technologies interview?
Sterlite Technologies interview process usually has 2-3 rounds. The most common rounds in the Sterlite Technologies interview process are Technical, HR and Resume Shortlist.
How to prepare for Sterlite Technologies 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 Sterlite Technologies. The most common topics and skills that interviewers at Sterlite Technologies expect are Java, Python, Networking, Javascript and SQL.
What are the top questions asked in Sterlite Technologies interview?

Some of the top questions asked at the Sterlite Technologies interview -

  1. Is that you know Digital Multimeter? Show me how to use for different component...read more
  2. Tell me about proximity sensors & their types with working principa...read more
  3. If I provide you two 8pin relay, SMPS, DC motor, two push button so how you wil...read more
How long is the Sterlite Technologies interview process?

The duration of Sterlite Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

JOBS

Sterlite Technologies

No Jobs

JOBS

Sterlite Technologies

No Jobs

SALARIES

Oberoi Group of Hotels

SALARIES

Indecomm Global Services

LIST OF COMPANIES

Indecomm Global Services

Overview

SALARIES

Sterlite Technologies

JOBS

Healthplix Technologies

No Jobs

LIST OF COMPANIES

Healthplix Technologies

Overview

SALARIES

Sterlite Technologies

SALARIES

Sterlite Technologies

Tell us how to improve this page.

Sterlite Technologies Interview Process

based on 139 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Bharti Airtel Interview Questions
4.0
 • 843 Interviews
Vodafone Idea Interview Questions
4.1
 • 553 Interviews
View all

Sterlite Technologies Reviews and Ratings

based on 2.2k reviews

3.8/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

3.7

Salary

3.3

Job security

3.6

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 2.2k Reviews and Ratings
BNG Integration Engineer

Navi Mumbai,

Pune

+1

4-9 Yrs

Not Disclosed

State Head - Network Deployment

Pune

15-18 Yrs

Not Disclosed

Product Security Manager

Bangalore / Bengaluru

8-12 Yrs

₹ 25-30 LPA

Explore more jobs
Process Associate
662 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Field Engineer
300 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Officer
246 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
245 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
241 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Sterlite Technologies with

Bharti Airtel

4.0
Compare

Tata Communications

4.0
Compare

Vodafone Idea

4.1
Compare

Tech Mahindra

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