Upload Button Icon Add office photos

Filter interviews by

Stesalit Interview Questions and Answers for Experienced

Updated 13 Mar 2025

Stesalit Interview Experiences for Experienced

Popular Designations

2 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Technical Questions,regarding testing and Process of transformer.
  • Q2. Ability to handle the local manpower and management.

Interview Preparation Tips

Interview preparation tips for other job seekers - Growing company with multiple projects for Indian Railways

Production Manager Interview Questions asked at other Companies

Q1. Production, Maintenance, Quality and Safety. Out of four, tell me the most important and least important thing for you and why?
View answer (10)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2022. There were 3 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 

(4 Questions)

  • Q1. About job fropile in previous company
  • Q2. About the working of my product.
  • Q3. Problem solving ability
  • Q4. Travelling condition Across India
  • Ans. 

    Travelling conditions across India vary greatly depending on the region and mode of transportation.

    • Road conditions can range from well-maintained highways to narrow, pothole-filled roads.

    • Railway network is extensive but trains can be crowded and delays are common.

    • Air travel is convenient for long distances but can be expensive.

    • Public transportation in major cities is generally reliable but can be overcrowded during pea...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Experience and salary drawn reason of leaving

Assistant Customer Support Operations Manager Interview Questions asked at other Companies

Q1. Travelling condition Across India
View answer (1)

Interview questions from similar companies

I applied via LinkedIn and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Coding Test 

There will be 3 coding questions. They are of medium and hard level.

Round 2 - Technical 

(1 Question)

  • Q1. Sort array consisting 0's 1's and 2's without inbuilt functions
  • Ans. 

    Sort an array of 0's, 1's, and 2's without using inbuilt functions.

    • Use three pointers to keep track of the last index of 0's, 1's, and 2's

    • Iterate through the array and swap elements based on their value

    • Continue until all elements are sorted

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Os cn related questions
Round 4 - HR 

(1 Question)

  • Q1. Java questions and general hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in Java and CS topics.
DSA is anyways compulsory for this company you need to solve the questions in the given time

Skills evaluated in this interview

Intern Interview Questions & Answers

Ivanti user image Anonymous

posted on 29 Sep 2022

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

All coding questions were ad hoc

Round 3 - Technical 

(2 Questions)

  • Q1. Leetcode questions were asked
  • Q2. A question about cache memory was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Having good dsa basics and cse basics is essential
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 2023. There was 1 interview round.

Round 1 - Assignment 

I had to evaluate a software and let them understand where this software could be implemented and the pros and cons of the software.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest about your work experience

Interview Questionnaire 

1 Question

  • Q1. What js difference between === and ==
  • Ans. 

    === compares value and type, while == only compares value

    • === is stricter than == in type checking

    • === returns true only if both operands are of the same type and have the same value

    • == performs type coercion, which can lead to unexpected results

    • For example, '5' == 5 returns true, but '5' === 5 returns false

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your basics, oops concepts, advance framework

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. C# standard QA,Azure

Interview Preparation Tips

Interview preparation tips for other job seekers - 1)C# program --like find second largest number
2)sql query writing like using group by etc
3)standard C# Q/A
4)Scenario based ques like - how you troubleshoot any web page low performance
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic ques related to resume
Round 1 - Technical 

(1 Question)

  • Q1. Aura related questions
Round 2 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips
Round 3 - Group Discussion 
Pro Tip by AmbitionBox:
Be a good listener. GDs are not just about speaking. Your listening skills will give you a lot of points to counter and speak when your turn comes.
View all tips
Round 4 - HR 

(2 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Share details of your previous job.

Interview Preparation Tips

Interview preparation tips for other job seekers - Na
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Difference between Asp.net and Ado.net? Explain about Ado.net complete briefly?
  • Ans. 

    ASP.NET is a web development framework while ADO.NET is a data access technology for connecting to databases.

    • ASP.NET is used for building web applications, while ADO.NET is used for accessing and manipulating data from databases.

    • ASP.NET provides a framework for creating dynamic web pages, handling user input, and managing state, while ADO.NET provides a set of classes for interacting with databases.

    • ASP.NET includes fea...

  • Answered by AI
  • Q2. Difference between Functions and stored procedure?
  • Ans. 

    Functions return a value while stored procedures do not.

    • Functions are used to perform a specific task and return a value to the caller.

    • Stored procedures are used to execute a set of SQL statements and do not return a value.

    • Functions can be used in SQL statements while stored procedures cannot.

    • Functions can be called from within stored procedures.

    • Functions are deterministic while stored procedures may not be.

    • Functions c...

  • Answered by AI
  • Q3. Interface Inheritance Difference between overloading and overriding
  • Ans. 

    Interface is a contract that defines the methods a class must implement. Inheritance is the ability of a class to inherit properties and methods from another class.

    • Interface is used to achieve abstraction and multiple inheritance in Java.

    • Inheritance allows code reuse and promotes code organization.

    • Overloading is having multiple methods with the same name but different parameters.

    • Overriding is providing a different impl...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepare oops and asp.net ,ado.net ,SQL server concepts

Skills evaluated in this interview

Stesalit Interview FAQs

How many rounds are there in Stesalit interview for experienced candidates?
Stesalit interview process for experienced candidates usually has 2 rounds. The most common rounds in the Stesalit interview process for experienced candidates are Resume Shortlist, Technical and HR.
How to prepare for Stesalit interview for experienced candidates?
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 Stesalit. The most common topics and skills that interviewers at Stesalit expect are Design Engineering, Electrical Design and Electricals.
What are the top questions asked in Stesalit interview for experienced candidates?

Some of the top questions asked at the Stesalit interview for experienced candidates -

  1. Travelling condition Across In...read more
  2. Technical Questions,regarding testing and Process of transform...read more
  3. Problem solving abil...read more

Tell us how to improve this page.

Stesalit Interview Process for Experienced

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Pitney Bowes Interview Questions
3.7
 • 21 Interviews
DynPro Interview Questions
3.8
 • 20 Interviews
Avontix Interview Questions
3.9
 • 19 Interviews
Ivanti Interview Questions
3.5
 • 14 Interviews
Dataflow Group Interview Questions
3.0
 • 14 Interviews
Emtec Interview Questions
4.3
 • 14 Interviews
VHS Consulting Interview Questions
3.7
 • 14 Interviews
View all

Stesalit Reviews and Ratings

based on 55 reviews

3.4/5

Rating in categories

3.4

Skill development

3.3

Work-life balance

3.4

Salary

3.3

Job security

3.1

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 55 Reviews and Ratings
Assistant Engineer
23 salaries
unlock blur

₹1.8 L/yr - ₹5.8 L/yr

Engineer
15 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Production Engineer
9 salaries
unlock blur

₹3.6 L/yr - ₹5 L/yr

Assistant Manager
8 salaries
unlock blur

₹8 L/yr - ₹12 L/yr

Junior Engineer
8 salaries
unlock blur

₹2.4 L/yr - ₹3.2 L/yr

Explore more salaries
Compare Stesalit with

Accel Frontline

4.0
Compare

Pitney Bowes

3.7
Compare

DynPro

3.8
Compare

Apex CoVantage

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