Add office photos
Employer?
Claim Account for FREE

Sterlite Technologies

3.8
based on 2.2k Reviews
Video summary
Filter interviews by

50+ Experion Technologies Interview Questions and Answers

Updated 29 Dec 2024
Popular Designations

Q1. Is that you know Digital Multimeter? Show me how to use for different components. They provided me HV diode, HV capacitor, Industrial X'mer etc

Ans.

Yes, I am familiar with Digital Multimeter and can demonstrate its usage for different components.

  • For HV diode, set the multimeter to resistance mode and connect the probes to the diode terminals. The multimeter should show a low resistance value in one direction and high resistance in the other direction.

  • For HV capacitor, set the multimeter to capacitance mode and connect the probes to the capacitor terminals. The multimeter should show the capacitance value.

  • For Industrial X...read more

View 1 answer

Q2. Tell me about proximity sensors & their types with working principals?

Ans.

Proximity sensors are devices that detect the presence or absence of an object within a certain range.

  • Proximity sensors use various technologies such as capacitive, inductive, ultrasonic, and optical to detect objects.

  • Capacitive proximity sensors detect objects by measuring changes in capacitance when an object enters the sensor's electric field.

  • Inductive proximity sensors use electromagnetic fields to detect metallic objects without physical contact.

  • Ultrasonic proximity sens...read more

View 5 more answers

Q3. If I provide you two 8pin relay, SMPS, DC motor, two push button so how you will connect to perform forward reverse operation of motor?

Ans.

Connect one relay to each push button and motor, and connect the relays in parallel to the SMPS for forward and reverse operation.

  • Connect one relay to each push button and motor

  • Connect the relays in parallel to the SMPS

  • Use the push buttons to control the relays and thus the motor direction

Add your answer

Q4. What is power factor & how you will improve PF? Types of PF?

Ans.

Power factor is a measure of how effectively electrical power is being used. It can be improved by using power factor correction techniques.

  • Power factor is the ratio of real power to apparent power in an electrical system.

  • It indicates the efficiency of electrical power usage.

  • A power factor of 1 indicates all the power is being used effectively, while a power factor less than 1 indicates inefficiency.

  • Power factor can be improved by using power factor correction techniques such...read more

View 1 answer
Discover Experion Technologies interview dos and don'ts from real experiences

Q5. What is Singleton Design Pattern? Can we create a clone of an object from singleton class?

Ans.

Singleton Design Pattern ensures only one instance of a class exists. No, we cannot create a clone of an object from singleton class.

  • Singleton pattern restricts the instantiation of a class to one object.

  • It is used when only one object is required to coordinate actions across the system.

  • The instance is created only when it is requested for the first time.

  • The constructor of the singleton class is private.

  • Clone method is not supported in singleton pattern.

Add your answer

Q6. How many types of companies which produce's PLC? Which one program you have run on which PLC, & which software you used friendly?

Ans.

There are several companies that produce PLCs. I have experience with Siemens and Allen Bradley PLCs.

  • Siemens and Allen Bradley are two of the most popular PLC manufacturers

  • I have experience running programs on both Siemens and Allen Bradley PLCs

  • Siemens TIA Portal and Allen Bradley Studio 5000 are both user-friendly software for programming PLCs

View 2 more answers
Are these interview questions helpful?

Q7. Tell me the Difference between Servo motor and stepper motor?

Ans.

Servo motors are used for high precision control while stepper motors are used for low speed and high torque applications.

  • Servo motors have a closed-loop system while stepper motors have an open-loop system.

  • Servo motors have higher accuracy and precision than stepper motors.

  • Stepper motors have a higher torque output than servo motors.

  • Servo motors are more expensive than stepper motors.

  • Examples of servo motors include AC servo motors and DC servo motors while examples of stepp...read more

Add your answer

Q8. Version of Java and Spring boot you are using in your current project?

Ans.

We are using Java 11 and Spring Boot 2.4.3 in our current project.

  • Java 11 provides better performance and security features compared to previous versions.

  • Spring Boot 2.4.3 offers improved support for Kotlin and GraalVM.

  • We are also using Spring Data JPA for database access and Spring Security for authentication and authorization.

Add your answer
Share interview questions and help millions of jobseekers 🌟

Q9. What is Maven ? what are different cycles in Maven

Ans.

Maven is a build automation tool used primarily for Java projects. It manages dependencies and builds the project.

  • Maven is based on the concept of POM (Project Object Model) which describes the project dependencies, build process, and other configurations.

  • Maven has different cycles such as validate, compile, test, package, verify, install, and deploy.

  • The validate cycle checks if the project is correct and all necessary information is available.

  • The compile cycle compiles the s...read more

Add your answer

Q10. 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.

Add your answer

Q11. 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.

Add your answer

Q12. 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

Add your answer

Q13. 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

Add your answer

Q14. What are triggers?What are stored procedures?

Ans.

Triggers are database objects that automatically execute in response to certain events. Stored procedures are precompiled SQL statements.

  • Triggers are used to enforce business rules or to audit changes to data.

  • Stored procedures are used to encapsulate frequently used SQL statements for reuse and to improve performance.

  • Triggers can be used to update related tables when a record is inserted, updated, or deleted.

  • Stored procedures can be used to perform complex data manipulations ...read more

Add your answer

Q15. Where is the fiber broken and how will you fix it?

Ans.

To determine the location of a broken fiber, I would use an OTDR and then fix it by splicing or replacing the damaged section.

  • Use an Optical Time Domain Reflectometer (OTDR) to analyze the fiber and locate the break.

  • Once the break is identified, the damaged section can be spliced back together or replaced.

  • Splicing involves fusing the two ends of the fiber together using a fusion splicer.

  • If the break is severe or in an inaccessible location, the entire fiber may need to be rep...read more

Add your answer

Q16. 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 HttpClient API for making HTTP requests.

  • Java 12 introduce...read more

Add your answer

Q17. Write a Program for reverse sort of keys in HashMap.

Ans.

Program to reverse sort keys in HashMap

  • Create a List from the keySet() of the HashMap

  • Sort the List in reverse order using Collections.sort()

  • Iterate through the sorted List and add the keys to a new LinkedHashMap

  • Return the LinkedHashMap

Add your answer

Q18. What is difference between OLT AND ONT

Ans.

OLT is a device used by service providers to connect multiple ONTs to their network.

  • OLT stands for Optical Line Terminal

  • It is used by service providers to connect multiple ONTs to their network

  • OLT is located at the service provider's central office or data center

  • ONT stands for Optical Network Terminal

  • It is located at the customer's premises and connects to the OLT

  • ONT is responsible for converting optical signals to electrical signals and vice versa

Add your answer

Q19. 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, and Travis CI are commonly used for implementing CI/CD p...read more

Add your answer

Q20. 1.Duct thickness? 2. How to done hdd to complete span? 3.How to resolve the issue with vendor or others?

Ans.

Answering questions related to Fiber Execution Engineer job interview.

  • Duct thickness should be determined based on the type of fiber optic cable being used.

  • HDD (Horizontal Directional Drilling) can be done by following a step-by-step process that includes site preparation, drilling, and pulling the cable.

  • To resolve issues with vendors or others, effective communication and problem-solving skills are necessary. It's important to identify the root cause of the issue and work co...read more

Add your answer

Q21. How many types of motors?

Ans.

There are two main types of motors: AC motors and DC motors.

  • AC motors: synchronous and asynchronous

  • DC motors: brushed and brushless

  • Other types: stepper, servo, linear, etc.

  • Motors can also be classified by their power source, size, and application

Add your answer

Q22. What is otdr

Ans.

OTDR stands for Optical Time Domain Reflectometer. It is a device used to measure the characteristics of an optical fiber.

  • OTDR is commonly used in the telecommunications industry to troubleshoot and maintain fiber optic networks.

  • It sends a series of light pulses into the fiber and measures the time and intensity of the reflections to determine the length, loss, and quality of the fiber.

  • OTDR can locate faults, such as breaks or bends, in the fiber and provide a graphical repre...read more

View 3 more answers

Q23. 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 and resource allocation.

  • Choosing appropriate storage engin...read more

Add your answer

Q24. 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-get install -y python3

  • Example: COPY app.py /app WORKDIR /a...read more

Add your answer

Q25. What is lspm

Ans.

LSPM stands for Local Service Provider Management.

  • LSPM is a system or process used to manage and coordinate local service providers.

  • It involves selecting, contracting, and overseeing the performance of local service providers.

  • LSPM ensures that local service providers meet the required standards and deliver quality services.

  • Examples of local service providers include contractors, vendors, and suppliers.

  • LSPM helps in optimizing costs, improving efficiency, and maintaining servi...read more

View 3 more answers

Q26. what are the differences between http2 vs http1.1

Ans.

HTTP2 is faster, more efficient, and supports multiplexing and server push.

  • HTTP2 uses binary instead of text format for better performance.

  • HTTP2 supports multiplexing, allowing multiple requests to be sent and received at the same time.

  • HTTP2 also supports server push, where the server can send resources to the client before they are requested.

  • HTTP2 has header compression, reducing the amount of data that needs to be sent.

  • HTTP2 requires SSL/TLS encryption for security.

  • HTTP1.1 ...read more

Add your answer

Q27. What is the role of electrical maintenance engineer

Add your answer

Q28. various Springboot Annotations.

Ans.

Springboot annotations are used to simplify the development process and provide additional functionality.

  • Annotations like @RestController and @RequestMapping are used to create RESTful web services.

  • @Autowired is used for dependency injection.

  • @Transactional is used to manage transactions.

  • @Component is used to mark a class as a Spring component.

  • @Value is used to inject values from properties files or environment variables.

  • @Scheduled is used to schedule tasks to run at specific ...read more

Add your answer

Q29. What you know about process engineering?

Ans.

Process engineering involves designing, optimizing, and controlling processes to improve efficiency and quality.

  • Process engineering focuses on analyzing and improving processes to increase efficiency and quality.

  • It involves designing and implementing systems to optimize production processes.

  • Process engineers use tools like process simulation, data analysis, and optimization techniques.

  • Examples include optimizing manufacturing processes to reduce waste and improve output, or d...read more

Add your answer

Q30. What is quality assurance? Explain 7Qc tool etc

Ans.

Quality assurance is the process of ensuring that a product or service meets the desired level of quality.

  • 7QC tools are used to identify and solve quality problems

  • The tools include Pareto chart, cause-and-effect diagram, control chart, histogram, scatter diagram, flowchart, and check sheet

  • QA involves creating and implementing processes and procedures to prevent defects and improve quality

  • It also involves testing and evaluating products or services to ensure they meet the desi...read more

Add your answer

Q31. What is availability ? what happens when invoice is related to accounting ? what are rebates ? what are cash sales and rush order?

Ans.

Availability refers to the state of being ready for use or accessible. Invoices in accounting are used to track financial transactions. Rebates are discounts given after a purchase. Cash sales are transactions made with immediate payment. Rush orders are orders that need to be processed quickly.

  • Availability is the state of being ready for use or accessible

  • Invoices in accounting are used to track financial transactions

  • Rebates are discounts given after a purchase

  • Cash sales are ...read more

Add your answer

Q32. @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 is a good practice for separating the data access layer fro...read more

Add your answer

Q33. 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.

Add your answer

Q34. Why we require process qualifications?

Ans.

Process qualifications are necessary to ensure consistency, quality, and compliance in operations.

  • Process qualifications help in standardizing procedures for consistent results.

  • They ensure that operations meet quality standards and regulatory requirements.

  • Qualifications also help in identifying and addressing potential risks and deviations.

  • They provide a framework for continuous improvement and optimization of processes.

Add your answer

Q35. @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, specify the table name, and configure various attributes of...read more

Add your answer

Q36. Type of soil

Ans.

Soil types can vary greatly and are classified based on their composition, texture, and fertility.

  • Soil types include clay, silt, sand, loam, and peat.

  • Clay soil is heavy and retains water, while sandy soil is loose and drains quickly.

  • Loam soil is a balanced mixture of clay, silt, and sand, ideal for plant growth.

  • Soil fertility is determined by its nutrient content and organic matter.

  • Different soil types require different management practices for construction or agriculture.

View 2 more answers

Q37. 2. Design consideration of Castings

Ans.

Design considerations for castings

  • Selection of appropriate casting method

  • Designing for proper material flow and solidification

  • Proper gating and riser design

  • Consideration of parting line and draft angles

  • Designing for minimum machining requirements

  • Selection of appropriate material and heat treatment

  • Consideration of casting defects and how to prevent them

Add your answer

Q38. Comfortable for relocation

Ans.

Yes, I am comfortable with relocation.

  • I have relocated for work in the past and have found it to be a positive experience.

  • I am open to exploring new locations and cultures.

  • I understand that relocation may be necessary for career growth and development.

  • I am willing to consider relocation on a case-by-case basis.

Add your answer

Q39. joins in SQL

Ans.

Joins in SQL are used to combine data from two or more tables based on a related column.

  • Joins are used to retrieve data from multiple tables in a single query

  • Types of joins include inner join, left join, right join, and full outer join

  • Join conditions are specified using the ON keyword and can include multiple conditions

  • Aliases can be used to simplify the syntax of join queries

Add your answer

Q40. Working of fiber and ofc

Ans.

Fiber and OFC are used for high-speed data transmission over long distances.

  • Fiber optic cables use light to transmit data, while OFC uses electrical signals.

  • Fiber optic cables are made of glass or plastic fibers, while OFC uses copper wires.

  • Fiber optic cables are immune to electromagnetic interference, while OFC is susceptible to it.

  • Fiber optic cables can transmit data over longer distances than OFC.

  • Examples of fiber optic applications include internet, cable TV, and telephon...read more

Add your answer

Q41. 3. Sheet metal design consideration

Ans.

Sheet metal design considerations include material selection, bend radius, hole size, and tolerances.

  • Choose the appropriate material for the application

  • Ensure proper bend radius to avoid cracking or deformation

  • Consider hole size and placement for optimal functionality

  • Determine tolerances for accurate and consistent production

  • Account for any necessary finishing processes such as painting or coating

Add your answer

Q42. 2. Casting Design Consideration

Ans.

Casting design consideration is important for ensuring the quality and integrity of the final product.

  • Selection of appropriate casting material

  • Designing the mold to avoid defects like shrinkage, porosity, and cracks

  • Proper gating and riser design to ensure proper flow of molten metal

  • Consideration of post-casting processes like heat treatment and machining

  • Designing for ease of manufacturing and assembly

Add your answer

Q43. Experiences in Aug 19 To March 20

Ans.

Worked as an intern at XYZ Company, gained hands-on experience in various engineering tasks.

  • Assisted senior engineers in designing and testing new products

  • Participated in team meetings and contributed ideas for process improvement

  • Learned to use CAD software to create 3D models of components

  • Helped with assembly and installation of equipment at client sites

  • Developed skills in troubleshooting and problem-solving

Add your answer

Q44. 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.

Add your answer

Q45. 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.

Add your answer

Q46. Different between 1550 and 1310 wave length

Ans.

1550 and 1310 wavelengths are both used in optical fiber communication, but have different properties.

  • 1550 wavelength has lower attenuation and dispersion compared to 1310 wavelength

  • 1550 wavelength is used for long-haul communication while 1310 wavelength is used for short-haul communication

  • 1550 wavelength is less affected by fiber non-linearities compared to 1310 wavelength

  • 1310 wavelength is cheaper to produce compared to 1550 wavelength

Add your answer

Q47. 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.

Add your answer

Q48. Types of air dryer and its working

Ans.

Air dryers are devices used to remove moisture from compressed air to prevent corrosion and damage to equipment.

  • Types of air dryers include refrigerated dryers, desiccant dryers, and membrane dryers

  • Refrigerated dryers work by cooling the air to condense and remove moisture

  • Desiccant dryers use a material like silica gel to absorb moisture from the air

  • Membrane dryers rely on a membrane to selectively permeate water vapor out of the air

  • Proper maintenance and regular servicing of...read more

Add your answer

Q49. What you know about Sterlite

Ans.

Sterlite is a global manufacturing company specializing in metals, mining, and energy production.

  • Sterlite Industries is a subsidiary of Vedanta Resources, a multinational mining and metals company.

  • The company operates copper smelters, refineries, and power plants in India and Australia.

  • Sterlite is known for its controversial environmental and social impact, particularly in India where protests have been held against its operations.

Add your answer

Q50. What are the expectations

Ans.

Expectations for a Department Manager include leadership, organization, communication, and problem-solving skills.

  • Lead and motivate team members to achieve department goals

  • Organize and prioritize tasks to ensure efficiency

  • Communicate effectively with team members, upper management, and other departments

  • Problem-solve and make decisions to address challenges and improve processes

Add your answer

Q51. 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

Add your answer

Q52. what is pgi ?

Ans.

PGI stands for Post Graduate Institute. It is a term commonly used in educational and medical fields.

  • PGI refers to a postgraduate institute or program, typically in the medical field.

  • PGI can also stand for Post Graduate Institute of Medical Education and Research (PGIMER) in India.

  • It is a prestigious institution known for its medical education and research programs.

Add your answer

Q53. 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, and wireless networking.

Add your answer

Q54. 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 Retrospective: A meeting to reflect on the sprint and identify areas f...read more

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Experion Technologies

based on 38 interviews
Interview experience
3.8
Good
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

4.0
 • 1.2k Interview Questions
4.2
 • 334 Interview Questions
4.2
 • 179 Interview Questions
4.2
 • 177 Interview Questions
4.2
 • 156 Interview Questions
4.2
 • 155 Interview Questions
View all
Top Sterlite Technologies Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
75 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter