Sterlite Technologies
90+ Interview Questions and Answers
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 trees a...read more
Q2. 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
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
You are given an array containing N non-negative integers. Your task is to partition this array into two subsets such that the...read more
Q4. Tell me about proximity sensors & their types with working principals?
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
Q5. What is OOP Concept? What is inheritance?
OOP Concept is a programming paradigm that uses objects to represent real-world entities. Inheritance is a mechanism where a class inherits properties and behaviors from another class.
OOP Concept is based on the principles of encapsulation, inheritance, and polymorphism.
It allows for modular and reusable code by organizing data and functions into objects.
Inheritance is a key feature of OOP that allows a class to inherit properties and methods from another class.
The class that...read more
Q6. 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?
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
Q7. What is power factor & how you will improve PF? Types of PF?
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
Q8. How many types of companies which produce's PLC? Which one program you have run on which PLC, & which software you used friendly?
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
Q9. Tell me the Difference between Servo motor and stepper motor?
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
Q10. What is Singleton Design Pattern? Can we create a clone of an object from singleton class?
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.
Q11. Which is your preferred programming language and why do you choose this language?
My preferred programming language is Python because of its simplicity, versatility, and vast community support.
Python is easy to learn and read, making it a great language for beginners.
It has a wide range of applications, from web development to data analysis and machine learning.
Python has a large and active community, providing access to numerous libraries and resources.
It is also cross-platform, meaning it can run on various operating systems.
Examples of Python-based fram...read more
Q12. What are classes, Inheritance and it's types
Classes are blueprints for creating objects, inheritance is a mechanism for creating new classes based on existing ones.
Classes are used to define objects with their properties and behaviors
Inheritance allows a class to inherit properties and methods from another class
Types of inheritance include single, multiple, multilevel, and hierarchical inheritance
Q13. Version of Java and Spring boot you are using in your current project?
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.
Q14. What is Maven ? what are different cycles in Maven
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
Q15. What are triggers?What are stored procedures?
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
Q16. 1.Duct thickness? 2. How to done hdd to complete span? 3.How to resolve the issue with vendor or others?
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
Q17. Find the min and max from List of Integers using java 8 streams.
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.
Q18. Find 2nd largest element using java 8 streams from list of integers.
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.
Q19. Increase a value of List of Integers by *2 and written new list.
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
Q20. What is mutable classes in java? How to create?
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
Q21. What is difference between OLT AND ONT
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
Q22. How many fibers layed in one tube? How many tubes there in one 48f fiber? Cable color code?
The number of fibers and tubes in a 48f fiber cable and its color code.
A 48f fiber cable typically has 6 tubes with 8 fibers in each tube.
The color code for fiber cables is standardized as per TIA-598-C.
The color code for the fibers in a tube is typically blue, orange, green, brown, slate, white, red, and black.
Q23. What is bgp, bgp is exchanging the routing information and prefix amoung the as number, bgp is border getaway protocol
BGP (Border Gateway Protocol) is a routing protocol used to exchange routing information between different autonomous systems (AS).
BGP is used to exchange routing information and prefixes between different AS numbers.
BGP helps in determining the best path for data to travel between networks.
BGP operates on TCP port 179.
BGP uses attributes like AS path, next hop, and local preference to make routing decisions.
Example: BGP is commonly used by Internet Service Providers (ISPs) t...read more
Q24. Where is the fiber broken and how will you fix it?
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
Q25. Write a Program for reverse sort of keys in HashMap.
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
Q26. There are three function of smart grid electrical protection isolation and control
The three functions of smart grid electrical protection isolation and control are fault detection, fault isolation, and service restoration.
Fault detection involves identifying any issues in the electrical system.
Fault isolation involves isolating the faulty component to prevent further damage.
Service restoration involves restoring power to the affected area as quickly as possible.
Examples of smart grid technologies that enable these functions include fault location, isolatio...read more
Q27. What are the java new features?
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
Q28. What is Encapsulation?
Encapsulation is the process of hiding implementation details and exposing only necessary information.
Encapsulation is a fundamental concept in object-oriented programming.
It helps in achieving data abstraction and information hiding.
It allows for better control over the data and prevents unauthorized access.
Example: A class in Java that has private variables and public methods to access them.
Example: A capsule that contains medicine and protects it from external factors.
Q29. How many types of motors?
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
Q30. Ohm's law is current between directly proportional voltage
Ohm's law states that current is directly proportional to voltage.
Current increases as voltage increases
Resistance remains constant
Can be expressed as I = V/R
Q31. Explain CI CD and your project deployment.
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
Q32. what are the differences between http2 vs http1.1
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
Q33. What is the role of electrical maintenance engineer
Q34. CHECK LIST FISHBONE DIAGRAM PERITO CHART SCALTER DIAGRAM CAUSE /EFFECTIVE DIAGRAM ( with the helf of 7 qc tools )
These are some of the tools used in quality control to identify and analyze the root causes of problems.
Fishbone diagram is used to identify all possible causes of a problem and categorize them into different groups.
Pareto chart is used to identify the most significant causes of a problem based on their frequency or impact.
Scatter diagram is used to identify the relationship between two variables and determine if there is a correlation.
Cause/effect diagram is used to identify...read more
Q35. What is quality assurance? Explain 7Qc tool etc
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
Q36. What is otdr
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
Q37. What is availability ? what happens when invoice is related to accounting ? what are rebates ? what are cash sales and rush order?
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
Q38. How the database is configure?
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
Q39. What is lazy loading?
Lazy loading is a technique used to defer the loading of non-critical resources until they are needed.
It improves page load time and performance.
It is commonly used for images, videos, and other media files.
It can be implemented using JavaScript libraries like LazyLoad or Intersection Observer API.
Lazy loading can also be used for modules and components in web applications.
It helps to reduce the initial load time of the web page.
Q40. What you know about process engineering?
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
Q41. What are the international patient goals?
International patient goals in ICU include providing high-quality care, effective communication, cultural sensitivity, and ensuring patient safety.
Providing high-quality medical care tailored to the patient's needs
Ensuring effective communication with the patient and their family, which may involve language interpretation services
Being culturally sensitive and respectful of the patient's beliefs and practices
Ensuring patient safety and preventing complications during their st...read more
Q42. What are different gas laws
Gas laws describe the behavior of gases under different conditions.
Boyle's Law: Pressure and volume of a gas are inversely proportional at constant temperature.
Charles's Law: Volume and temperature of a gas are directly proportional at constant pressure.
Gay-Lussac's Law: Pressure and temperature of a gas are directly proportional at constant volume.
Avogadro's Law: Volume of a gas is directly proportional to the number of moles at constant temperature and pressure.
Ideal Gas La...read more
Q43. What is torson stress
Torsion stress is the stress experienced by a material when it is subjected to twisting or torsional forces.
Torsion stress occurs when a material is twisted or subjected to torsional forces.
It is measured in units of force per unit area, such as pounds per square inch (psi) or pascals (Pa).
Torsion stress can cause deformation or failure in a material, especially if it exceeds the material's torsional strength.
Examples of torsion stress include twisting a metal rod or shaft, o...read more
Q44. What are your strenghts
My strengths include problem-solving, adaptability, and teamwork.
Strong problem-solving skills: I enjoy analyzing complex problems and finding innovative solutions.
Adaptability: I am able to quickly adapt to new situations and learn new technologies or processes.
Teamwork: I work well in a team environment, collaborating with others to achieve common goals.
Example: During my internship, I was part of a team that successfully implemented a new software system, where my problem-...read more
Q45. What is OOPs concept?
OOPs concept stands for Object-Oriented Programming concepts which includes encapsulation, inheritance, polymorphism, and abstraction.
Encapsulation is the process of hiding the implementation details from the user.
Inheritance allows a class to inherit properties and methods from another class.
Polymorphism allows objects to take on multiple forms or behaviors.
Abstraction is the process of hiding unnecessary details from the user.
Q46. What is eager loading?
Eager loading is a technique used in software development to load related data in advance to avoid multiple database queries.
Eager loading is used to optimize database queries and improve performance.
It loads all the required data in a single query instead of making multiple queries.
It is commonly used in Object-Relational Mapping (ORM) frameworks like Hibernate, Entity Framework, etc.
Eager loading can be used with various types of relationships like one-to-one, one-to-many, ...read more
Q47. various Springboot Annotations.
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
Q48. What is Dockerfile?
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
Q49. Why we require process qualifications?
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.
Q50. What is lspm
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
Q51. DIFFERENCE BETWEEN STRAIN AND STRESS?
Strain is the deformation of a material under load, while stress is the force applied to a material per unit area.
Strain is a measure of how much a material deforms under stress.
Stress is the force applied to a material per unit area.
Strain is a dimensionless quantity, while stress is measured in units of force per unit area (such as N/m^2 or Pa).
Strain can be either tensile (stretching) or compressive (squeezing), while stress can be tensile, compressive, or shear.
Example: W...read more
Q52. what are ur skills and explain ur projects?
I have strong skills in programming, data analysis, and project management. I have completed projects in web development, machine learning, and database management.
Programming: Proficient in languages such as Python, Java, and JavaScript.
Data Analysis: Experience with tools like Excel, SQL, and Tableau.
Project Management: Successfully led a team to develop a web application for a local business.
Web Development: Created a responsive website using HTML, CSS, and JavaScript.
Mach...read more
Q53. What do you meant by end of life care?
End of life care refers to the support and medical care given to a person who is nearing the end of their life.
End of life care focuses on providing comfort, dignity, and quality of life for the patient.
It involves managing symptoms, pain control, emotional support, and spiritual care.
End of life care also includes discussions about the patient's wishes for their care and decisions about life-sustaining treatments.
Hospice care is a common form of end of life care that provide...read more
Q54. 2. Design consideration of Castings
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
Q55. Comfortable for relocation
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.
Q56. What is the first law of thermodynamics?
The first law of thermodynamics states that energy cannot be created or destroyed, only transferred or converted.
Energy can be transferred between systems or converted from one form to another.
The total energy in a closed system remains constant.
Mathematically, the first law of thermodynamics is expressed as: ΔU = Q - W, where ΔU is the change in internal energy, Q is the heat added to the system, and W is the work done by the system.
For example, when a gas is compressed, wor...read more
Q57. WHat are the security roles and theoir importance
Security roles in Microsoft Dynamics CRM define the permissions and access levels for users.
Security roles control access to entities, fields, and actions within CRM.
They help ensure data security and prevent unauthorized access.
Roles can be customized to fit the specific needs of an organization.
Examples of security roles include System Administrator, Sales Manager, and Customer Service Representative.
Q58. DIFFERENCE BETWEEN STRUCTURE AND LINKS
Structures are rigid bodies that support loads, while links are flexible elements that connect structures.
Structures are typically made of rigid materials like steel or concrete
Links are often made of flexible materials like cables or chains
Structures provide support and stability to a system
Links allow for movement or flexibility within a system
Example: A bridge is a structure that supports loads, while the cables connecting the bridge deck are links
Q59. Different types of compressors
Different types of compressors include reciprocating, rotary, centrifugal, and axial compressors.
Reciprocating compressors use pistons to compress the gas.
Rotary compressors use rotating impellers or screws to compress the gas.
Centrifugal compressors use a rotating impeller to accelerate the gas and then convert the kinetic energy into pressure.
Axial compressors use a series of rotating and stationary blades to compress the gas in a linear flow.
Q60. @Components vs @Repository
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
Q61. SQL query to find last element
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.
Q62. Are u intrest ANDRAPRADESH???
No
No, I am not interested in Andhra Pradesh.
My focus is on the Fiber Engineer role and not specific geographical locations.
I am more interested in the technical aspects of the job and contributing to the company's goals.
I am open to working in different locations and adapting to new environments.
Q63. DEFINE BENDING MOMENT?
Bending moment is a measure of the bending effect on a beam or structural element.
Bending moment is the algebraic sum of moments about the neutral axis of a section of a beam or structural element.
It is caused by external forces acting on the beam, resulting in a bending or flexural deformation.
Bending moment is calculated using the formula: M = F * d, where M is the bending moment, F is the force applied, and d is the perpendicular distance from the force to the neutral axis...read more
Q64. 3. Sheet metal design consideration
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
Q65. 2. Casting Design Consideration
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
Q66. Experiences in Aug 19 To March 20
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
Q67. @Entity explain?
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
Q68. joins in SQL
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
Q69. Different between 1550 and 1310 wave length
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
Q70. Current is a flow in wire
Yes, current is the flow of electric charge in a wire.
Current is measured in amperes (A).
It is caused by the movement of electrons in a conductor.
The direction of current flow is from positive to negative.
Current can be either direct current (DC) or alternating current (AC).
Q71. Different types of data cables
Data cables are used to transfer data between devices. There are various types of data cables available.
USB cable - used to connect devices like smartphones, cameras, and printers to a computer
Ethernet cable - used to connect devices to a network or the internet
HDMI cable - used to connect devices like TVs and monitors to a computer or other device
Thunderbolt cable - used to connect devices like external hard drives and monitors to a computer
Coaxial cable - used to transmit c...read more
Q72. DEFINE THE HEAT TREATMENT
Heat treatment is a process used to alter the physical and sometimes chemical properties of a material through heating and cooling.
Heat treatment involves heating a material to a specific temperature, holding it at that temperature for a certain amount of time, and then cooling it at a controlled rate.
The purpose of heat treatment is to improve the material's hardness, strength, toughness, ductility, and other properties.
Common heat treatment processes include annealing, temp...read more
Q73. Which types of moulding machine
There are various types of moulding machines used in operations support, including injection moulding machines, blow moulding machines, and compression moulding machines.
Injection moulding machines are commonly used for producing plastic parts by injecting molten material into a mould.
Blow moulding machines are used to create hollow objects such as bottles by blowing air into a heated plastic tube.
Compression moulding machines are used for molding materials by applying heat a...read more
Q74. What is fiber types of fiber?
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.
Q75. Type of soil
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.
Q76. Explain what is OOPs
OOPs stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.
OOPs focuses on creating objects that contain data and methods to manipulate that data.
Encapsulation, inheritance, and polymorphism are key principles of OOPs.
Examples of OOPs languages include Java, C++, and Python.
Q77. Explain star delta starter
Star delta starter is a type of motor starter used to reduce the starting current of an induction motor.
It consists of three contactors and a timer.
During starting, the motor is connected in star configuration to reduce the voltage across each winding.
After a specified time, the motor is switched to delta configuration for normal operation.
This reduces the starting current and torque, preventing excessive heating and mechanical stress on the motor.
It is commonly used for larg...read more
Q78. Types of air dryer and its working
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
Q79. Working of fiber and ofc
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
Q80. Inheritance in java
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.
Q81. Html 5 vs Html
HTML5 is the latest version of HTML with new features and improvements.
HTML5 supports new elements like
, HTML5 introduces new APIs like Geolocation, Drag and Drop, Local Storage, Canvas, WebSockets, etc.
HTML5 supports multimedia elements like
HTML5 has improved semantics and accessibility features compared to HTML.
Q82. Data structures in C++
Data structures in C++ are used to store and organize data efficiently.
Data structures like arrays, linked lists, stacks, queues, trees, and graphs are commonly used in C++ programming.
Arrays are used to store a collection of elements of the same data type.
Linked lists are used to store elements in a linear order.
Stacks follow the Last In First Out (LIFO) principle.
Queues follow the First In First Out (FIFO) principle.
Trees are hierarchical data structures with a root node an...read more
Q83. Types of inheritence in oops
Types of inheritance in OOPs include single, multiple, multilevel, hierarchical, and hybrid inheritance.
Single inheritance: A class inherits from only one base class.
Multiple inheritance: A class inherits from more than one base class.
Multilevel inheritance: A class inherits from a class, which in turn inherits from another class.
Hierarchical inheritance: Multiple classes inherit from a single base class.
Hybrid inheritance: Combination of multiple and multilevel inheritance.
Q84. What is kcl kvl
KCL and KVL are fundamental laws in electrical engineering.
KCL (Kirchhoff's Current Law) states that the sum of currents entering a node is equal to the sum of currents leaving the node.
KVL (Kirchhoff's Voltage Law) states that the sum of voltages around any closed loop in a circuit is equal to zero.
KCL and KVL are used to analyze and solve electrical circuits.
KCL and KVL are based on the principle of conservation of charge and energy, respectively.
Q85. What is product management
Product management involves overseeing the development, marketing, and production of a product from start to finish.
Involves identifying market needs and opportunities
Includes developing product strategies and roadmaps
Requires coordinating cross-functional teams such as engineering, marketing, and sales
Involves managing the product lifecycle from concept to end-of-life
Includes analyzing market trends and competition
Q86. What are the expectations
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
Q87. What is the expectation.
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
Q88. what is pgi ?
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.
Q89. What is modulation
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.
Q90. Explain the scrum ceremonies
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
Top HR Questions asked in null
Interview Process at null
Top Interview Questions from Similar Companies
Reviews
Interviews
Salaries
Users/Month