Sample LP-III Chits
Sample LP-III Chits
a.Create your own wallet using Metamask for crypto transactions. Transfer
money from one to other account
2. a. Write a smart contract on a test network, for Bank account of a customer for
following operations: • Deposit money • Withdraw Money • Show balance
4. a. Write a smart contract on a test network, for Bank account of a customer for
following operations: • Deposit money • Withdraw Money • Show balance
b.Design n-Queens matrix having first Queen placed. Use backtracking to place
remaining Queens to generate the final n-queen‘s matrix.
ML+DAA
a. Predict the price of the Uber ride from a given pickup point to the
10. agreed drop-off location.
Perform following tasks:
1. Pre-process the dataset.
2. Identify outliers.
3. Check the correlation.
4. Implement linear regression and random forest regression models.
5. Evaluate the models and compare their respective scores like R2, RMSE,
etc.
Dataset link: https://www.kaggle.com/datasets/yasserh/uber-fares-dataset
ML+BCT
a.Predict the price of the Uber ride from a given pickup point to the agreed
16 drop-off location.
Perform following tasks:
1. Pre-process the dataset.
2. Identify outliers.
3. Check the correlation.
4. Implement linear regression and random forest regression models.
5. Evaluate the models and compare their respective scores like R2, RMSE,
etc.
Dataset link: https://www.kaggle.com/datasets/yasserh/uber-fares-dataset
Deploy this as smart contract on Ethereum and Observe the transaction fee
and Gas values
19
a. Implement Gradient Descent Algorithm to find the local minima of a
function.
For example, find the local minima of the function y=(x+3)² starting from
the point x=2.
20
a. Implement K-Nearest Neighbors algorithm on diabetes.csv dataset.
Compute confusion matrix, accuracy, error rate, precision and recall
on the given dataset.
Dataset link : https://www.kaggle.com/datasets/abdallamahgoub/diabetes
21
a. Given a bank customer, build a neural network-based classifier that
can determine whether they will leave or not in the next 6 months.
Dataset Description: The case study is from an open-source dataset from
Kaggle.
The dataset contains 10,000 sample points with 14 distinct features such as
CustomerId, CreditScore, Geography, Gender, Age, Tenure, Balance, etc.
Link to the Kaggle project:
https://www.kaggle.com/barelydedicated/bank-customer-churn-modeling
Perform following steps:
1. Read the dataset.
2. Distinguish the feature and target set and divide the data set into training
and test sets.
3. Normalize the train and test data.
4. Initialize and build the model. Identify the points of improvement and
implement the same.
5. Print the accuracy score and confusion matrix (5 points).