i
WebMD
Filter interviews by
I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.
In memory database related question where I was asked to create class to satisfy test case written already, 4 level of question were there.
Node.js uses event-driven architecture to handle asynchronous tasks while synchronous tasks are executed in a blocking manner.
Node.js uses event loop to handle asynchronous tasks by offloading them to the system, allowing other tasks to continue without waiting.
Synchronous tasks are executed in a blocking manner, meaning the program waits for each task to complete before moving on to the next one.
Node.js provides non-b...
I deploy my application using containerization and continuous integration/continuous deployment (CI/CD) pipelines.
Utilize Docker to containerize the application for easy deployment and scalability
Use CI/CD pipelines such as Jenkins or GitLab CI to automate the deployment process
Deploy to cloud platforms like AWS, Azure, or Google Cloud for reliable hosting
Implement monitoring and logging tools like Prometheus and ELK s...
Caching can be implemented using RabbitMQ by storing frequently accessed data in memory.
Set up a RabbitMQ server to act as a message broker
Publish data to RabbitMQ when it is fetched from the database
Subscribe to messages in your Node.js application and store the data in memory
Check the cache before fetching data from the database
Node.js is single-threaded, but can handle multiple threads using child processes or worker threads.
Use child processes to run multiple instances of Node.js
Use worker threads for CPU-intensive tasks
Leverage the cluster module to create a pool of worker processes
Fork creates a new process while spawn launches a new process asynchronously.
Fork is used to create child processes in Node.js, typically for running separate instances of the same application.
Spawn is used to launch a new process asynchronously, allowing for communication between the parent and child processes.
Fork is commonly used in cluster mode for load balancing in Node.js applications.
Spawn is used for executing ...
Top trending discussions
Formula to calculate number of squares that can fit inside a triangle
Calculate the area of the triangle and the area of the square
Divide the area of the triangle by the area of the square to get the number of squares that can fit inside the triangle
Formula: (h*b)/(a*a)
SVM is a machine learning algorithm used for classification and regression analysis.
SVM finds the best hyperplane that separates data into different classes.
It works by maximizing the margin between the hyperplane and the closest data points.
SVM can handle both linear and non-linear data using kernel functions.
It is widely used in image classification, text classification, and bioinformatics.
SVM has been shown to be ef...
Logistic regression is used for classification while linear regression is used for regression analysis.
Logistic regression predicts the probability of an event occurring, while linear regression predicts the value of a continuous variable.
Logistic regression uses a sigmoid function to map input values to a probability between 0 and 1.
Linear regression assumes a linear relationship between the independent and dependent ...
I appeared for an interview before Sep 2020.
Round duration - 60 minutes
Round difficulty - Medium
30 Aptitude problems and two coding questions
Given an integer array ARR
of size N
, your task is to find the total number of inversions that exist in the array.
An inversion is defined for a pair of integers in the...
Count the total number of inversions in an integer array.
Iterate through the array and for each pair of elements, check if the conditions for inversion are met.
Use a nested loop to compare each pair of elements efficiently.
Keep a count of the inversions found and return the total count at the end.
Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array.
array = [34, -50, 42, 14, -5, 86]
Find the maximum sum of any contiguous subarray within an array of integers.
Iterate through the array and keep track of the maximum sum of subarrays encountered so far.
At each index, decide whether to include the current element in the subarray or start a new subarray.
Use Kadane's algorithm to solve the problem efficiently.
Example: For array [34, -50, 42, 14, -5, 86], the maximum subarray sum is 137.
Round duration - 90 minutes
Round difficulty - Medium
Data structure and algorithms plus object oriented problems
You are given a sequence of numbers, ARR
. Your task is to return a sorted sequence of ARR
in non-descending order using the Merge Sort algorithm.
The Merge Sort...
Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.
Divide the input array into two halves recursively until each array has only one element.
Merge the sorted halves to produce a completely sorted array.
Time complexity of Merge Sort is O(n log n).
Example: Input: [3, 1, 4, 1, 5], Output: [1, 1, 3, 4, 5]
Given a singly linked list of integers and a reference to a node, your task is to delete that specific node from the linked list. Each node in the linked li...
Given a singly linked list of integers and a reference to a node, delete the specified node from the linked list.
Traverse the linked list to find the node to be deleted
Update the pointers to skip over the node to be deleted
Print the modified linked list after deletion
Round duration - 60 miinutes
Round difficulty - Easy
Database questions and discussion about projects
Normal forms in database management systems help in organizing data to reduce redundancy and improve data integrity.
Normal forms are rules used to design relational database tables to minimize redundancy and dependency.
Boyce-Codd Normal Form (BCNF) is a stricter version of Third Normal Form (3NF) where every determinant is a candidate key.
BCNF helps in eliminating anomalies like insertion, update, and deletion anomalie...
WHILE is used in loops to repeatedly execute a block of code, while HAVING is used in SQL queries to filter results based on aggregate functions.
WHILE is used in programming languages like SQL to create loops for executing a block of code multiple times.
HAVING is used in SQL queries to filter results based on aggregate functions like SUM, COUNT, AVG, etc.
WHILE is used for iterative operations, while HAVING is used for ...
Tip 1 : Competitive Programming
Tip 2 : Do atleast 2 projects
Tip 1 : To be precise, mention your technical skills, achievements, dont write anything unnecessary plus write your professional summary good mention your project details in not more than 2 lines and make sure those sentences make sense to reader.
Tip 2 : Resume should be not more than one page. Write everything within one page
posted on 9 Sep 2023
I applied via Naukri.com and was interviewed in Aug 2023. There were 2 interview rounds.
React hooks are functions that let you use state and other React features without writing a class.
Hooks are functions that let you use state and other React features in functional components
useState() is a hook that allows you to add state to functional components
useEffect() is a hook that allows you to perform side effects in functional components
useContext() is a hook that allows you to use the context API in functio...
Liskov Substitution Principle states that objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correctness.
Subtypes must be substitutable for their base types.
Derived classes must be able to replace their base classes without affecting the program's behavior.
Violating this principle can lead to unexpected behavior and errors in the code.
Example: If a program expec...
Oops concept is a programming paradigm that focuses on objects and classes.
Oops stands for Object-Oriented Programming
Key concepts include inheritance, encapsulation, polymorphism, and abstraction
Examples: Class Car with properties like make, model, and methods like start(), stop()
Example: Inheritance - Class SUV extends Car and adds property numSeats
Inheritance and encapsulation are core OOP concepts that promote code reuse and data protection in software development.
Inheritance allows a class to inherit properties and methods from another class, promoting code reuse. Example: class Dog extends Animal.
Encapsulation restricts access to certain components of an object, protecting its state. Example: using private variables with public getters/setters.
Inheritance can...
Full selectors select all descendants of a specified element, while partial selectors select only direct children.
Full selectors use a space between the parent and child elements, while partial selectors use the > symbol.
Full selectors are more general and can target multiple levels of descendants, while partial selectors are more specific and target only direct children.
Example of full selector: div p selects all
ele...
Screen scraping is extracting data from a website's HTML code, while data scraping is extracting data from various sources.
Screen scraping involves extracting data from the visual representation of a website, usually using automation tools like web scrapers.
Data scraping involves extracting data from various sources such as databases, APIs, and documents.
Both screen scraping and data scraping are used to collect and an...
I applied via unstop and was interviewed before Oct 2023. There were 3 interview rounds.
It was medium to difficult level test
posted on 2 Feb 2024
I applied via Campus Placement and was interviewed in Jan 2024. There were 3 interview rounds.
Computer fundamentals
based on 1 interview experience
Difficulty level
Duration
Senior Software Engineer
94
salaries
| ₹18.8 L/yr - ₹32.8 L/yr |
Software Engineer
89
salaries
| ₹9 L/yr - ₹15.1 L/yr |
Project Manager
47
salaries
| ₹10 L/yr - ₹15.5 L/yr |
Medical Writer
27
salaries
| ₹7.9 L/yr - ₹12 L/yr |
Technical Lead
26
salaries
| ₹14.8 L/yr - ₹44 L/yr |
Apollo Hospitals
GeBBS Healthcare Solutions
Max Healthcare
UnitedHealth