ڈیٹا کی عدم موجودگی کے لیے کون سا آپریٹر کالم کی جانچ کرتا ہے؟
A. NOT operator
B. IS NULL operator
C. None
D. EXISTS
Explanation
The operator that tests column for the absence of data is an is NULL operator. The NULL operator is used in the database for representing that a particular field is empty.
A scatter plot is a type of graph used in Exploratory Data Analysis (EDA) to visualize the relationship between two continuous variables. It displays the data points as points on a coordinate grid, with the x-axis representing one variable and the y-axis representing the other.
The primary purpose of a scatter plot is to:
Show the strength and direction of the relationship between the two variables
Identify patterns, correlations, or outliers in the data
Help identify potential relationships that may not be immediately apparent from looking at individual variables
ڈیٹا ماڈلنگ میں ڈیٹا پائپ لائن کا بنیادی مقصد کیا ہے؟
A. To prepare and transform data for analysis
B. To visualize data relationships
C. To define data attributes and properties
D. To calculate summary statistics
Explanation
A data pipeline is a series of processes that extract data from multiple sources, transform the data into a standardized format, and load it into a target system for analysis.
The primary purpose of a data pipeline in data modeling is to prepare and transform data for analysis, making it possible to:
Extract data from various sources
Clean and preprocess the data
Transform the data into a format suitable for analysis
Load the data into a data warehouse or analytics platform
ایس کیو ایل سرور کے ذریعہ فراہم کردہ سب سے سخت ٹرانزیکشن آئسولیشن لیول کیا ہے؟
A. READ COMMITTED
B. READ UNCOMMITTED
C. REPEATABLE READ
D. SERIALIZABLE
Explanation
The SERIALIZABLE isolation level is the strictest transaction isolation level provided by SQL Server. It ensures that transactions are executed in a serialized manner, as if they were the only transaction operating on the database. This means that:
No other transactions can modify data being read by a transaction.
No other transactions can insert new data that would affect the results of a transaction.
No other transactions can delete data that a transaction is using.