Baker Hughes
30+ M.Kumarasamy College of Engineering Interview Questions and Answers
Q1. 1. SSL termination 2. Making S3 immutable so objects cannot be modified 3. How to protect public facing application 4. Difference between security groups and NACL 5. Difference between network and application l...
read moreQ2. What is an abstract class and interface in java
Abstract classes and interfaces are key concepts in Java for defining abstract types and enforcing contracts for classes.
An abstract class can have both abstract methods (without implementation) and concrete methods (with implementation).
An interface can only have abstract methods (prior to Java 8) and default methods (from Java 8 onwards).
A class can extend only one abstract class but can implement multiple interfaces.
Example of an abstract class: 'abstract class Animal { ab...read more
Q3. How to handle failed scenarios in your framework
Implementing robust handling for failed scenarios ensures reliability and aids in debugging within a QA framework.
Use logging to capture detailed error messages and stack traces for failed tests.
Implement retry logic for flaky tests to reduce false negatives. For example, retry a network call up to three times.
Categorize failures into critical and non-critical to prioritize fixes. Critical failures halt the pipeline, while non-critical can be logged.
Integrate notifications (e...read more
Q4. What is difference between interface and abstract class?
Interface defines only method signatures while abstract class can have method implementations.
An interface can be implemented by multiple classes while a class can extend only one abstract class.
An abstract class can have instance variables while an interface cannot.
An abstract class can have constructors while an interface cannot.
An abstract class can provide default implementations for some methods while an interface cannot.
Example: An interface for a shape can have a metho...read more
Q5. Difference between static and dynamic binding in java
Static binding occurs at compile time, while dynamic binding happens at runtime in Java.
Static binding is resolved during compile time, e.g., method overloading.
Dynamic binding is resolved during runtime, e.g., method overriding.
Static binding is faster as it doesn't involve runtime overhead.
Dynamic binding allows for polymorphism, enabling flexible code behavior.
Q6. OOPS concept used in your framework, explain with an example.
OOP concepts like encapsulation and inheritance enhance test automation frameworks for better maintainability and scalability.
Encapsulation: Wrapping data and methods in classes. Example: A 'TestCase' class that contains test steps and results.
Inheritance: Creating a base class for common functionalities. Example: 'BaseTest' class that other test classes extend.
Polymorphism: Using a single interface for different data types. Example: A 'runTest()' method that behaves differen...read more
Q7. Selenium code for generate stale element reference exception
Q8. Selenium script for fetch data from table using index
Q9. Why is it important to monitor the bacteira in the oil field?
Monitoring bacteria in oil field is crucial to ensure safety, prevent corrosion, and maintain production efficiency.
Bacteria can cause corrosion in pipelines and equipment, leading to costly repairs and downtime.
Certain bacteria can produce hydrogen sulfide gas, which is toxic and poses a safety risk to workers.
Bacteria can also reduce the efficiency of oil production by clogging pores and reducing flow rates.
Regular monitoring and treatment can prevent these issues and ensur...read more
Q10. How to communicate with components in angular?
Components in Angular can communicate with each other using @Input, @Output, and services.
Use @Input to pass data from parent to child component
Use @Output to emit events from child to parent component
Use services to share data between components that are not directly related
Use RxJS subjects to create a shared data stream between components
Q11. What is oops, explain them?
Object-oriented programming (OOP) is a programming paradigm that uses objects to represent and manipulate data.
OOP is based on the concept of classes and objects.
It allows for encapsulation, inheritance, and polymorphism.
Encapsulation hides the internal details of an object and provides a public interface.
Inheritance allows classes to inherit properties and methods from other classes.
Polymorphism allows objects of different classes to be treated as objects of a common supercl...read more
Q12. what are the Git commands
Git commands are essential for version control, enabling collaboration and tracking changes in code repositories.
git init: Initializes a new Git repository in the current directory.
git clone <repository>: Creates a local copy of a remote repository.
git add <file>: Stages changes to be committed.
git commit -m 'message': Records the staged changes with a descriptive message.
git push: Uploads local commits to a remote repository.
git pull: Fetches and merges changes from a remote...read more
Q13. Why is it important to to monitor the produced wated process
Monitoring produced water process is important for environmental compliance and cost savings.
Ensures compliance with environmental regulations
Identifies opportunities for cost savings through process optimization
Prevents contamination of water sources
Helps in identifying potential hazards and risks
Improves overall efficiency of the production process
Q14. What is difference between docker and kubernet?
Docker is a containerization platform while Kubernetes is a container orchestration tool.
Docker is used to create, deploy, and run applications in containers.
Kubernetes is used to manage and orchestrate multiple containers in a cluster.
Docker provides a way to package and distribute applications in a portable manner.
Kubernetes provides features like automatic scaling, load balancing, and self-healing.
Docker is a lower-level technology while Kubernetes is a higher-level techno...read more
Q15. Explain your test automation framework.
My test automation framework is a modular, scalable solution that enhances testing efficiency and reliability across applications.
Utilizes Selenium WebDriver for browser automation, allowing for cross-browser testing.
Incorporates TestNG for test management, enabling parallel execution and detailed reporting.
Employs Page Object Model (POM) design pattern to enhance code reusability and maintainability.
Integrates with CI/CD tools like Jenkins for automated test execution on cod...read more
Q16. What is RTM?
RTM stands for Requirements Traceability Matrix, a tool used to ensure all requirements are met in software development.
RTM links requirements to their corresponding test cases, ensuring coverage.
It helps in tracking changes in requirements throughout the project lifecycle.
Example: If a requirement changes, RTM shows which test cases need updates.
RTM aids in identifying gaps in testing and ensures all requirements are validated.
Q17. Put and patch method difference
PUT replaces a resource, while PATCH updates a resource partially.
PUT is idempotent; multiple identical requests have the same effect as a single request.
PATCH is not necessarily idempotent; repeated requests may yield different results.
Example of PUT: Updating a user's profile by sending the entire profile data.
Example of PATCH: Updating just the user's email address without affecting other fields.
Q18. Why is it important to monitor the injected seawater?
Monitoring injected seawater is important for ensuring safe and efficient oil production.
Seawater is used in oil production to maintain reservoir pressure and enhance oil recovery.
Monitoring helps to ensure that the seawater is of the correct quality and quantity.
If the seawater is not monitored properly, it can lead to corrosion, scaling, and other issues that can damage equipment and reduce production efficiency.
Regular monitoring can also help to identify potential problem...read more
Q19. How to developing the quality and production?
To develop quality and production, focus on training, process improvement, and effective communication.
Invest in training programs to enhance the skills of the welding team.
Implement process improvement initiatives to streamline operations and reduce errors.
Establish clear quality standards and regularly monitor and evaluate performance.
Encourage open communication between team members to address issues and share ideas.
Provide necessary resources and equipment to ensure effic...read more
Q20. Syntax for taking screenshot
Taking a screenshot in automation testing captures the current state of the application for verification.
In Selenium WebDriver, use: driver.getScreenshotAs(OutputType.FILE);
For saving the screenshot: FileUtils.copyFile(screenshot, new File('path/to/save/screenshot.png'));
In Python with Selenium: driver.save_screenshot('screenshot.png')
In JavaScript with Puppeteer: await page.screenshot({ path: 'screenshot.png' });
Q21. What is view encapsulation in angular?
View encapsulation is a feature in Angular that allows for the creation of isolated components.
View encapsulation ensures that styles defined in a component do not affect other components.
There are three types of view encapsulation: Emulated, Native, and None.
Emulated is the default and uses CSS to emulate shadow DOM.
Native uses the browser's native shadow DOM implementation.
None does not provide any view encapsulation and styles can leak out of the component.
Q22. 3. How to start the process, implement then execution
The process can be started by identifying the need, creating a plan, and obtaining necessary resources. Implementation involves executing the plan and monitoring progress.
Identify the need for procurement
Create a plan that includes goals, timelines, and resources
Obtain necessary resources such as budget and personnel
Execute the plan by following the established timeline and goals
Monitor progress and make adjustments as needed
Q23. What is event emitter in angular?
Event emitter is a class in Angular that allows communication between components.
Event emitter is used to emit custom events in Angular.
It allows communication between parent and child components.
It can be used to pass data from child to parent component.
It is a part of the @angular/core package.
Example: @Output() eventEmitter = new EventEmitter();
Q24. What is the documentation process and how many review stages?
Documentation process involves planning, writing, reviewing, and publishing documents.
The documentation process typically includes planning the content, writing the document, reviewing it for accuracy and clarity, and publishing the final version.
Review stages may vary depending on the organization, but commonly include peer reviews, technical reviews, and final approval by stakeholders.
Examples of review stages include peer review by other technical writers, technical review...read more
Q25. Working of DC-DC power supply. How to select component.
Q26. Which ASME standard is used for determining wall thickness?
ASME B31.3 is used for determining wall thickness in mechanical components.
ASME B31.3 is the standard for process piping
It provides guidelines for determining minimum wall thickness based on factors like material, pressure, temperature, and corrosion allowances
Calculations involve formulas and tables provided in the standard
Example: ASME B31.3 specifies the wall thickness requirements for piping systems in chemical plants
Q27. EKS Cluster and its related configuration
EKS is a managed Kubernetes service by AWS. It simplifies the deployment, scaling, and management of containerized applications.
EKS stands for Elastic Kubernetes Service
It is a fully managed service by AWS
It simplifies the deployment, scaling, and management of containerized applications
EKS uses Kubernetes as its container orchestration system
EKS supports both Linux and Windows containers
EKS can be configured using the AWS Management Console, AWS CLI, or AWS SDKs
EKS can be in...read more
Q28. What is JMS?What is difference between PUT and GET
JMS is Java Message Service, a messaging standard that allows Java applications to communicate with each other asynchronously.
JMS provides a way for applications to send and receive messages in a loosely coupled, reliable, and asynchronous manner.
PUT and GET are HTTP methods used for RESTful web services, not JMS.
In JMS, messages are sent using the 'send' method and received using the 'receive' method.
JMS supports two types of messaging: point-to-point and publish-subscribe.
J...read more
Q29. The is the best way to choose Biocide treatment?
The best way to choose Biocide treatment is by identifying the type of microorganisms present and selecting the appropriate biocide.
Identify the type of microorganisms present
Select the appropriate biocide based on the microorganism type
Consider the concentration and exposure time required for the biocide to be effective
Ensure the biocide is compatible with the system being treated
Regularly monitor and adjust the biocide treatment as needed
Q30. tell us about the time you had repair an equipment and how you fix it
I repaired a malfunctioning MRI machine by replacing a faulty component.
Diagnosed issue with MRI machine
Identified faulty component
Obtained replacement part
Installed new component
Tested machine to ensure proper functioning
Q31. How to create a springboot project
To create a Spring Boot project, use Spring Initializr or Spring Tool Suite.
Use Spring Initializr to generate a project with required dependencies and settings
Or use Spring Tool Suite to create a new Spring Starter Project
Configure the project settings and dependencies as per requirements
Add necessary code and run the project using the embedded server
Q32. What are the ASME 16.34 standards?
ASME 16.34 standards are guidelines set by the American Society of Mechanical Engineers for pressure and temperature ratings of valves.
ASME 16.34 standards specify pressure-temperature ratings, materials, design, testing, and inspection requirements for valves.
These standards ensure the safety and reliability of valves used in various industries.
For example, ASME B16.34 covers pressure-temperature ratings for steel flanged and buttweld end valves.
Compliance with ASME 16.34 st...read more
Q33. Give example of Gitops build lifecycle
GitOps is a modern approach to managing infrastructure and applications using Git as the single source of truth.
1. **Git Repository**: Store all configuration files in a Git repository.
2. **Continuous Integration**: Use CI tools (e.g., Jenkins, GitHub Actions) to build and test code changes.
3. **Pull Requests**: Developers create pull requests to propose changes, enabling code reviews.
4. **Automated Deployment**: Upon merging, CD tools (e.g., ArgoCD, Flux) automatically deplo...read more
Q34. Explain your project in detail from frontend to backend
Developed a web application for online shopping with user authentication and payment integration.
Frontend developed using React.js with responsive design for different screen sizes
Backend built with Node.js and Express.js for handling API requests
Database used MongoDB for storing product information and user data
Implemented user authentication using JWT tokens
Integrated payment gateway using Stripe API for secure transactions
Q35. Numpy code examples and optimisation
Numpy is a powerful library for numerical operations in Python, with efficient array operations and mathematical functions.
Use vectorized operations instead of loops for better performance.
Avoid unnecessary copying of arrays to save memory.
Utilize broadcasting to perform operations on arrays of different shapes.
Use numpy functions like np.sum(), np.mean(), np.max(), etc. for efficient calculations.
Optimize code by profiling and identifying bottlenecks.
Q36. Optimise that code written
Optimizing code for better performance and efficiency
Use built-in functions and libraries for faster execution
Minimize unnecessary loops and conditions
Avoid redundant code and optimize data structures
Implement caching or memoization for repetitive computations
Q37. Fats Information for job
FATS information is an acronym for Fluids, Air, Temperature, and Steam, which are crucial elements in mechanical systems.
Fluids: Knowledge of different types of fluids used in mechanical systems, such as hydraulic fluids and lubricants.
Air: Understanding of air flow and pressure in mechanical systems, including pneumatic systems.
Temperature: Ability to monitor and control temperature levels in mechanical equipment to prevent overheating or freezing.
Steam: Familiarity with ste...read more
Q38. Optimise python code
Optimizing Python code involves improving efficiency and performance.
Use built-in functions and libraries instead of writing custom code
Avoid unnecessary loops and nested loops for better performance
Optimize data structures and algorithms for faster execution
Q39. Projects in CV, welding, GD&T
I have experience working on projects involving welding and applying GD&T principles.
Completed a project where I designed and welded a steel frame for a small vehicle
Utilized GD&T principles to ensure precise measurements and tolerances in a project involving machining parts for an assembly line
Familiar with interpreting engineering drawings and applying GD&T symbols accurately
Top HR Questions asked in M.Kumarasamy College of Engineering
Interview Process at M.Kumarasamy College of Engineering
Top Interview Questions from Similar Companies
Reviews
Interviews
Salaries
Users/Month