Filter interviews by
Be the first one to contribute and help others!
I was interviewed in Jan 2025.
1. Explain about framework architecture and from that all questions derived. asked to write diagram and explain the structure.
2. Difference between class variable and instance variable.
3. what is ITestListener why used and when used in framework.
4. architecture of selenium 4 (geckodriver, chromium driver)
5. what is BDD and cucumber, how both are related to.
6. which kind of framework you go, either POM or Page factory for with testNg/junit?
7. asked to write query on sql joins and how you fetch the second lowest of salary from each department.
8. DDL, DML statements.
9. pathquery and query parameters differences(API)
10. How the responses you are validating in automation framework for Json response file.
11. status code of Https
12. serialization and deserialization difference
13. String Builder, String Buffer and String difference? which is better and which is safe to use.
14. Dropdown in selenium how you handle, how to check which is already selected?
15. multiple data provider in testng and how you pass parameter and how you retrive from excel sheet? Asked to write code!
16.what is flaky testing?
17.Asked to write first code of JDBC connecting establishment with framework.
18. Code execution: input ="aabbabcbb"; output = a:3 , b:5, c:1 like this if they give name also it should count. Tip : HashMap you can write the code.
19. Code execution: a[]={1,2,3,4,0,0,0} b={5,6,7} output need to print as remove all 0's from first array and replace 1,2,3,4 with 5,6,7 some crazy questions.
20. Git cmds and CI/CD tool.
1. asked about architecture and where you used oops concepts?
2. abstract class and interfaces
3. select drop down all options
4. find scrape links from webpage write the code
5. asked for writing xpath for any element random website.
6. asked about following-sibling, descendent and preceding-sibling, normalise-space locators.
7. jdbc connection code.
8. API JSON file - how you done validation in automation testing.
I have not pursued a team lead position because I have been focused on honing my technical skills. I have experience working on projects in both waterfall and agile methodologies.
I have chosen to focus on improving my technical skills as an individual contributor rather than taking on a managerial role.
I have worked on projects using both waterfall and agile methodologies, adapting to the needs of the team and project.
...
I was interviewed in Jan 2025.
A sequence was provided: 4181, 2684, 1597, 987, 610.
first 2 are given and write code for other value calculation using java 8
The second question required writing a reverse of a palindrome using both Java 8 streams. I was able to successfully write both and clear the first round.
Java 17 introduces sealed classes to restrict inheritance and improve code maintainability.
Sealed classes are declared using the 'sealed' keyword followed by the permitted subclasses.
Subclasses of a sealed class must be either final or sealed themselves.
Errors may occur when trying to extend a sealed class with a non-permitted subclass.
Implementation of 'notify me if item is back in stock' feature in an ecommerce application
Create a database table to store user notifications for out-of-stock items
Implement a service to check item availability and send notifications to subscribed users
Provide a user interface for users to subscribe to notifications for specific items
I was interviewed in Dec 2024.
API Gateway implementation is a centralized service that routes, manages, and secures API calls.
API Gateway acts as a single entry point for all API calls
It can handle authentication, rate limiting, caching, and request/response transformations
Examples include AWS API Gateway, Apigee, Kong
Circuit breaker is a design pattern used to prevent system overload by temporarily stopping requests to a failing service.
Circuit breaker monitors requests to a service and opens when the service fails repeatedly.
It helps prevent cascading failures and allows the system to gracefully degrade.
Once the circuit breaker is open, it can periodically check if the service has recovered before allowing requests again.
Deadlock is a situation in which two or more processes are unable to proceed because each is waiting for the other to release a resource.
Avoid circular wait by ensuring processes request resources in the same order.
Prevent hold and wait by requiring processes to request all needed resources at once.
Implement a timeout mechanism to break potential deadlocks.
Use resource allocation graphs to detect and prevent deadlocks.
...
The equals() method is used to compare the contents of two objects for equality.
The equals() method is a method of the Object class in Java.
It is used to compare the contents of two objects for equality.
The default implementation of equals() in the Object class compares memory addresses, so it is often overridden in custom classes to compare content.
Example: String class overrides equals() method to compare the content
MongoDB was integrated in the application by using the official Java driver and configuring connection settings.
Used the official MongoDB Java driver to interact with the database
Configured connection settings such as host, port, database name, and authentication credentials
Implemented CRUD operations using MongoDB Java driver methods
Utilized MongoDB aggregation framework for complex queries
Hibernate is an open-source Java framework that simplifies the development of database interactions in Java applications.
Hibernate is an Object-Relational Mapping (ORM) tool that maps Java objects to database tables.
It provides a way to perform database operations using Java objects instead of writing SQL queries.
Hibernate handles the mapping of Java classes to database tables and vice versa, as well as the generation ...
Runnable is a functional interface with a single run() method, while Callable is a functional interface with a single call() method.
Runnable is used for tasks that do not return a result, while Callable is used for tasks that return a result.
Callable can throw checked exceptions, while Runnable cannot.
Callable returns a Future object, which can be used to retrieve the result of the computation.
Example: Runnable - execu...
The Callable interface in Java returns a Future object.
Callable interface returns a Future object which represents the result of a computation that may not be available yet.
The Future object can be used to retrieve the result of the computation, check if it is done, or cancel the computation.
Example: Callable<Integer> task = () -> { return 42; }
Monitor application health using metrics, logs, alerts, and performance monitoring tools.
Use monitoring tools like Prometheus, Grafana, or New Relic to track key metrics such as CPU usage, memory usage, response times, and error rates.
Implement logging to record important events and errors in your application. Use tools like ELK stack (Elasticsearch, Logstash, Kibana) for log analysis.
Set up alerts to notify you of any...
To call an API in a Microservice architecture, use HTTP requests or messaging protocols like gRPC.
Use HTTP requests to communicate between microservices
Implement RESTful APIs for easy integration
Leverage messaging protocols like gRPC for efficient communication
Consider using service discovery mechanisms for dynamic API calls
Profiles in Java are configurations that define the capabilities of a Java platform.
Profiles allow developers to target specific types of devices or applications.
They help in reducing the size of the Java runtime environment by including only the necessary APIs.
Examples include Java SE Embedded Profile for embedded devices and Java SE Compact Profile for resource-constrained environments.
OpenFeign is a declarative web service client used to simplify the process of making HTTP requests in microservices architecture.
OpenFeign allows developers to define RESTful web services as interfaces and automatically generate the necessary implementation code.
It integrates seamlessly with Spring Cloud and other microservices frameworks to facilitate communication between services.
OpenFeign supports features like loa...
Service registry and discovery involves registering services and allowing clients to discover and connect to them.
Implement a service registry where services can register themselves with metadata
Use a service discovery mechanism for clients to find and connect to services
Implement health checks to ensure services are available and healthy
Use a load balancer to distribute traffic among multiple instances of a service
Spring Boot Actuators are built-in tools that provide insight into the running application.
Actuators expose various endpoints to monitor and manage the application.
They can be used to check health, metrics, environment details, and more.
Examples include /actuator/health, /actuator/metrics, and /actuator/env.
Synchronous communication is blocking, while asynchronous communication is non-blocking.
Synchronous communication waits for a response before continuing, while asynchronous communication does not wait.
Examples of synchronous communication include traditional function calls, while examples of asynchronous communication include callbacks and promises.
Synchronous communication can lead to performance issues if there are d...
Synchronized keyword is used in Java to control access to shared resources by multiple threads.
Synchronized keyword can be applied to methods or code blocks to ensure only one thread can access the synchronized code at a time.
It prevents race conditions and ensures thread safety by creating a lock on the object or class.
Example: synchronized void myMethod() { // synchronized code block }
Excessive use of synchronized blocks and methods in Java can lead to performance issues and potential deadlocks.
Decreased performance due to increased contention for locks
Potential deadlocks if multiple threads are waiting for each other to release locks
Increased complexity and difficulty in debugging and maintaining code
Use synchronized sparingly and consider alternatives like ConcurrentHashMap or Lock interface
The number of threads needed for an application can be determined based on factors like the type of tasks, hardware resources, and performance requirements.
Consider the type of tasks your application needs to perform - CPU-bound tasks may benefit from more threads, while I/O-bound tasks may not.
Take into account the hardware resources available - more threads may be beneficial on a multi-core processor compared to a si...
Executor framework is a framework in Java that provides a way to manage and execute tasks asynchronously.
Allows for managing thread execution in a more efficient way
Provides a way to decouple task submission from task execution
Supports various types of executors like ThreadPoolExecutor and ScheduledExecutorService
Helps in handling tasks concurrently and asynchronously
BlockingQueue is an interface in Java that represents a queue which supports operations that wait for the queue to become non-empty when retrieving an element and wait for space to become available in the queue when adding an element.
BlockingQueue is part of the java.util.concurrent package.
It is used for implementing producer-consumer scenarios where multiple threads are involved.
Methods like put() and take() are used...
Seeking new challenges and opportunities for growth.
Desire for career advancement
Looking for new challenges
Seeking better work-life balance
Company restructuring or downsizing
Relocation to a new area
posted on 7 Jan 2025
I applied via Approached by Company and was interviewed in Dec 2024. There were 3 interview rounds.
I am impressed by the company's reputation for innovation and growth in the industry.
Strong reputation for innovation and growth
Exciting opportunities for career development
Positive company culture and values
Alignment with my career goals and values
The sales data from my last company showed consistent growth year over year, with a focus on increasing market share and expanding customer base.
Sales data indicated a steady increase in revenue each quarter.
Implemented strategies to target new markets and increase customer retention.
Utilized data analysis to identify trends and opportunities for growth.
Collaborated with sales team to set and achieve ambitious targets.
...
My strengths include strong leadership skills and strategic thinking. My weaknesses include a tendency to be overly critical of myself.
Strengths: strong leadership skills
Strengths: strategic thinking
Weaknesses: tendency to be overly critical of myself
My hobbies include hiking, photography, and cooking. One of my favorite hobbies is hiking.
I enjoy exploring nature and challenging myself physically
I often hike on weekends to different trails and mountains
I love capturing the beauty of landscapes and wildlife through photography while hiking
Cooking is a creative outlet for me where I experiment with new recipes and flavors
The specific product is a high-performance laptop designed for gaming and graphic design.
Processor: Intel Core i7
Graphics: NVIDIA GeForce RTX 2080
Memory: 16GB DDR4 RAM
Storage: 1TB SSD
Display: 15.6-inch Full HD
Features: RGB backlit keyboard, high refresh rate screen
I am a dedicated and experienced professional with a strong background in sales and management.
Over 5 years of experience in sales and management roles
Proven track record of exceeding sales targets
Strong leadership and communication skills
Experience in developing and implementing sales strategies
Ability to build and maintain strong client relationships
My salary expectations are in line with industry standards and commensurate with my experience and qualifications.
Research industry standards for the position
Consider my experience and qualifications
Be prepared to negotiate based on job responsibilities and benefits package
I applied via Job Fair and was interviewed in Dec 2024. There was 1 interview round.
HUL seeks candidates with strong technical skills, problem-solving abilities, teamwork, communication skills, and a willingness to learn and adapt.
Strong technical skills in civil engineering
Problem-solving abilities to tackle complex projects
Teamwork skills to collaborate with colleagues and stakeholders
Effective communication skills to convey ideas and updates
Willingness to learn and adapt to new technologies and pro
I align with HUL's core values and sustainability initiatives through my commitment to ethical practices and environmentally friendly solutions.
I prioritize sustainability in my engineering projects by incorporating green building practices and renewable energy sources.
I value diversity and inclusion, promoting a collaborative work environment that respects all individuals.
I support community engagement and social resp...
Led a team in designing and constructing a sustainable bridge project.
Organized team meetings to discuss project goals and delegate tasks
Provided guidance and support to team members throughout the project
Resolved conflicts and kept team motivated towards project completion
Presented final project to stakeholders and received positive feedback
I stay updated by attending conferences, reading industry publications, and networking with other professionals.
Attend industry conferences and seminars
Read industry publications and journals
Participate in online forums and discussion groups
Network with other professionals in the field
Take continuing education courses to learn about new technologies and practices
I was interviewed in Dec 2024.
The amount of money that can be taken from parents should be reasonable and within their means.
It is important to consider the financial situation of the parents before asking for money.
Discuss the specific amount needed and the purpose for which it will be used.
Ensure that the parents are comfortable with the amount and are willing to provide support.
Avoid pressuring or manipulating parents into giving more money than...
based on 6 reviews
Rating in categories
Biomedical Engineer
4
salaries
| ₹3 L/yr - ₹12 L/yr |
Junior Accountant
3
salaries
| ₹2 L/yr - ₹4 L/yr |
Director
3
salaries
| ₹36 L/yr - ₹36 L/yr |
Consultant Pathologist
3
salaries
| ₹8.5 L/yr - ₹8.5 L/yr |
AIIMS
Apollo Hospitals
Fortis Healthcare
Manipal Hospitals