1. What is a Self-Join?
A self-join is a type of join that can be used to connect two tables. As a result, it is a unary relationship. Each row of the table is attached to itself and all other rows of the same table in a self-join. As a result, a self-join is mostly used to combine and compare rows from the same database table.
2. What is OLTP?
OLTP, or online transactional processing, allows huge groups of people to execute massive amounts of database transactions in real time, usually via the internet. A database transaction occurs when data in a database is changed, inserted, deleted, or queried.
3. What is the difference between joining and blending in Tableau?
Joining term is used when you are combining data from the same source, for example, worksheet in an Excel file or tables in Oracle databaseWhile blending requires two completely defined data sources in your report.
4. How to prevent someone from copying the cell from your worksheet in excel?
If you want to protect your worksheet from being copied, go into Menu bar > Review > Protect sheet > Password.
By entering password you can prevent your worksheet from getting copied.
A self-join is a type of join that can be used to connect two tables. As a result, it is a unary relationship. Each row of the table is attached to itself and all other rows of the same table in a self-join. As a result, a self-join is mostly used to combine and compare rows from the same database table.
2. What is OLTP?
OLTP, or online transactional processing, allows huge groups of people to execute massive amounts of database transactions in real time, usually via the internet. A database transaction occurs when data in a database is changed, inserted, deleted, or queried.
3. What is the difference between joining and blending in Tableau?
Joining term is used when you are combining data from the same source, for example, worksheet in an Excel file or tables in Oracle databaseWhile blending requires two completely defined data sources in your report.
4. How to prevent someone from copying the cell from your worksheet in excel?
If you want to protect your worksheet from being copied, go into Menu bar > Review > Protect sheet > Password.
By entering password you can prevent your worksheet from getting copied.
π32β€9π₯1
Which of the following is not a data visualization tool?
Anonymous Quiz
3%
Tableau
24%
Qlik
7%
Power BI
67%
Pega
π₯21π12π5π₯°2β€1π1
Which of the following is a python library?
Anonymous Quiz
5%
Alteryx
87%
Pandas
2%
Java
4%
Tableau
2%
Javascript
π18π16β€11
Which of the following is/are an example of machine learning usecase?
Anonymous Quiz
14%
Prediction of sales for a specific product
6%
Detecting audience segment for a new movie
5%
Weather forecasting for a city
75%
All of the above
π18β€9π5π4π₯°1
π15β€1π1
Which of the following tool support ETL and data modelling capabilities?
Anonymous Quiz
7%
Javascript
72%
Power BI
7%
Signavio
15%
Tableau Desktop
π26
Which of the following is a python library to create charts?
Anonymous Quiz
6%
Alteryx
78%
Matplotlib
4%
Javascript
13%
Tableau
β€5
Learning and Practicing SQL: Resources and Platforms
1. https://sqlbolt.com/
2. https://sqlzoo.net/
3. https://www.codecademy.com/learn/learn-sql
4. https://www.w3schools.com/sql/
5. https://www.hackerrank.com/domains/sql
6. https://www.windowfunctions.com/
7. https://selectstarsql.com/
8. https://quip.com/2gwZArKuWk7W
9. https://leetcode.com/problemset/database/
10. https://t.me/learndataanalysis/327
11. https://learnsql.com/?ref=analyst
1. https://sqlbolt.com/
2. https://sqlzoo.net/
3. https://www.codecademy.com/learn/learn-sql
4. https://www.w3schools.com/sql/
5. https://www.hackerrank.com/domains/sql
6. https://www.windowfunctions.com/
7. https://selectstarsql.com/
8. https://quip.com/2gwZArKuWk7W
9. https://leetcode.com/problemset/database/
10. https://t.me/learndataanalysis/327
11. https://learnsql.com/?ref=analyst
π58β€41
β€9π4π2π2
Which of the following is join operation where a table is joined with itself?
Anonymous Quiz
13%
Full join
71%
Self join
12%
Union
4%
Cross join
β€29π11π₯°4
1. What is Density-based Clustering?
Density-Based Clustering is an unsupervised machine learning method that identifies different groups or clusters in the data space. These clustering techniques are based on the concept that a cluster in the data space is a contiguous region of high point density, separated from other such clusters by contiguous regions of low point density.
Partition-based(K-means) and Hierarchical clustering techniques are highly efficient with normal-shaped clusters while density-based techniques are efficient in arbitrary-shaped clusters or detecting outliers.
2. How to create empty tables with the same structure as another table?
To create empty tables:
Using the INTO operator to fetch the records of one table into a new table while setting a WHERE clause to false for all entries, it is possible to create empty tables with the same structure. As a result, SQL creates a new table with a duplicate structure to accept the fetched entries, but nothing is stored into the new table since the WHERE clause is active.
3. What is a Parameter in Tableau? Give an Example.
A parameter is a dynamic value that a customer could select, and you can use it to replace constant values in calculations, filters, and reference lines.
For example, when creating a filter to show the top 10 products based on total profit instead of the fixed value, you can update the filter to show the top 10, 20, or 30 products using a parameter.
4. How will you write the formula for the following in Excel? - Multiply the value in cell A1 by 10, add the result by 5, and divide it by 2.
To write a formula for the above-stated question, we have to follow the PEDMAS Precedence. The correct answer is ((A1*10)+5)/2.
Answers such as =A1*10+5/2 and =(A1*10)+5/2 are not correct. We must put parentheses brackets after a particular operation.
5. How can you remove duplicate values in a range of cells?
1. To delete duplicate values in a column, select the highlighted cells, and press the delete button. After deleting the values, go to the βConditional Formattingβ option present in the Home tab. Choose βClear Rulesβ to remove the rules from the sheet. 2. You can also delete duplicate values by selecting the βRemove Duplicatesβ option under Data Tools present in the Data tab.
Density-Based Clustering is an unsupervised machine learning method that identifies different groups or clusters in the data space. These clustering techniques are based on the concept that a cluster in the data space is a contiguous region of high point density, separated from other such clusters by contiguous regions of low point density.
Partition-based(K-means) and Hierarchical clustering techniques are highly efficient with normal-shaped clusters while density-based techniques are efficient in arbitrary-shaped clusters or detecting outliers.
2. How to create empty tables with the same structure as another table?
To create empty tables:
Using the INTO operator to fetch the records of one table into a new table while setting a WHERE clause to false for all entries, it is possible to create empty tables with the same structure. As a result, SQL creates a new table with a duplicate structure to accept the fetched entries, but nothing is stored into the new table since the WHERE clause is active.
3. What is a Parameter in Tableau? Give an Example.
A parameter is a dynamic value that a customer could select, and you can use it to replace constant values in calculations, filters, and reference lines.
For example, when creating a filter to show the top 10 products based on total profit instead of the fixed value, you can update the filter to show the top 10, 20, or 30 products using a parameter.
4. How will you write the formula for the following in Excel? - Multiply the value in cell A1 by 10, add the result by 5, and divide it by 2.
To write a formula for the above-stated question, we have to follow the PEDMAS Precedence. The correct answer is ((A1*10)+5)/2.
Answers such as =A1*10+5/2 and =(A1*10)+5/2 are not correct. We must put parentheses brackets after a particular operation.
5. How can you remove duplicate values in a range of cells?
1. To delete duplicate values in a column, select the highlighted cells, and press the delete button. After deleting the values, go to the βConditional Formattingβ option present in the Home tab. Choose βClear Rulesβ to remove the rules from the sheet. 2. You can also delete duplicate values by selecting the βRemove Duplicatesβ option under Data Tools present in the Data tab.
β€24π17π2π₯1
Which of the following is immutable built-in type in python?
Anonymous Quiz
17%
List
58%
Tuple
12%
Set
12%
Dictionary
π16π8π₯°5β€2π2
Which of the following is not a DDL command in SQL?
Anonymous Quiz
20%
CREATE
23%
ALTER
23%
DROP
34%
DELETE
π25π6π6
Which of the following helps us deal with controls, rights, and permission in the database system?
Anonymous Quiz
15%
DDL (Data Definition Language)
67%
DCL (Data Control Language?
18%
DML (Data Manipulation Language)
π8π5π2β€1
Which of the following is a is a DDL command which changes or modifies the existing structure of the database, and it also changes the schema of database objects?
Anonymous Quiz
64%
ALTER
27%
UPDATE
5%
DELETE
4%
SELECT
π14π7
Which of the following is a DML command used to update data in an existing database table?
Anonymous Quiz
11%
INSERT
73%
UPDATE
5%
EXISTING
12%
ALTER
π21π4β€1π1
Which of the following is a DCL command used to take back permissions from the user?
Anonymous Quiz
21%
GRANT
70%
REVOKE
5%
RENAME
4%
INSERT
π15π3
Which of the following anomaly occur when deleting a record from a database can result in the unintentional loss of data?
Anonymous Quiz
9%
Updation
64%
Deletion
23%
Interuption
4%
Insertion
π6
Which of the following anomalies occur when modifying data in a database can result in inconsistencies or error?
Anonymous Quiz
11%
Insertion
34%
Update
50%
Modification
5%
Deletion
π₯10π2β€1π1π€1
Which of the following anomaly occurs when there is a new row inserted in the table and it creates the inconsistency in the table?
Anonymous Quiz
59%
Insertion
7%
Deletion
15%
Creation
19%
Update
π8β€4π₯1