Spark MLlib is Apache Spark's library for scalable machine learning.
Incorrect! Try again.
6In Spark ML, what does an Estimator produce when its fit() method is called?
Key concepts of Spark ML
Easy
A.A Python package
B.A raw DataFrame
C.A database schema
D.A fitted Model
Correct Answer: A fitted Model
Explanation:
An Estimator learns from a DataFrame through fit() and produces a fitted Model.
Incorrect! Try again.
7What is a Spark ML Pipeline used for?
Key concepts of Spark ML
Easy
A.Combining multiple ML stages
B.Storing files in local folders
C.Replacing all DataFrame columns with a single manually calculated numeric value
D.Starting a web application
Correct Answer: Combining multiple ML stages
Explanation:
A Pipeline organizes multiple processing and modeling stages into one machine learning workflow.
Incorrect! Try again.
8Which PySpark package commonly contains classification and regression algorithms?
Spark ML algorithms using PySpark
Easy
A.pyspark.html
B.pyspark.net
C.pyspark.sql
D.pyspark.ml
Correct Answer: pyspark.ml
Explanation:
The pyspark.ml package provides DataFrame-based machine learning algorithms and utilities.
Incorrect! Try again.
9What type of value does linear regression usually predict?
Linear regression
Easy
A.A sequence of database commands
B.A continuous numeric value
C.A cluster identifier
D.A class probability only
Correct Answer: A continuous numeric value
Explanation:
Linear regression predicts continuous values, such as price, temperature, or sales.
Incorrect! Try again.
10Logistic regression is commonly used for which task?
Logistic regression
Easy
A.Clustering
B.Classification
C.File compression
D.Database normalization
Correct Answer: Classification
Explanation:
Logistic regression is a classification algorithm, often used for binary outcomes such as yes or no.
Incorrect! Try again.
11How does a decision tree generally make a prediction?
Decision tree
Easy
A.By following feature-based branches
B.By calculating only the average value
C.By checking every possible model and permanently storing all results in memory
D.By assigning points to random clusters
Correct Answer: By following feature-based branches
Explanation:
A decision tree applies feature-based conditions and follows branches until it reaches a prediction.
Incorrect! Try again.
12What does the value represent in K-means clustering?
K-means
Easy
A.The number of features
B.The number of clusters
C.The number of test records
D.The number of labels
Correct Answer: The number of clusters
Explanation:
In K-means, specifies how many clusters the algorithm should create.
Incorrect! Try again.
13What is the main goal of a Support Vector Machine classifier?
SVM
Easy
A.Finding a separating hyperplane
B.Finding cluster centroids
C.Constructing a complete decision tree with one separate branch for every training record
D.Estimating a numeric average
Correct Answer: Finding a separating hyperplane
Explanation:
An SVM finds a hyperplane that separates classes, usually while maximizing the margin between them.
Incorrect! Try again.
14Naive Bayes is based on which mathematical idea?
Naive Bayes
Easy
A.Bayes' theorem
B.Linear matrix inversion
C.Pythagoras' theorem
D.Euclidean clustering
Correct Answer: Bayes' theorem
Explanation:
Naive Bayes applies Bayes' theorem and makes a simplifying assumption about feature independence.
Incorrect! Try again.
15Why is a test dataset used when evaluating a machine learning model?
Evaluation and performance matrix
Easy
A.To increase the number of model features
B.To measure performance on unseen data
C.To rename the columns in the dataset
D.To replace every incorrect prediction with the known correct label before scoring
Correct Answer: To measure performance on unseen data
Explanation:
A test dataset estimates how well the trained model performs on data it did not learn from.
Incorrect! Try again.
16In a confusion matrix, what is a true positive?
Confusion matrix
Easy
A.A negative case predicted as positive
B.A negative case predicted as negative
C.A positive case predicted as positive
D.A positive case predicted as negative
Correct Answer: A positive case predicted as positive
Explanation:
A true positive occurs when the actual class is positive and the model correctly predicts positive.
Incorrect! Try again.
17What does the metric indicate in regression?
R2
Easy
A.The proportion of variance explained
B.The total number of training rows
C.The number of prediction classes
D.The exact percentage of records that must always be removed from the dataset
Correct Answer: The proportion of variance explained
Explanation:
measures how much of the variation in the target variable is explained by the regression model.
Incorrect! Try again.
18What does RMSE stand for?
RMSE
Easy
A.Regression Mean Sampling Equation
B.Root Mean Squared Error
C.Random Model Scoring Estimate
D.Relative Matrix Scaling Error
Correct Answer: Root Mean Squared Error
Explanation:
RMSE is the square root of the average squared prediction error: .
Incorrect! Try again.
19What does MAE measure?
MAE
Easy
A.The maximum error in the dataset
B.The average absolute prediction error
C.The mean of all target values after incorrect predictions have been removed
D.The average number of model features
Correct Answer: The average absolute prediction error
Explanation:
MAE averages the absolute differences between actual and predicted values: .
Incorrect! Try again.
20What does a correlation heat map usually display?
Correlation heat map
Easy
A.Locations of files in a cluster
B.Relationships between numeric variables
C.The execution order of Python statements
D.Detailed source code for every machine learning model used in an application
Correct Answer: Relationships between numeric variables
Explanation:
A correlation heat map uses colors to show the strength and direction of relationships between numeric variables.
Incorrect! Try again.
21A PySpark pipeline must train a model on a dataset that is too large for a single machine. Which capability of Spark is most relevant to this task?
Introduction to machine learning and PySpark
Medium
A.Replacement of training data with metadata
B.Automatic removal of all noisy records
C.Distributed processing across cluster nodes
D.Conversion of every feature into text
Correct Answer: Distributed processing across cluster nodes
Explanation:
Spark distributes data and computation across multiple nodes, allowing machine learning workflows to process datasets larger than a single machine can handle.
Incorrect! Try again.
22A company has customer records without labels and wants to group customers according to purchasing behavior. Which machine learning technique is most appropriate?
Techniques of machine learning
Medium
A.Supervised classification
B.Supervised regression
C.Reinforcement learning
D.Unsupervised clustering
Correct Answer: Unsupervised clustering
Explanation:
Clustering is an unsupervised technique used to discover groups in data when target labels are unavailable.
Incorrect! Try again.
23Which statement best describes the purpose of Spark MLlib?
Correct Answer: It provides distributed machine learning algorithms
Explanation:
MLlib is Spark's machine learning library, offering scalable algorithms, feature processing tools, and evaluation utilities.
Incorrect! Try again.
24In Spark ML, what is the main purpose of a Pipeline?
Key concepts of Spark ML
Medium
A.To chain transformers and estimators
B.To convert labels into file names
C.To increase the number of cluster nodes
D.To remove the need for model evaluation
Correct Answer: To chain transformers and estimators
Explanation:
A Pipeline organizes a sequence of data transformations and model-training steps into one reproducible workflow.
Incorrect! Try again.
25A Spark ML model expects all predictor values in one column of vector type. Which component is commonly used to create this column from several feature columns?
Key concepts of Spark ML
Medium
A.CrossValidator
B.StringIndexer
C.RegressionEvaluator
D.VectorAssembler
Correct Answer: VectorAssembler
Explanation:
VectorAssembler combines multiple input columns into a single vector column, which is the standard feature format for Spark ML algorithms.
Incorrect! Try again.
26A PySpark workflow uses StringIndexer on a categorical column before training a classifier. What problem does this step primarily address?
Spark ML algorithms using PySpark
Medium
A.It groups observations into clusters
B.It converts categorical values into numeric indices
C.It removes highly correlated features
D.It calculates the model's prediction error
Correct Answer: It converts categorical values into numeric indices
Explanation:
StringIndexer assigns numerical indices to distinct string labels so that Spark ML algorithms can process categorical data.
Incorrect! Try again.
27A linear regression model predicts house prices using area and number of rooms. If the coefficient for area is positive, what does it indicate when other features remain fixed?
Linear regression
Medium
A.Price tends to decrease with area
B.Area has no effect on price
C.Area must be the target variable
D.Price tends to increase with area
Correct Answer: Price tends to increase with area
Explanation:
A positive coefficient means that increasing the corresponding feature is associated with an increase in the predicted target, assuming other features are unchanged.
Incorrect! Try again.
28A regression model has an RMSE of when predicting monthly sales. What is the most appropriate interpretation?
Linear regression
Medium
A.Typical prediction error is about sales units
B.The model explains of sales variance
C.The model has an accuracy of
D.Exactly predictions are incorrect
Correct Answer: Typical prediction error is about sales units
Explanation:
RMSE is expressed in the same units as the target and summarizes the typical magnitude of prediction errors, with larger errors receiving greater weight.
Incorrect! Try again.
29A logistic regression model returns a probability of for the positive class. Using a threshold of , what class will normally be predicted?
Logistic regression
Medium
A.No class until clustering
B.The negative class
C.The positive class
D.Both classes equally
Correct Answer: The positive class
Explanation:
With a threshold of , probabilities at least are generally assigned to the positive class.
Incorrect! Try again.
30A binary classifier produces many false negatives in a medical screening task. Which change may improve detection of positive cases?
Logistic regression
Medium
A.Replace probabilities with cluster IDs
B.Increase the classification threshold
C.Remove the positive training labels
D.Lower the classification threshold
Correct Answer: Lower the classification threshold
Explanation:
Lowering the threshold makes the classifier more likely to predict the positive class, which can reduce false negatives while potentially increasing false positives.
Incorrect! Try again.
31A decision tree classifies loan applications by repeatedly splitting records according to feature values. What is the main benefit of selecting a split with high information gain?
Decision tree
Medium
A.It removes every numerical feature
B.It guarantees zero test error
C.It forces all leaves to have equal size
D.It creates purer child nodes
Correct Answer: It creates purer child nodes
Explanation:
Information gain measures the reduction in impurity after a split. A high value generally produces child nodes with more consistent class labels.
Incorrect! Try again.
32In K-means clustering, a data point is reassigned during an iteration when:
K-means
Medium
A.Another centroid becomes closer
B.The evaluation metric reaches exactly one
C.Its label becomes a text value
D.The number of features becomes zero
Correct Answer: Another centroid becomes closer
Explanation:
K-means assigns each point to the nearest centroid, then updates centroid positions based on the assigned points.
Incorrect! Try again.
33A K-means model is trained with . What does the value represent?
K-means
Medium
A.The number of requested clusters
B.The number of evaluation metrics
C.The number of input features
D.The number of training iterations
Correct Answer: The number of requested clusters
Explanation:
The K-means parameter specifies how many clusters the algorithm should form.
Incorrect! Try again.
34What objective is central to a linear Support Vector Machine classifier?
SVM
Medium
A.Finding a boundary with a large margin
B.Counting the frequency of every word
C.Creating centroids for every class
D.Estimating a continuous target mean
Correct Answer: Finding a boundary with a large margin
Explanation:
An SVM seeks a separating hyperplane that maximizes the margin between classes, while allowing controlled classification errors when necessary.
Incorrect! Try again.
35The Naive Bayes classifier is called naive because it assumes that features are:
Naive Bayes
Medium
A.Conditionally independent given the class
B.Independent of the predicted class
C.Always identical for every record
D.Numerically distributed around zero
Correct Answer: Conditionally independent given the class
Explanation:
Naive Bayes simplifies probability estimation by assuming that features are conditionally independent once the class label is known.
Incorrect! Try again.
36A model achieves accuracy on a dataset where of records belong to one class. Why might accuracy be misleading?
Evaluation and performance matrix
Medium
A.Accuracy cannot be calculated for classifiers
B.Accuracy uses only continuous target values
C.A majority-class predictor can achieve similar accuracy
D.Accuracy always equals the RMSE value
Correct Answer: A majority-class predictor can achieve similar accuracy
Explanation:
With imbalanced classes, predicting the majority class for every record may produce high accuracy while failing to identify minority-class examples.
Incorrect! Try again.
37A fraud detection model labels a legitimate transaction as fraudulent. Which confusion matrix category describes this result?
Confusion matrix
Medium
A.True negative
B.False positive
C.True positive
D.False negative
Correct Answer: False positive
Explanation:
The prediction is positive, but the actual class is negative, so it is a false positive.
Incorrect! Try again.
38A regression model has . Which interpretation is most appropriate?
R2
Medium
A.The model explains about of target variance
B.The model makes errors of exactly units
C.The model correctly classifies of records
D.The model predicts of targets as positive
Correct Answer: The model explains about of target variance
Explanation:
measures the proportion of variation in the target explained by the regression model relative to a baseline based on the target mean.
Incorrect! Try again.
39Two regression models have MAE values of and on the same test set. Which model has better average absolute performance?
MAE
Medium
A.The model with MAE
B.The model with MAE
C.Both models have equal performance
D.The model with the larger target mean
Correct Answer: The model with MAE
Explanation:
MAE is the average absolute difference between predictions and actual values. Lower MAE indicates smaller average errors.
Incorrect! Try again.
40A correlation heat map shows a correlation of between two predictor variables. What concern should be investigated before fitting a linear model?
Correlation heat map
Medium
A.Possible multicollinearity between predictors
B.Automatic conversion to categorical labels
C.Guaranteed absence of a linear relationship
D.Immediate proof that the model is unbiased
Correct Answer: Possible multicollinearity between predictors
Explanation:
A strong correlation between predictors may indicate multicollinearity, which can make coefficient estimates unstable and harder to interpret.
Incorrect! Try again.
41A PySpark classification workflow imputes missing values, standardizes features, and tunes a logistic regression model with CrossValidator. Which design best prevents information leakage while estimating generalization performance?
Introduction to machine learning and PySpark
Hard
A.Cache the fully transformed dataset before randomly creating validation folds
B.Place preprocessing and classification in one pipeline and cross-validate the pipeline
C.Fit preprocessing on each validation fold and transform its corresponding training fold
D.Fit imputation and scaling before cross-validation, then tune only the classifier
Correct Answer: Place preprocessing and classification in one pipeline and cross-validate the pipeline
Explanation:
Cross-validating the complete pipeline fits every preprocessing stage only on each training fold. Fitting preprocessing before fold creation allows validation-fold statistics to influence training.
Incorrect! Try again.
42A binary dataset contains 0.2% positive examples. A classifier that always predicts the negative class obtains 99.8% accuracy. Which evaluation strategy is most appropriate when missing a positive is costly?
Techniques of machine learning
Hard
A.Optimize after encoding positive and negative labels as one and zero
B.Optimize recall subject to an acceptable precision using stratified validation data
C.Optimize accuracy using randomly sampled folds with unchanged class proportions
D.Optimize specificity after undersampling both classes to equal validation counts
Correct Answer: Optimize recall subject to an acceptable precision using stratified validation data
Explanation:
Severe imbalance makes accuracy misleading. When false negatives are costly, recall is central, while a precision constraint prevents an unusably large number of false positives.
Incorrect! Try again.
43A legacy application uses pyspark.mllib models on RDDs, while a new workflow requires pipelines, parameter grids, and DataFrame-based feature transformers. Which migration decision is technically sound?
Introduction to Spark MLlib
Hard
A.Convert DataFrames to local NumPy arrays because parameter grids require local training
B.Mix RDD transformers directly into a pipeline because both APIs share stage contracts
C.Keep pyspark.mllib because RDD models automatically participate in ML pipelines
D.Use pyspark.ml because its DataFrame API supports estimators, transformers, and pipelines
Correct Answer: Use pyspark.ml because its DataFrame API supports estimators, transformers, and pipelines
Explanation:
pyspark.ml is the primary DataFrame-based API and provides pipeline-compatible estimators, transformers, evaluators, and tuning tools. Legacy RDD models do not directly implement those pipeline stage contracts.
Incorrect! Try again.
44Consider pipeline = Pipeline(stages=[assembler, scaler, lr]), where scaler and lr are estimators. After calling model = pipeline.fit(train), which statement is correct?
Key concepts of Spark ML
Hard
A.model can transform only train because fitted stages store its complete rows
B.model contains fitted transformer stages and can transform new DataFrames
C.model retains unfitted estimators and refits them whenever transform is called
D.model replaces every stage with an evaluator that computes validation metrics
Correct Answer: model contains fitted transformer stages and can transform new DataFrames
Explanation:
Fitting a pipeline converts estimator stages into fitted models, which are transformers. The resulting PipelineModel applies the learned transformations to compatible new DataFrames.
Incorrect! Try again.
45A parameter grid compares logistic regression models using CrossValidator, and the final model must be refitted on all training data using the best parameters. What does Spark's CrossValidator.fit(train) return?
Spark ML algorithms using PySpark
Hard
A.A transformer fitted only on the validation fold with the highest metric
B.A CrossValidatorModel containing a best model refitted on the full input dataset
C.A parameter map that must be passed to a separate estimator fitting operation
D.A list of fold-specific models whose predictions must be manually averaged
Correct Answer: A CrossValidatorModel containing a best model refitted on the full input dataset
Explanation:
Spark evaluates parameter maps across folds, selects the best map according to the evaluator, and fits the selected estimator configuration on the entire input dataset.
Incorrect! Try again.
46Two predictors are nearly perfectly collinear, and an unregularized Spark linear regression model produces unstable coefficients across samples. Which parameter change most directly stabilizes the solution while generally retaining both predictors?
Linear regression
Hard
A.Set maxIter to one and keep both regularization parameters zero
B.Set regParam above zero and set elasticNetParam to zero
C.Set regParam to zero and set elasticNetParam to one
D.Set fitIntercept to false and set elasticNetParam to one
Correct Answer: Set regParam above zero and set elasticNetParam to zero
Explanation:
A positive regParam with elasticNetParam=0 applies ridge regularization. Ridge stabilizes coefficients under multicollinearity and typically shrinks correlated predictors without forcing one to zero.
Incorrect! Try again.
47For labels and predictions , what are the RMSE and values, respectively?
Linear regression
Hard
A. and
B. and
C. and
D. and
Correct Answer: and
Explanation:
The squared-error sum is , so . The label mean is and , giving .
Incorrect! Try again.
48A fitted binary logistic regression model outputs calibrated positive-class probabilities. The false-negative cost is four times the false-positive cost, and both classes have equal prior importance. Under minimum expected cost, at what probability should the model predict the positive class?
Logistic regression
Hard
A.
B.
C.
D.
Correct Answer:
Explanation:
Predict positive when . With , this becomes , so the threshold is .
Incorrect! Try again.
49A multinomial logistic regression model uses three classes and a feature vector of size five, with intercepts enabled. Ignoring Spark's internal reference-category representation choices, how many class-specific coefficient and intercept values conceptually define the softmax scores before accounting for non-identifiability?
Logistic regression
Hard
A.
B.
C.
D.
Correct Answer:
Explanation:
Each of the three classes has five feature coefficients and one intercept, giving conceptual values. Softmax probabilities remain unchanged under certain common shifts, which creates non-identifiability.
Incorrect! Try again.
50A categorical feature has 40 distinct categories, but a Spark decision tree is configured with maxBins=32. What is the most appropriate correction?
Decision tree
Hard
A.Increase maxMemoryInMB because category count is unrelated to maxBins
B.Increase maxDepth to at least 40 so each category receives a tree level
C.Reduce minInstancesPerNode to zero so categories can share split bins
D.Increase maxBins to at least 40 so the categorical feature can be represented
Correct Answer: Increase maxBins to at least 40 so the categorical feature can be represented
Explanation:
For a categorical feature, maxBins must be at least the feature's cardinality. Tree depth and node-size settings do not remove this representation constraint.
Incorrect! Try again.
51A decision tree has nearly zero training error but poor validation performance. Increasing maxDepth worsens the gap. Which change most directly regularizes the tree structure?
Decision tree
Hard
A.Increase maxBins and decrease minInfoGain
B.Decrease maxDepth and increase minInstancesPerNode
C.Increase maxDepth and decrease minInstancesPerNode
D.Decrease maxBins and decrease minInfoGain
Correct Answer: Decrease maxDepth and increase minInstancesPerNode
Explanation:
A shallower tree with more observations required per node limits highly specific splits. This reduces variance and directly addresses structural overfitting.
Incorrect! Try again.
52A K-means dataset contains annual income measured in dollars and age measured in years. Income has variance several orders of magnitude larger than age. What is the likely effect of fitting without scaling?
K-means
Hard
A.Neither feature will affect assignments because K-means uses only angular similarity
B.Both features will contribute equally because K-means normalizes columns internally
C.Income will dominate Euclidean distances and therefore dominate cluster assignments
D.Age will dominate Euclidean distances because it contains numerically smaller values
Correct Answer: Income will dominate Euclidean distances and therefore dominate cluster assignments
Explanation:
Standard K-means minimizes within-cluster squared Euclidean distance and does not automatically standardize features. A large-scale feature can therefore dominate the objective.
Incorrect! Try again.
53A K-means run reports a lower training cost for than for , but a substantially lower validation silhouette score for . Which conclusion is best supported?
K-means
Hard
A.The silhouette comparison is meaningless because it cannot compare different values of
B.The solution is necessarily better because training cost always determines generalization
C.The extra centroids reduce within-cluster error but produce less separated validation clusters
D.The solution is invalid because training cost must increase when decreases
Correct Answer: The extra centroids reduce within-cluster error but produce less separated validation clusters
Explanation:
K-means training cost generally decreases as more centroids are added. A lower validation silhouette indicates that the resulting clusters are less cohesive or less separated despite the lower training objective.
Incorrect! Try again.
54A team attempts to train Spark LinearSVC directly on labels . Which modification is required?
SVM
Hard
A.Construct one-vs-rest binary classifiers because LinearSVC is binary
B.Increase aggregationDepth because multiclass support depends on tree aggregation
C.Set family to multinomial because LinearSVC supports softmax classification
D.Convert labels to strings because LinearSVC infers multiclass boundaries
Correct Answer: Construct one-vs-rest binary classifiers because LinearSVC is binary
Explanation:
Spark's LinearSVC handles binary classification. Multiclass SVM behavior can be constructed with a strategy such as one-vs-rest using separate binary models.
Incorrect! Try again.
55For a linear SVM, a training point satisfies . What is its hinge loss , and where is the point relative to the margin?
SVM
Hard
A., correctly classified but inside the margin
B., misclassified and outside the margin
C., correctly classified and outside the margin
D., correctly classified and on the margin
Correct Answer: , correctly classified but inside the margin
Explanation:
The signed score is positive, so the point is correctly classified. Because it is below , it lies inside the margin and has hinge loss .
Incorrect! Try again.
56A Bernoulli Naive Bayes model is trained on document features that contain term frequencies such as , , and . Which preprocessing best matches the model's likelihood assumptions?
Naive Bayes
Hard
A.Normalize each row to unit length while preserving every original frequency ratio
B.Binarize each feature to indicate whether the corresponding term is present
C.Standardize each feature to zero mean while preserving negative standardized values
D.Center each feature by subtracting its corpus-wide average term frequency
Correct Answer: Binarize each feature to indicate whether the corresponding term is present
Explanation:
Bernoulli Naive Bayes models binary feature occurrence. Counts should be converted to presence indicators, whereas centering or standardization can also introduce invalid negative values.
Incorrect! Try again.
57A three-class classifier performs well on a dominant class but poorly on two rare classes. Which metric is most sensitive to the rare-class failures while assigning each class equal importance?
Evaluation and performance matrix
Hard
A.Macro-averaged recall
B.Micro-averaged precision
C.Overall accuracy
D.Weighted-averaged recall
Correct Answer: Macro-averaged recall
Explanation:
Macro recall computes recall separately for each class and averages the values equally. Weighted and micro metrics are more strongly influenced by the dominant class.
Incorrect! Try again.
58A classifier produces , , , and . If the threshold is changed so that 20 false positives become true negatives while 10 true positives become false negatives, what are the new precision and recall?
Confusion matrix
Hard
A. and
B. and
C. and
D. and
Correct Answer: and
Explanation:
The new counts are , , , and . Thus precision is , and recall is .
Incorrect! Try again.
59A regression model evaluated on unseen data has . Which interpretation is correct?
R2
Hard
A.It explains 35% of the target variance after reversing the sign of its predictions
B.Its squared-error sum is 35% larger than the mean-prediction baseline's squared-error sum
C.Its predictions have a Pearson correlation of with the observed labels
D.Its RMSE is exactly 35% larger than the standard deviation of the observed labels
Correct Answer: Its squared-error sum is 35% larger than the mean-prediction baseline's squared-error sum
Explanation:
Since , implies . The model is worse than predicting the evaluation-set mean under squared error.
Incorrect! Try again.
60Two regression models are evaluated on the same four cases. Model A has absolute errors , while Model B has absolute errors . Which comparison is correct?
RMSE
Hard
A.Model A has lower MAE and lower RMSE than Model B
B.Model A has higher MAE but lower RMSE than Model B
C.Model A has equal MAE and equal RMSE to Model B
D.Model A has lower MAE but higher RMSE than Model B
Correct Answer: Model A has lower MAE but higher RMSE than Model B
Explanation:
Model A has and , while Model B has both and . RMSE penalizes Model A's large outlier more strongly.
Incorrect! Try again.
Did this save you a night before the exam?
LPU Notes is free, and it stays free. Ads cover part of the server bill.
The rest comes out of a student's own pocket: the domain, the storage,
and keeping the site up through the weeks everyone needs it at once.
The payment button didn't load. An ad blocker or a filtered network is the usual reason.
to try again.
Nothing here is ever locked, and nothing unlocks. Chip in only if it was worth it.
What it pays for →