Upload Button Icon Add office photos

Filter interviews by

Sterlite Technologies Software Engineer Intern Interview Questions and Answers

Updated 16 Sep 2021

Sterlite Technologies Software Engineer Intern Interview Experiences

1 interview found

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It was a coding round. Two coding questions.

  • Q1. Check if two trees are Mirror

    You are given two arbitrary binary trees consisting of N and M number of nodes respectively, your task is to check whether the two trees are mirror of each other or not.

    Two...

  • Ans. Recursive Approach

    Traverse the tree T in preorder fashion and treat every node of the given tree T as the root, treat it as a subtree and compare the corresponding subtree with the given subtree S for equality. For checking the equality, we can compare all the nodes of the two subtrees.

     

    For two trees ‘S’ and ‘T’ to be mirror images, the following three conditions must be true:

    1. Their root node’s data must be the sam...
  • Answered by CodingNinjas
  • Q2. Partition a set into two subsets such that the difference of subset sums is minimum.

    You are given an array containing N non-negative integers. Your task is to partition this array into two subsets such th...

  • Ans. Recursion
    • This problem can be solved using recursion. And the idea behind this is to generate all the possible sums from the given set.
    • We will try different combinations for one of the subsets and accordingly calculate the sums of both the subsets and store the minimum. Assume that the sum of elements of the array is SUM, and sum of the elements of the first subset is S1, thus we can find the sum of 2nd subset as SUM - ...
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer Intern in PuneEligibility criteriaGPA greater than 7.5Sterlite Technologies Limited interview preparation:Topics to prepare for the interview - Analog Electronics, Digital Electronics, Communication Network, Basic Electronics Devices, Data Structures and algorithmsTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : For analog one can refer to Behzad Razavi on YouTube
Tip 2 : Be clear with working of zener diode, rectifier opération and pn junction ideal model
Tip 3 : A project using Arduino Uno is plus, and sufficient knowledge of Python

Application resume tips for other job seekers

Tip 1 : Be simple and clear in your points. Don't exaggerate
Tip 2 : Be prepare with with hobbies mentioned in resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. Questions on c/c++ concepts
Round 2 - Technical 

(1 Question)

  • Q1. Question on doubly linked list
Round 3 - One-on-one 

(1 Question)

  • Q1. Manegerial round - why cisco
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. OOPs and Hashing related questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at BRACT's Vishwakarma Institute of Information Technology, Pune and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q2. Find missing number from nth number array.
  • Ans. 

    Find missing number from nth number array.

    • Iterate through the array and calculate the sum of all numbers

    • Calculate the sum of numbers from 1 to n using the formula n*(n+1)/2

    • Subtract the sum of array from the sum of numbers from 1 to n to find the missing number

  • Answered by AI
  • Q3. Explain inheritance and it types
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows a class to reuse code from another class.

    • Types of inheritance include single inheritance, where a class inherits from only one parent class, and multiple inheritance, where a class inherits from multiple parent classes.

    • Example: Class B inherits from Class A, so Class B can access

  • Answered by AI
  • Q4. Find 2nd max elements from aaray
  • Ans. 

    Find 2nd max element from array of strings

    • Sort the array in descending order

    • Skip the first element (max element)

    • Return the second element

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Check if the linked list is palindrome or not
  • Ans. 

    To check if a linked list is a palindrome, compare the first half of the list with the reversed second half.

    • Traverse the linked list to find the middle node

    • Reverse the second half of the linked list

    • Compare the first half with the reversed second half to check for palindrome

  • Answered by AI
  • Q2. C string questions
Round 2 - Technical 

(2 Questions)

  • Q1. Operating systems questions
  • Q2. Linked list and system design question

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Very good but easy
easy question long question

Round 2 - Technical 

(2 Questions)

  • Q1. Java codingg on sql programming
  • Q2. Colection framework java concept
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions related to project mentioned in CV. Questions around reliability, availability, scalability of system.
  • Q2. 2 medium coding questions on arrays and hashmap.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Golang basics, goroutines, channels.
  • Q2. Coding questions on a shared board
Round 3 - One-on-one 

(3 Questions)

  • Q1. Deep dive into the work at current company and projects.
  • Q2. How interprocess communications take place, how goroutines communicate internally, quite in-depth questions, varying over several domains.
  • Ans. 

    Interprocess communication involves various mechanisms like pipes, sockets, shared memory, etc. Goroutines communicate using channels and shared memory.

    • Interprocess communication can be achieved through mechanisms like pipes, sockets, shared memory, message queues, etc.

    • Goroutines in Go communicate internally using channels, which are typed conduits through which you can send and receive values.

    • Shared memory can also be...

  • Answered by AI
  • Q3. Design a URL shortener service
  • Ans. 

    Design a URL shortener service

    • Generate a unique short code for each URL

    • Store the mapping of short code to original URL in a database

    • Redirect users from short URL to original URL

    • Consider scalability and performance of the service

    • Implement analytics to track usage statistics

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with what you've written in your Resume.
Have in depth knowledge of basics of the stack you're advertising.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Difficult online round

Round 2 - One-on-one 

(2 Questions)

  • Q1. Arrays from neetcode
  • Ans. 

    Arrays are a collection of strings in programming used to store multiple values under a single variable name.

    • Arrays are declared using square brackets []

    • Each element in an array is accessed by its index, starting from 0

    • Example: var fruits = ['apple', 'banana', 'orange']

  • Answered by AI
  • Q2. Linked list from neetcode
Round 3 - One-on-one 

(2 Questions)

  • Q1. Trees in neet code
  • Ans. 

    Trees in neet code refer to the implementation of tree data structures in coding challenges on the platform NeetCode.

    • Trees are a common data structure used in coding challenges to represent hierarchical relationships between data.

    • Common tree operations include traversal (inorder, preorder, postorder), insertion, deletion, and searching.

    • Examples of tree-related coding challenges on NeetCode include implementing a binary...

  • Answered by AI
  • Q2. Trees in leet code
  • Ans. 

    Trees in leetcode are a common topic for coding interviews, involving various tree traversal and manipulation techniques.

    • Understand different tree traversal methods like inorder, preorder, and postorder.

    • Learn about common tree algorithms like finding the height, diameter, and lowest common ancestor.

    • Practice solving tree-related problems on leetcode to improve your skills.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java basics , oops , spring
Round 2 - One-on-one 

(1 Question)

  • Q1. Manger round basics behavior
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Ds implementation in python
  • Ans. 

    Data structure implementation in Python

    • Use built-in data structures like lists, dictionaries, sets, etc.

    • Implement custom data structures like linked lists, stacks, queues, trees, etc.

    • Utilize libraries like NumPy for efficient array operations

    • Practice implementing algorithms using data structures

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Leetcode medium python question

Interview Preparation Tips

Interview preparation tips for other job seekers - do not lie in resume and prep for os, c/c++, coa/hpc concepts

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Bharti Airtel Interview Questions
4.0
 • 806 Interviews
Vodafone Idea Interview Questions
4.1
 • 540 Interviews
Cisco Interview Questions
4.2
 • 392 Interviews
Indus Towers Interview Questions
3.8
 • 165 Interviews
View all
Process Associate
683 salaries
unlock blur

₹2 L/yr - ₹5.6 L/yr

Senior Software Engineer
306 salaries
unlock blur

₹4.8 L/yr - ₹16.8 L/yr

Field Engineer
303 salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Technical Lead
245 salaries
unlock blur

₹8.5 L/yr - ₹28 L/yr

Associate Officer
236 salaries
unlock blur

₹3 L/yr - ₹7.3 L/yr

Explore more salaries
Compare Sterlite Technologies with

Bharti Airtel

4.0
Compare

Tata Communications

4.1
Compare

Vodafone Idea

4.1
Compare

Tech Mahindra

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview