Upload Button Icon Add office photos

ESDS Software Solutions

Compare button icon Compare button icon Compare

Filter interviews by

ESDS Software Solutions Technician Engineer Interview Questions and Answers

Updated 3 May 2023

ESDS Software Solutions Technician Engineer Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed in Apr 2023. There were 2 interview rounds.

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 - Technical 

(2 Questions)

  • Q1. What is a transformar rating for transformar
  • Ans. 

    Transformer rating refers to the maximum amount of power that a transformer can handle.

    • Transformer rating is measured in units of volt-amperes (VA) or kilovolt-amperes (kVA).

    • The rating of a transformer depends on its primary and secondary voltage, current, and frequency.

    • For example, a transformer with a rating of 10 kVA can handle a maximum power of 10,000 VA or 10 kW.

    • Transformers with higher ratings are typically used...

  • Answered by AI
  • Q2. Types of MCB and MCB rating and Diesel generater type of part
  • Ans. 

    MCBs are available in different types and ratings. Diesel generators have various parts.

    • Types of MCBs include Type B, Type C, and Type D

    • MCB ratings range from 1A to 63A

    • Diesel generator parts include the engine, alternator, fuel tank, and control panel

    • MCBs protect electrical circuits from overloading and short circuits

    • Diesel generators provide backup power during outages or in remote areas

  • Answered by AI

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basics of Java ,MySQL
  • Q2. For java do all object oriented programming (oops) concept very deeply
  • Q3. For mysql do all basics commands and query

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong basic theoretical and practical knowledge required

I appeared for an interview before Mar 2021.

Round 1 - Coding Test 

Round duration - 30 minutes
Round difficulty - Medium

This was a MCQ round. 30 ques in 30 mins consisting of difficult quantitative aptitude questions were to be solved.

Round 2 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

In this test round, 2 coding questions were given. Either write the code or pseudo code

  • Q1. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

  • Ans. 

    The N Queens Problem involves finding all possible placements of N queens on an N x N chessboard without threatening each other.

    • Use backtracking algorithm to explore all possible configurations.

    • Keep track of rows, columns, and diagonals to ensure queens do not threaten each other.

    • Generate all valid configurations and print them out.

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of 0s, 1s, and 2s while traversing the array.

    • Swap elements based on the values encountered to sort the array in-place.

    • Time complexity should be O(N) and space complexity should be O(1).

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round with questions on DSA.

  • Q1. 

    Reverse Words in a String: Problem Statement

    You are given a string of length N. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading o...

  • Ans. 

    Reverse words in a string while handling leading, trailing, and multiple spaces.

    • Split the input string by spaces to get individual words

    • Reverse the order of the words

    • Join the reversed words with a single space in between

  • Answered by AI
  • Q2. 

    Circular Linked List Detection

    You are provided with the head of a linked list containing integers. Your task is to determine if the linked list is circular.

    Note:
    • A linked list is considered circula...
  • Ans. 

    Detect if a given linked list is circular by checking if it forms a closed loop.

    • Traverse the linked list using two pointers, one moving at double the speed of the other.

    • If the two pointers meet at any point, the linked list is circular.

    • If the faster pointer reaches the end of the list (NULL), the linked list is not circular.

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMAQ Software interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Test contain mix question from computer fundamentals and aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. Find the leaf node of the binary tree
  • Ans. 

    A leaf node in a binary tree is a node that does not have any children.

    • Traverse the binary tree and check if a node has no left or right child, then it is a leaf node.

    • Example: In the binary tree 1 -> 2, 3 -> 4, 5, 6 -> 7, 8, the leaf nodes are 4, 5, 7, 8.

  • Answered by AI
  • Q2. Check if the given linked list contain loop
  • Ans. 

    Check if a linked list contains a loop by using Floyd's cycle detection algorithm.

    • Use two pointers, one moving at twice the speed of the other

    • If there is a loop, the two pointers will eventually meet

    • Example: 1->2->3->4->5->2 (loop at 2)

  • Answered by AI
  • Q3. Find the fist non repeating element in string
  • Ans. 

    Find the first non-repeating element in a string

    • Create a frequency map of characters in the string

    • Iterate through the string and check the frequency of each character

    • Return the first character with frequency 1

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - study oops, dsa, core computer subjects and good knowledge about project

Skills evaluated in this interview

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

I appeared for an interview in May 2024.

Round 1 - Technical 

(1 Question)

  • Q1. They have connected the client call with me directly and only that 2 round of technical interview happened and hr round. That's it
Round 2 - One-on-one 

(2 Questions)

  • Q1. Easy interview interview with tcs
  • Q2. Hana consultant

Interview Preparation Tips

Interview preparation tips for other job seekers - Very easy rounds nit to worry much on this
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 

(2 Questions)

  • Q1. Theories of failure, in depth
  • Ans. 

    Theories of failure explain how and why materials fail under different conditions.

    • Theories of failure are used to predict the failure of materials under different loads and conditions.

    • There are different types of theories of failure, including maximum shear stress theory, maximum normal stress theory, and maximum strain energy theory.

    • Maximum shear stress theory states that failure occurs when the maximum shear stress i...

  • Answered by AI
  • Q2. Basic material properties
  • Ans. 

    Basic material properties include density, strength, hardness, elasticity, and conductivity.

    • Density refers to the mass per unit volume of a material.

    • Strength is the ability of a material to withstand external forces without breaking or deforming.

    • Hardness is the resistance of a material to indentation or scratching.

    • Elasticity is the ability of a material to return to its original shape after being deformed.

    • Conductivity ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not yet done with internship, thinking to join but only after checking reviews on google

I applied via Campus Placement and was interviewed before Jan 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Normal question asked

Round 2 - Coding Test 

Easy test

Round 3 - Technical 

(2 Questions)

  • Q1. About oops c c++ python
  • Q2. Python basics and cloud basics
Round 4 - HR 

(4 Questions)

  • Q1. Where do you see yourself in 5 years?
  • Q2. Why should we hire you?
  • Q3. Tell me about yourself.
  • Q4. Personal details why you are best

Interview Preparation Tips

Topics to prepare for In Time Tec Visionsoft Trainee interview:
  • Python
  • Java
  • C
  • C++
Interview preparation tips for other job seekers - Be confident and just remember you are the best
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

C,c++,java ,SQL, javascript and python

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

(1 Question)

  • Q1. Types of Polymorphism
  • Ans. 

    Polymorphism in programming refers to the ability of a single function or method to operate on different data types.

    • There are two main types of polymorphism: compile-time (static) polymorphism and run-time (dynamic) polymorphism.

    • Compile-time polymorphism is achieved through function overloading and operator overloading.

    • Run-time polymorphism is achieved through inheritance and virtual functions.

    • Example of compile-time p...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is use of ng-content ?.
  • Ans. 

    ng-content is used in Angular to project content into a component's template.

    • ng-content is used to pass content into a component from the outside.

    • It allows for dynamic content insertion within a component's template.

    • ng-content is often used in combination with ng-template and ng-container.

    • It is commonly used for creating reusable components with varying content.

  • Answered by AI

Skills evaluated in this interview

ESDS Software Solutions Interview FAQs

How many rounds are there in ESDS Software Solutions Technician Engineer interview?
ESDS Software Solutions interview process usually has 2 rounds. The most common rounds in the ESDS Software Solutions interview process are Resume Shortlist and Technical.
What are the top questions asked in ESDS Software Solutions Technician Engineer interview?

Some of the top questions asked at the ESDS Software Solutions Technician Engineer interview -

  1. What is a transformar rating for transfor...read more
  2. Types of MCB and MCB rating and Diesel generater type of p...read more

Tell us how to improve this page.

ESDS Software Solutions Technician Engineer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

MAQ Software Interview Questions
2.0
 • 101 Interviews
Webkul Software Interview Questions
3.9
 • 64 Interviews
Softenger Interview Questions
4.1
 • 53 Interviews
DataMetica Interview Questions
3.5
 • 44 Interviews
View all
Technical Associate
132 salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Junior Technical Associate
70 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

System Engineer
56 salaries
unlock blur

₹1.6 L/yr - ₹6.8 L/yr

Business Analyst
52 salaries
unlock blur

₹2.8 L/yr - ₹8 L/yr

Senior Technical Associate
50 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Explore more salaries
Compare ESDS Software Solutions with

Tekwissen

4.8
Compare

Softenger

4.1
Compare

XcelServ Solutions

4.5
Compare

Damco Solutions

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