Filter interviews by
I applied via Referral and was interviewed in Apr 2024. There were 2 interview rounds.
Coding is the alphabet letters and write the correct coding in the right way
Aptitude involves the mathematical calculations required to assess amounts over a year.
The assignment revolves around the appropriate skills and experience relevant to the company.
A business plan assignment and an introduction to business assignment.
In the company, when there is a project, one team member is required to lead a group discussion about that project to enhance communication skills.
If you have a case regarding the company, how would you approach it?
posted on 14 Dec 2024
I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.
posted on 6 Dec 2024
I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.
I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.
I have extensive experience with Excel, Python, R, and SQL for data analysis and programming tasks.
Proficient in Excel for data manipulation, analysis, and visualization
Skilled in Python for data cleaning, statistical analysis, and machine learning
Familiar with R for statistical modeling and data visualization
Experience with SQL for querying databases and extracting insights
I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.
SQL is necessary for most projects involving databases to manage and query data efficiently.
SQL is essential for creating, updating, and querying databases in most projects.
Without SQL, it would be challenging to interact with databases and retrieve specific data.
Examples of SQL commands include SELECT, INSERT, UPDATE, and DELETE.
SQL can help optimize database performance and ensure data integrity.
HQL stands for Hibernate Query Language, a query language similar to SQL but used for Hibernate ORM framework.
HQL is used to perform database operations in Hibernate ORM framework.
It is similar to SQL but operates on Hibernate objects instead of database tables.
HQL queries are written in Hibernate-specific syntax.
Example: 'FROM Employee e WHERE e.department = :dept'
HQL queries are translated into SQL queries by Hiberna
Views in Java are user interface components that display data from a model in a specific format.
Views are used to represent the user interface in Java applications.
They display data from a model in a visually appealing format.
Examples include buttons, text fields, labels, and checkboxes.
Cross joins are a type of join operation in SQL that combines each row from one table with each row from another table.
Cross joins do not have a join condition specified, resulting in a Cartesian product of the two tables.
They can be used when you want to combine every row from one table with every row from another table.
Cross joins can lead to a large result set if the tables being joined have many rows.
Delete removes rows one by one, while truncate removes all rows at once.
Delete is a DML command, while truncate is a DDL command.
Delete can be rolled back, while truncate cannot be rolled back.
Delete fires triggers, while truncate does not fire triggers.
Delete is slower as it logs individual row deletions, while truncate is faster as it logs the deallocation of the data pages.
posted on 18 Dec 2024
I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.
Group discussion for pm and rm cheak it
I have 5 years of experience working in printing packaging, managing vendor relationships and ensuring timely delivery of materials.
Managed vendor relationships to negotiate pricing and ensure quality standards were met
Coordinated with production team to meet deadlines and maintain inventory levels
Implemented cost-saving measures by optimizing packaging designs
Utilized ERP systems to track orders and manage inventory
Re...
I have extensive experience working in the pharma industry, specifically in procurement and sourcing.
Managed supplier relationships to ensure timely delivery of pharmaceutical products
Negotiated contracts with vendors to secure competitive pricing
Implemented cost-saving strategies while maintaining quality standards
Stayed updated on industry trends and regulations to make informed purchasing decisions
posted on 3 Nov 2024
SDS is used in SDS-PAGE to denature proteins and give them a negative charge for separation based on size.
SDS binds to proteins and denatures them by disrupting non-covalent bonds
SDS gives all proteins a negative charge, allowing them to be separated based on size in the gel
SDS helps to standardize the charge-to-mass ratio of proteins for accurate size separation
SDS-PAGE is commonly used in biochemistry and molecular b
I applied via Seek and was interviewed in Aug 2024. There were 3 interview rounds.
I have 5 years of experience working as a Quality Engineer in the manufacturing industry.
5 years of experience as a Quality Engineer
Experience in implementing quality control processes
Knowledge of quality standards and regulations
Experience in conducting quality audits and inspections
Experience in root cause analysis and problem-solving
Seeking new challenges and opportunities for growth in a different work environment.
Desire for career advancement
Seeking new challenges
Relocation
Company downsizing
Better work-life balance
I investigate a quality issue by gathering data, analyzing root causes, implementing corrective actions, and monitoring results.
Gather relevant data and documentation related to the quality issue
Analyze the data to identify potential root causes of the issue
Develop and implement corrective actions to address the root causes
Monitor the effectiveness of the corrective actions and make adjustments as needed
Lack of communication and unclear expectations frustrate me.
Lack of communication between team members
Unclear expectations from management
Inefficient processes causing delays
Micromanagement
Lack of recognition for hard work
Validation ensures the product meets the customer's needs, while verification ensures the product is built correctly.
Validation is the process of evaluating a product to ensure it meets the customer's requirements and needs.
Verification is the process of evaluating whether a product is built correctly according to the specifications and requirements.
Validation answers the question 'Are we building the right product?' w...
Passion for ensuring quality standards and continuous improvement in engineering processes.
Passion for quality assurance and process improvement
Interest in utilizing engineering skills to enhance product quality
Desire to contribute to a team focused on excellence
Previous experience in quality control or process optimization
I was interviewed in Nov 2024.
Berribot test with AI by asking questions on various application level and providing a code snippet to find the longest common prefix in a string array.
Java 8 features like lambda expressions and functional interfaces make coding with streams easier and more efficient.
Lambda expressions allow for concise and readable code when working with streams.
Functional interfaces like Predicate, Function, and Consumer can be used with streams to perform operations on elements.
Stream API provides methods like map, filter, and reduce for processing collections of data in a declara...
Optional in Java 8 is used to represent a value that may or may not be present, reducing the chances of NullPointerException.
Optional is used to avoid NullPointerException by explicitly stating whether a value is present or not.
Commonly used methods with Optional include isPresent(), get(), orElse(), orElseGet(), and map().
Example: Optional<String> optionalString = Optional.ofNullable("Hello");
Multiple inheritance is a feature in object-oriented programming where a class can inherit attributes and methods from more than one parent class.
Allows a class to inherit from multiple parent classes, combining their attributes and methods
Can lead to the diamond problem where ambiguity arises if two parent classes have a method with the same name
Achieved in languages like C++ using virtual inheritance or interfaces in
Steps to write an immutable class
Make the class final so it cannot be extended
Make all fields private and final
Do not provide setter methods for the fields
Ensure that any mutable objects within the class are also immutable
If a mutable object must be returned, make a deep copy before returning it
Types of dependency injection include constructor injection, setter injection, and interface injection.
Constructor injection: Dependencies are provided through a class's constructor.
Setter injection: Dependencies are provided through setter methods.
Interface injection: Dependencies are provided through an interface method.
In Spring framework, @primary is used to specify the primary bean to be autowired, while @qualifier is used to specify a specific bean to be autowired.
Use @Primary when there are multiple beans of the same type and you want to specify the primary one to be autowired.
Use @Qualifier when you want to specify a specific bean to be autowired by its name.
Example: @Primary annotation can be used on a bean definition to mark i...
Transaction management in Spring Boot ensures data integrity by managing database transactions.
Spring Boot uses @Transactional annotation to manage transactions
It ensures that all operations within a transaction are completed successfully or rolled back if an error occurs
Transactions can be managed programmatically using TransactionTemplate
Supports different transaction isolation levels like READ_COMMITTED, REPEATABLE_
Isolation levels in transactions determine the degree to which transactions are isolated from each other. Propagation types define how transactions are propagated between different components.
Isolation levels include READ UNCOMMITTED, READ COMMITTED, REPEATABLE READ, and SERIALIZABLE.
Propagation types include REQUIRED, REQUIRES_NEW, SUPPORTS, MANDATORY, and NEVER.
Isolation levels control the visibility of changes made ...
Design patterns in microservice architecture help in solving common design problems and improving scalability, maintainability, and flexibility.
Service Registry pattern - used for service discovery and registration
Circuit Breaker pattern - used for fault tolerance and resilience
API Gateway pattern - used for routing and load balancing
Saga pattern - used for managing distributed transactions
Event Sourcing pattern - used...
Inter-service communication in microservices involves using protocols like HTTP, gRPC, or messaging queues.
Microservices communicate with each other through APIs using protocols like HTTP or gRPC.
Message queues like RabbitMQ or Kafka can be used for asynchronous communication between services.
Service discovery tools like Consul or Eureka help services locate each other dynamically.
API gateways can be used to manage and...
Fault tolerance in microservices ensures system reliability by handling failures gracefully.
Microservices architecture breaks down applications into smaller, independent services.
Each microservice is designed to be resilient to failures and can continue to operate even if one service fails.
Fault tolerance is achieved through redundancy, monitoring, and graceful degradation.
Examples of fault tolerance mechanisms include...
Apache Kafka is a distributed streaming platform that allows for the publishing and subscribing to streams of records.
Apache Kafka is designed to be highly scalable and fault-tolerant.
It uses a distributed commit log to store messages.
Producers publish messages to topics, and consumers subscribe to topics to receive messages.
Kafka can be used for real-time stream processing, data pipelines, and event sourcing.
It provid...
RestTemplate is a synchronous client for making HTTP requests, while Feign Client is a declarative HTTP client that simplifies making API calls.
RestTemplate is part of the Spring framework and requires manual configuration for each request.
Feign Client is a declarative client that uses annotations to define API endpoints and parameters.
RestTemplate is synchronous, blocking the calling thread until the response is recei...
based on 2 reviews
Rating in categories
Sahrudaya Healthcare (Medicover Hospitals)
Parexel International
Metro Group of Hospitals
Bausch & Lomb