You're in an interview, and the interviewer asks,
here's how you can answer:
Sample Answer:
▶️ Tap on the text to Copy.
How many types of API functions are available in Node.js? Explain them.
here's how you can answer:
Sample Answer:
In Node.js, there are mainly two types of API functions: blocking (synchronous) and non-blocking (asynchronous).
Blocking functions execute code one line at a time, meaning the next line won’t run until the current task is finished. For example, when you use fs.readFileSync() to read a file, it waits until the file is completely read before moving on to the next line of code. This approach can slow down the application if the task takes a long time because it blocks everything else from running.
Non-blocking functions, on the other hand, let other code run while the task is happening in the background. For instance, fs.readFile() reads a file asynchronously and immediately moves on to the next line without waiting. This makes non-blocking functions much faster and more efficient, especially for tasks like reading files, making network requests, or interacting with a database.
Node.js relies heavily on non-blocking functions because they help the application handle many tasks at once without getting stuck, making it more responsive and scalable. This approach is great for high-performance applications like web servers, where you need to handle multiple requests at the same time without delays.
So, to sum it up: blocking functions execute tasks one by one, stopping other code from running, while non-blocking functions run tasks in the background, keeping everything else running smoothly.▶️ Tap on the text to Copy.
❤1
Entry-level Data Analysis Interview Preparation Questions with Answers
❤3
What are SQL functions?
SQL functions are predefined operations that can be invoked with specific arguments to perform computations, manipulate data, or return specific results.
These functions can be categorized into several types based on their purpose:
1. Scalar Functions: These functions operate on a single value and return a single value. eg: LEN(), CAST() etc.
2. Aggregate Functions: These functions operate on a set of values and return a single value summarizing that set. eg: SUM(), AVG() etc.
3. Analytic Functions (Window Functions): These functions perform calculations across a set of rows related to the current row. eg: ROW_NUMBER() etc.
4. Table-Valued Functions: Unlike scalar functions, table-valued functions return a table as a result. They can accept parameters and perform complex processing to generate the output table.
AGGREGATE FUNCTIONS:
An aggregate function is a function that performs a calculation on a set of values, and returns a single value. We often use aggregate functions when you have a lot of data and you want to summarize it in some way, like finding totals, averages, or extremes.
For example, imagine you have a bunch of numbers and you want to find the total, average, or maximum number. Aggregate functions help you do that.
We can also use these functions with a GROUP BY clause, which is like organizing your data into groups based on certain criteria. So, you can get summaries for each group separately.
Some examples for aggregate functions are given below:
1. MIN() - returns the smallest value within the selected column.
2. MAX() - returns the largest value within the selected column.
3. COUNT() - returns the number of rows in a set.
4. SUM() - returns the total sum of a numerical column.
5. AVG() - returns the average value of a numerical column.
📌Other than COUNT(), aggregate functions ignore null values.
LIKE OPERATOR:
"LIKE" is an operator that helps you search for patterns within text data. Like finding all the words that start with a certain letter or contain a specific sequence of characters.
What are wildcards?
Wildcards are symbols used in conjunction with the "LIKE" operator in SQL to represent one or more characters in a search pattern. They act as placeholders for unknown or variable characters, allowing you to search for patterns rather than exact matches.
Types:
1. % (Percent Sign): This wildcard represents zero, one, or multiple characters. It can be used to match any sequence of characters.
2. _(Underscore): This wildcard represents a single character. It matches any single character in that position of the string.
SQL functions are predefined operations that can be invoked with specific arguments to perform computations, manipulate data, or return specific results.
These functions can be categorized into several types based on their purpose:
1. Scalar Functions: These functions operate on a single value and return a single value. eg: LEN(), CAST() etc.
2. Aggregate Functions: These functions operate on a set of values and return a single value summarizing that set. eg: SUM(), AVG() etc.
3. Analytic Functions (Window Functions): These functions perform calculations across a set of rows related to the current row. eg: ROW_NUMBER() etc.
4. Table-Valued Functions: Unlike scalar functions, table-valued functions return a table as a result. They can accept parameters and perform complex processing to generate the output table.
AGGREGATE FUNCTIONS:
An aggregate function is a function that performs a calculation on a set of values, and returns a single value. We often use aggregate functions when you have a lot of data and you want to summarize it in some way, like finding totals, averages, or extremes.
For example, imagine you have a bunch of numbers and you want to find the total, average, or maximum number. Aggregate functions help you do that.
We can also use these functions with a GROUP BY clause, which is like organizing your data into groups based on certain criteria. So, you can get summaries for each group separately.
Some examples for aggregate functions are given below:
1. MIN() - returns the smallest value within the selected column.
2. MAX() - returns the largest value within the selected column.
3. COUNT() - returns the number of rows in a set.
4. SUM() - returns the total sum of a numerical column.
5. AVG() - returns the average value of a numerical column.
📌Other than COUNT(), aggregate functions ignore null values.
LIKE OPERATOR:
"LIKE" is an operator that helps you search for patterns within text data. Like finding all the words that start with a certain letter or contain a specific sequence of characters.
What are wildcards?
Wildcards are symbols used in conjunction with the "LIKE" operator in SQL to represent one or more characters in a search pattern. They act as placeholders for unknown or variable characters, allowing you to search for patterns rather than exact matches.
Types:
1. % (Percent Sign): This wildcard represents zero, one, or multiple characters. It can be used to match any sequence of characters.
2. _(Underscore): This wildcard represents a single character. It matches any single character in that position of the string.