Upload Button Icon Add office photos

Filter interviews by

Telecon Systems PLC Engineer Interview Questions and Answers

Updated 24 Dec 2023

Telecon Systems PLC Engineer Interview Experiences

1 interview found

PLC Engineer Interview Questions & Answers

user image Anonymous

posted on 24 Dec 2023

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

I applied via Referral and was interviewed in Jun 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Plc automation question

Interview Preparation Tips

Interview preparation tips for other job seekers - Not tht much hard for freshers

Interview questions from similar companies

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 in Mar 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. ABOUT CURRENT COMPANY WORK PROFILE
Round 2 - Technical 

(2 Questions)

  • Q1. DEPTH ABOUT PLC PROGRAMMING.
  • Q2. Read more about PLC
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(10 Questions)

  • Q1. Pump and it's types it's API and design
  • Ans. 

    Pumps are devices used to move fluids through a system. There are various types of pumps such as centrifugal, positive displacement, and reciprocating pumps.

    • Types of pumps include centrifugal, positive displacement, and reciprocating pumps

    • API standards for pumps include API 610 for centrifugal pumps and API 674 for reciprocating pumps

    • Pump design considerations include flow rate, pressure, material compatibility, and ef

  • Answered by AI
  • Q2. Storage tank design, API and types of ST
  • Ans. 

    Storage tank design involves following API standards and various types of storage tanks.

    • API standards such as API 650 for welded steel tanks and API 620 for large, field-erected tanks

    • Types of storage tanks include atmospheric storage tanks, pressure storage tanks, and refrigerated storage tanks

    • Design considerations include material selection, tank size, pressure requirements, and safety features

  • Answered by AI
  • Q3. Types of Stainer
  • Ans. 

    Types of strainers include Y-strainers, basket strainers, duplex strainers, and temporary cone strainers.

    • Y-strainers are used for applications with low flow rates and are easy to clean.

    • Basket strainers are commonly used in pipelines to remove larger particles.

    • Duplex strainers have two separate strainer baskets for continuous operation.

    • Temporary cone strainers are used during commissioning or maintenance to prevent debr

  • Answered by AI
  • Q4. CIP process
  • Q5. Equipment hygiene?
  • Q6. PSV and PRV design
  • Q7. Use of Dimension less number
  • Ans. 

    Dimensionless numbers are used in engineering to simplify equations and compare different systems.

    • Dimensionless numbers help in scaling and comparing physical phenomena without the need for specific units.

    • Examples include Reynolds number in fluid mechanics, Mach number in aerodynamics, and Peclet number in heat transfer.

    • They provide insight into the dominant forces or mechanisms in a system.

    • Dimensionless numbers are us...

  • Answered by AI
  • Q8. Line Sizing procedure
  • Ans. 

    Line sizing procedure involves determining the appropriate diameter of pipes for a given flow rate and pressure drop.

    • Calculate the required flow rate and pressure drop for the system

    • Use fluid properties and pipe material to determine the appropriate pipe size

    • Consider factors such as velocity, friction loss, and future expansion

    • Ensure the selected pipe size meets safety and regulatory requirements

    • Common methods include ...

  • Answered by AI
  • Q9. Heat exchanger design
  • Ans. 

    Heat exchanger design involves selecting the appropriate type, size, and materials to efficiently transfer heat between two fluids.

    • Consider the type of heat exchanger needed (e.g. shell and tube, plate heat exchanger)

    • Calculate the required heat transfer area based on heat load and temperature difference

    • Select materials compatible with the fluids and operating conditions

    • Optimize flow rates to maximize heat transfer effi

  • Answered by AI
  • Q10. Software handling, HTRI, Aspen
Round 2 - HR 

(2 Questions)

  • Q1. Willing to travel abroad
  • Ans. 

    Yes, I am willing to travel abroad for work.

    • I am open to new experiences and cultures

    • I understand the importance of global collaboration in engineering projects

    • I have previous experience traveling for work or education

    • I am willing to adapt to different working environments and challenges

  • Answered by AI
  • Q2. Why you left your previous job
  • Ans. 

    Seeking new challenges and opportunities for growth

    • Desire for career advancement

    • Looking for new challenges

    • Opportunity for professional growth

    • Seeking better work-life balance

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

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Thread concurrency
  • Q2. Sql for deleting dulicates and keeping one
  • Ans. 

    Use SQL query with ROW_NUMBER() function to delete duplicates and keep one.

    • Use ROW_NUMBER() function to assign a unique number to each row partitioned by the duplicate column(s)

    • Delete rows where the row number is greater than 1

  • Answered by AI
  • Q3. Java stream for sorting emp object
  • Ans. 

    Use Java Stream API to sort a list of employee objects based on a specific field.

    • Use the sorted() method of Stream to sort the employee objects based on a Comparator.

    • Define a Comparator based on the field you want to sort by.

    • Example: List sortedList = employeeList.stream().sorted(Comparator.comparing(Employee::getSalary)).collect(Collectors.toList());

Answered by AI
  • Q4. Sql for getting the max salary
  • Ans. 

    Use SQL query with MAX function to get the maximum salary from a table.

    • Use SELECT MAX(salary) FROM employees;

    • Make sure to replace 'employees' with the actual table name where salary information is stored.

    • Ensure that the column name for salary is correct in the query.

  • Answered by AI
  • Q5. Completablefuture
  • Interview Preparation Tips

    Interview preparation tips for other job seekers - prepare for sql and concurrency, thread

    Skills evaluated in this interview

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

    (2 Questions)

    • Q1. What is closure
    • Ans. 

      A closure is a function that has access to its own scope, as well as the scope in which it was defined.

      • A closure allows a function to access variables from its outer function even after the outer function has finished executing.

      • Closures are commonly used in event handlers, callbacks, and asynchronous programming.

      • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.l

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

      Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during the compilation phase.

      • Variable and function declarations are hoisted to the top of their scope.

      • Only declarations are hoisted, not initializations.

      • Function declarations take precedence over variable declarations.

      • Example: console.log(myVar); var myVar = 10; // Output: undefined

      • Example: cons...

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Javascripts basic and advanced concepts

    Skills evaluated in this interview

    Service Engineer Interview Questions & Answers

    ABB user image Raj Rudra Arvindbhai

    posted on 14 Jun 2024

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

    (2 Questions)

    • Q1. Which direction motor run
    • Ans. 

      The direction a motor runs depends on the type of motor and the wiring configuration.

      • The direction of rotation can be determined by the motor's design and the direction of the current flow.

      • Some motors can run in both clockwise and counterclockwise directions depending on the wiring.

      • Reversing the polarity of the power supply can change the direction of rotation in some motors.

    • Answered by AI
    • Q2. How made delta connection in motor terminal box
    • Ans. 

      Delta connection in motor terminal box is made by connecting the three motor terminals in a triangular configuration.

      • Connect the three motor terminals labeled U, V, and W in a triangular configuration.

      • Ensure proper insulation and secure connections to prevent short circuits.

      • Use appropriate tools and follow manufacturer's guidelines for wiring.

      • Double check the connections before powering up the motor to avoid damage.

      • Con...

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Job is good, but they can’t provide any type of training and this is one of the major drawback for beginners.
    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via campus placement at APC Roy Polytechnic, Kolkata and was interviewed in Feb 2024. There was 1 interview round.

    Round 1 - One-on-one 

    (3 Questions)

    • Q1. Why I want to join this company?
    • Ans. 

      I want to join this company because of its innovative projects and strong reputation in the industry.

      • Impressed by the company's cutting-edge technology and solutions

      • Excited about the opportunity to work with a talented team

      • Interested in the company's commitment to professional growth and development

    • Answered by AI
    • Q2. What is my target?
    • Q3. Basic questions from automation enginnering.

    Interview Preparation Tips

    Topics to prepare for Honeywell Automation Junior Engineer interview:
    • Automation
    • SCADA
    Interview preparation tips for other job seekers - Give more power on basic automation
    Interview experience
    1
    Bad
    Difficulty level
    -
    Process Duration
    -
    Result
    No response
    Round 1 - Technical 

    (1 Question)

    • Q1. About plant and designing

    Interview Preparation Tips

    Interview preparation tips for other job seekers - No
    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Walk-in and was interviewed in Feb 2024. There was 1 interview round.

    Round 1 - One-on-one 

    (2 Questions)

    • Q1. WHAT DO KNOW ABOUT COMPANY
    • Ans. 

      Company is a leading manufacturer of industrial equipment with a focus on innovation and sustainability.

      • Company was founded in 1990 and has since grown to become a global leader in the industry

      • They specialize in producing high-quality machinery for various sectors such as automotive, aerospace, and energy

      • Company has a strong commitment to sustainability and has implemented several green initiatives in their production

    • Answered by AI
    • Q2. Can you read and write in english
    • Ans. 

      Yes, I can read and write in English.

      • I am fluent in English and can read and write proficiently.

      • I have experience communicating in English in previous roles.

      • I have completed education in English medium.

      • I have taken English language proficiency tests like TOEFL or IELTS.

    • Answered by AI

    Interview Preparation Tips

    Topics to prepare for Schneider Electric Production Engineer interview:
    • They only give material
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Aptitude Test 

    ABOUT TPM quality control and 5s

    Round 2 - HR 

    (2 Questions)

    • Q1. Family background
    • Q2. About Education

    Telecon Systems Interview FAQs

    How many rounds are there in Telecon Systems PLC Engineer interview?
    Telecon Systems interview process usually has 2 rounds. The most common rounds in the Telecon Systems interview process are Resume Shortlist and Technical.

    Tell us how to improve this page.

    People are getting interviews through

    based on 1 Telecon Systems interview
    Referral
    100%
    Low Confidence
    ?
    Low Confidence means the data is based on a small number of responses received from the candidates.

    Interview Questions from Similar Companies

    Siemens Interview Questions
    4.1
     • 421 Interviews
    Johnson Controls Interview Questions
    3.6
     • 251 Interviews
    ABB Interview Questions
    4.1
     • 225 Interviews
    Falcon Autotech Interview Questions
    4.1
     • 43 Interviews
    Wipro PARI Interview Questions
    3.5
     • 38 Interviews
    MNC AUTOMATION Interview Questions
    4.2
     • 33 Interviews
    View all

    Telecon Systems PLC 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 & Benefits

    2.0

    Job Security

    2.0

    Company culture

    1.0

    Promotions/Appraisal

    1.0

    Work Satisfaction

    Explore 1 Review and Rating
    Automation Engineer
    7 salaries
    unlock blur

    ₹2.2 L/yr - ₹3.2 L/yr

    Data Analyst
    5 salaries
    unlock blur

    ₹1.2 L/yr - ₹1.5 L/yr

    Instrument Engineer
    5 salaries
    unlock blur

    ₹2.1 L/yr - ₹5 L/yr

    Instrumentation Project Manager
    4 salaries
    unlock blur

    ₹4.3 L/yr - ₹7.8 L/yr

    AM-IT
    4 salaries
    unlock blur

    ₹4.8 L/yr - ₹7.2 L/yr

    Explore more salaries
    Compare Telecon Systems with

    Siemens

    4.1
    Compare

    Schneider Electric

    4.2
    Compare

    Johnson Controls

    3.6
    Compare

    ABB

    4.1
    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