i
Reliance BP
Mobility
Filter interviews by
Inspecting columns involves checking for dimensions, alignment, surface finish, and reinforcement.
Check dimensions using a measuring tape or caliper
Ensure alignment by using a level
Inspect surface finish for any cracks, chips, or unevenness
Check reinforcement by looking for proper placement and spacing of rebar
Hydrotest during maintenance involves filling the equipment with water or another liquid to check for leaks or structural integrity.
Ensure the equipment is properly prepared for the hydrotest, including cleaning and removing any debris.
Fill the equipment with water or another suitable liquid to the specified pressure level.
Monitor the equipment for any leaks or pressure drops during the test.
Record the results of the h...
Top trending discussions
I applied via Company Website and was interviewed before Aug 2021. There were 2 interview rounds.
Technical questions.
I applied via Walk-in and was interviewed before Oct 2020. There were 4 interview rounds.
I want to join this company to contribute to its innovative projects and grow professionally in a dynamic environment.
Alignment with Values: The company's commitment to sustainability resonates with my personal values, as I have volunteered for environmental initiatives.
Career Growth Opportunities: I am impressed by the company's focus on employee development, such as mentorship programs and training workshops.
Innovati...
I appeared for an interview in Dec 2016.
I want to join IOCL because of its reputation for innovation, growth opportunities, and commitment to sustainability.
IOCL is known for its innovative approach in the oil and gas industry
I am impressed by the growth opportunities and career development programs offered by IOCL
I am passionate about sustainability and appreciate IOCL's commitment to environmental responsibility
I believe that working at IOCL will allow me ...
Yes, I am considering pursuing a MS/PhD in the future to further my education and career opportunities.
Considering further education for career advancement
Interested in gaining specialized knowledge and skills
Exploring options for higher academic qualifications
Oil and gas sector offers diverse opportunities, global reach, and stability.
Global reach: Oil and gas sector operates worldwide, providing opportunities for international experience and networking.
Diverse opportunities: From exploration and production to refining and distribution, there are various roles to explore within the sector.
Stability: Despite market fluctuations, oil and gas remains a crucial industry for glo...
Petroleum refining is the process of converting crude oil into useful products like gasoline, diesel, and jet fuel.
Crude oil is first heated and then sent to a distillation tower where it is separated into different components based on their boiling points.
The separated components are then further processed through various refining processes such as cracking, reforming, and hydrotreating.
Cracking breaks down heavy hydr...
I applied via GATE 2015
NPSH (Net Positive Suction Head) is crucial for pump operation, ensuring adequate pressure to prevent cavitation.
NPSH is defined as the difference between the pressure at the pump suction and the vapor pressure of the liquid.
It is critical for preventing cavitation, which can damage pumps and reduce efficiency.
NPSH is categorized into NPSH available (NPSHa) and NPSH required (NPSHr).
For example, if NPSHa is less than N...
An airplane adjusts its height by changing the angle of its wings and using control surfaces.
An airplane adjusts its height by changing the angle of its wings, which is controlled by the pilot using the control column or yoke.
To climb, the pilot increases the angle of attack of the wings, which increases lift and allows the airplane to gain altitude.
To descend, the pilot decreases the angle of attack, reducing lift and...
CPM and PERT are project management techniques used to plan and control complex projects.
CPM stands for Critical Path Method and PERT stands for Program Evaluation and Review Technique.
CPM is a deterministic method that focuses on the time required to complete a project, while PERT is a probabilistic method that considers uncertainties in project duration.
CPM uses a single estimate for each activity duration, while PER...
My strengths include strong communication skills and attention to detail. My weakness is that I can be overly critical of myself.
Strengths: strong communication skills
Strengths: attention to detail
Weakness: overly critical of myself
Aerodynamic profile application in fluid machinery
Aerodynamic profiles are used in fluid machinery to optimize performance and efficiency
They are designed to minimize drag and maximize lift
Examples include airfoils in aircraft wings, propeller blades, and turbine blades
Aerodynamic profiles are also used in pumps, fans, and compressors to improve fluid flow
They are crucial in the design of vehicles, wind turbines, and o...
Yes, I have appeared in several PSU interviews, gaining valuable experience and insights into the selection process.
Participated in the ONGC interview last year, which helped me understand the technical and HR interview dynamics.
Attended the BHEL interview, where I learned to articulate my projects and internships effectively.
Gained experience from the NTPC interview, focusing on problem-solving and analytical skills.
I want to join because of my passion for serving the community and making a positive impact.
Passion for serving others
Desire to make a positive impact
Interest in contributing to the community
Seeking a challenging and rewarding career
posted on 24 Jul 2017
A lease can be terminated through mutual agreement, expiration, breach, or eviction.
Mutual agreement: Both parties agree to end the lease before the agreed-upon term.
Expiration: The lease ends naturally after the agreed-upon term.
Breach: One party violates the terms of the lease, allowing the other party to terminate it.
Eviction: The landlord legally removes the tenant from the property due to non-payment or other viol...
I appeared for an interview in Feb 2025, where I was asked the following questions.
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...
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 ...
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 ...
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.
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...
A Stale Element Reference Exception occurs when a web element is no longer attached to the DOM in Selenium.
Element Re-fetching: If you store a reference to a web element and the DOM changes, re-fetch the element before interacting with it.
Example: After clicking a button that causes a page refresh, the previously stored element reference will be stale.
Wait for Element: Use WebDriverWait to ensure the element is present...
Selenium can fetch data from a table using index by locating elements and iterating through rows and cells.
Locate the table using XPath or CSS selectors, e.g., driver.findElement(By.xpath('//table')).
Use findElements to get all rows: List<WebElement> rows = driver.findElements(By.xpath('//table/tbody/tr')).
Iterate through rows and fetch data using index: String cellData = rows.get(rowIndex).findElements(By.tagNam...
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 ...
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.
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' });
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, w...
I appeared for an interview before Aug 2024, where I was asked the following questions.
based on 1 interview experience
Senior Manager
213
salaries
| ₹10 L/yr - ₹18.1 L/yr |
Network Development Manager
99
salaries
| ₹11 L/yr - ₹18.5 L/yr |
Area Manager
95
salaries
| ₹8.2 L/yr - ₹13 L/yr |
Area Sales Representative
85
salaries
| ₹8.2 L/yr - ₹14.3 L/yr |
Manager Sales & Operations
83
salaries
| ₹8.2 L/yr - ₹13.5 L/yr |
Indian Oil Corporation
Shell
Bharat Petroleum
Hindustan Petroleum