DA_LabFile
DA_LabFile
Solution:
Exploring WEKA Data Mining / Machine Learning Toolkit
WEKA (Waikato Environment for Knowledge Analysis) is a popular open-source software suite used for
data mining, machine learning, and statistical analysis. Developed at the University of Waikato in New
Zealand, WEKA provides a collection of machine learning algorithms for data mining tasks, along with
tools for data preprocessing, classification, regression, clustering, association rule mining, and
visualization.
1. User Interface
• Explorer: A graphical interface for interacting with datasets, preprocessing data, and applying
machine learning algorithms.
• Experimenter: A more advanced interface that allows for running and evaluating machine
learning experiments.
• KnowledgeFlow: A flow-based interface that allows users to build machine learning workflows
using a visual drag-and-drop interface.
a. Data Preprocessing
Data preprocessing is a critical step in the data mining process. WEKA provides a range of tools to handle
missing values, discretize attributes, normalize data, and perform transformations on the dataset. The
most commonly used preprocessing tasks in WEKA are:
• Select Attributes: Use feature selection techniques to reduce the dimensionality of the data.
b. Classification Algorithms
WEKA provides a variety of supervised learning algorithms for classification, such as:
• Naive Bayes.
• Logistic Regression.
• Random Forest.
c. Clustering Algorithms
• K-means.
• EM (Expectation-Maximization).
• Hierarchical Clustering.
Association rule mining is used to find interesting relationships between variables in large datasets.
WEKA provides an implementation of the Apriori algorithm for discovering association rules.
e. Regression Algorithms
• Linear Regression.
• Multilayer Perceptron.
• Train/Test Split: Divides the dataset into training and testing sets.
• Confusion Matrix: Provides insight into model performance, such as accuracy, precision, recall,
etc.
g. Visualization
• Model Visualization: Visualize decision trees and the structure of machine learning models.
• Plotting: Display decision boundaries for classification algorithms or visualize the performance
metrics of algorithms.
3. Workflow Example in WEKA
Let's walk through a basic example of using WEKA to apply a machine learning algorithm on a dataset:
1. Loading Data:
o Click the "Open file" button to load your dataset (typically in .arff or .csv format).
2. Data Preprocessing:
o You can inspect the dataset and apply various preprocessing techniques like removing or
modifying attributes, normalizing, or discretizing attributes.
3. Choosing a Classifier:
4. Model Evaluation:
o WEKA will output the results of the classification (e.g., accuracy, confusion matrix).
o You can perform cross-validation or train/test split to evaluate the model’s performance.
5. Visualizing Results:
o After running a model, you can visualize the classifier’s performance and the confusion
matrix from the "Result list".
o The "Visualize" option shows how well the classifier works on the given dataset.
6. Strengths of WEKA
• Ease of Use: The GUI makes it easy for beginners to use machine learning algorithms without
writing code.
• Versatility: WEKA supports a wide range of data mining tasks, including classification, clustering,
regression, and association rule mining.
• Community Support: Being open-source and widely used, WEKA has an active community and a
large collection of tutorials and documentation.
Question 2) Perform data preprocessing tasks on
i. Add attribute
ii. Add expression
iii. Copy attribute
iv. Remove attribute
Solution:
Preprocessing Tasks:
Data preprocessing refers to the set of tasks performed on raw data before it can be used for analysis or
machine learning. Preprocessing is essential to clean, format, and organize the data in a way that makes
it suitable for analytical tasks. These tasks are especially important in Big Data environments because of
the large volume, variety, and velocity of the data, which can make direct analysis or modeling difficult
without proper preprocessing.
Example Data:
i. Add Attribute
To add an attribute, we create a new column based on conditions or transformations from existing
columns. For example, let's add a new column Age_Group that classifies individuals as "Young" if their
age is less than 40, or "Old" if their age is 40 or older.
Code:
print(data)
Output:
ii. Add Expression
To add an expression, we create a new column based on a mathematical or logical expression derived
from other columns. For example, let's add a new column Income_per_Age, which is the ratio of Income
to Age.
Code:
print(data)
Output:
To copy an attribute, we can simply assign an existing column to a new column name. Let's copy the Income
column to a new column called Income_Copy.
Code:
print(data)
Output:
iv. Remove Attribute
To remove an attribute, we can use the subset() function or simply assign NULL to the column. Let’s remove
the Income_Copy column.
Code:
print(data)
Output:
Question 3) Demonstrate performing classification on data sets.
Solution:
# Load necessary packages
install.packages("caret")
install.packages("rpart")
library(caret)
library(rpart)
data(iris)
set.seed(123)
print(confMatrix)
new_data <- data.frame(Sepal.Length = 5.1, Sepal.Width = 3.5, Petal.Length = 1.4, Petal.Width = 0.2)
library(arules)
library(arulesViz)
c("Milk", "Bread"),
c("Bread", "Butter"),
c("Milk", "Diaper"),
inspect(frequent_itemsets)
rules <- apriori(trans, parameter = list(supp = 0.5, conf = 0.6, target = "rules"))
inspect(rules)
Output:
inspect(frequent_itemsets)
inspect(rules)
Explanation:
• Rule 1: If a customer buys Milk, they are likely to buy Bread. This rule has a confidence of 66.7% and a
lift of 0.93.
• Rule 2: If a customer buys Bread, they are likely to buy Milk. This rule has a confidence of 80% and a
lift of 0.93.
inspect(strong_rules)
Q5) Download and install R-Programming environment and install basic packages
using install.packages()command in R ?
Solution:
1. Download R:
a. Go to the official R project website: https://cran.r-project.org.
b. Select the version that matches your operating system (Windows, macOS, or Linux).
c. Follow the instructions for your operating system to install R.
2. Install RStudio (optional but recommended):
Once you have R (and optionally RStudio) installed, you can install R packages. The
install.packages() function is used to install packages from CRAN (the official R repository).
1. Start R or RStudio.
2. Open the console and use the following command to install common packages:
Once installed, you can load the packages using the library() function:
Question 6) Implement R-Loops with different examples.
Solution:
In R, loops are used to repeat a block of code multiple times. There are three primary types of loops in R:
1. For Loop
The for loop is used to iterate over a sequence of elements such as a vector or list.
2. While Loop
3. Repeat Loop
The repeat loop executes indefinitely until a break statement is used to exit the loop.
Example: Basic repeat loop
Question 7) Implement data frames in R. Write a program to join columns and rows in
a data frame using c bind()and r bind() in R?
Solution:
In R, a data frame is a two-dimensional structure that holds data of different types (numeric, character,
etc.) in columns. You can join columns and rows in a data frame using the cbind() and rbind()
functions:
Before using cbind() and rbind(), let's first create a basic data frame.
The cbind() function combines data frame columns side-by-side, creating a new data frame.
Example: Combining Columns with cbind()
3. Using rbind() to Combine Rows
The rbind() function combines rows of data frames, stacking them vertically.
Output:
Question 8) Create pie charts and bar charts using R.
Solution:
# install.packages("ggplot2")
library(ggplot2)
products <- c("Product A", "Product B", "Product C", "Product D", "Product E")
coord_polar(theta = "y") +
Output:
Bar Chart Using ggplot2
# install.packages("ggplot2")
library(ggplot2)
products <- c("Product A", "Product B", "Product C", "Product D", "Product E")
geom_bar(stat = "identity") +
Output:
Question 9: Develop an application that uses GUI Components Fonts and
colors.
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="30dp"
android:gravity="center"
android:text="Hello World!"
android:textSize="25sp"
android:textStyle="bold" />
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:gravity="center"
android:text="Change font size"
android:textSize="25sp" />
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:gravity="center"
android:text="Change color"
android:textSize="25sp" />
</LinearLayout>
package com.example.exno1;
import android.graphics.Color;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
int ch=1;
float font=30;
@Override
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
b1.setOnClickListener(new View.OnClickListener() {
@Override
t.setTextSize(font);
font = font + 5;
if (font == 50)
font = 30;
});
b2.setOnClickListener(new View.OnClickListener() {
@Override
switch (ch) {
case 1:
t.setTextColor(Color.RED);
break;
case 2:
t.setTextColor(Color.GREEN);
break;
case 3:
t.setTextColor(Color.BLUE);
break;
case 4:
t.setTextColor(Color.CYAN);
break;
case 5:
t.setTextColor(Color.YELLOW);
break;
case 6:
t.setTextColor(Color.MAGENTA);
break;
ch++;
if (ch == 7)
ch = 1;
});
}
OUTPUT:
Question 10: Develop an application that uses Layout Managers and Event
Listeners
Designing layout for the Android Application
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="100dp">
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="30dp"
android:text="Details Form"
android:textSize="25sp"
android:gravity="center"/>
</LinearLayout>
<GridLayout
android:id="@+id/gridLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="100dp"
android:layout_marginBottom="200dp"
android:columnCount="2"
android:rowCount="3">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_row="0"
android:layout_column="0"
android:text="Name"
android:textSize="20sp"
android:gravity="center"/>
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_row="0"
android:layout_column="1"
android:ems="10"/>
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_row="1"
android:layout_column="0"
android:text="Reg.No"
android:textSize="20sp"
android:gravity="center"/>
<EditText
android:id="@+id/editText2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_row="1"
android:layout_column="1"
android:inputType="number"
android:ems="10"/>
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_row="2"
android:layout_column="0"
android:text="Dept"
android:textSize="20sp"
android:gravity="center"/>
<Spinner
android:id="@+id/spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_row="2"
android:layout_column="1"
android:spinnerMode="dropdown"/>
</GridLayout>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerInParent="true"
android:layout_marginBottom="150dp"
android:text="Submit"/>
</RelativeLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.devang.exno2.SecondActivity"
android:orientation="vertical"
android:gravity="center">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:text="New Text"
android:textSize="30sp"/>
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:text="New Text"
android:textSize="30sp"/>
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:text="New Text"
android:textSize="30sp"/>
</LinearLayout>
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Spinner;
EditText e1,e2;
Button bt;
Spinner s;
String [] dept_array={"CSE","ECE","IT","Mech","Civil"};
String name,reg,dept;
@Override
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
s= (Spinner) findViewById(R.id.spinner);
//Creating Adapter for Spinner for adapting the data from array to Spinner
s.setAdapter(adapter);
bt.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
name=e1.getText().toString();
reg=e2.getText().toString();
dept=s.getSelectedItem().toString();
i.putExtra("name_key", name);
i.putExtra("reg_key",reg);
i.putExtra("dept_key", dept);
startActivity(i);
});
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
String name,reg,dept;
@Override
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second);
Intent i = getIntent();
//Getting the Values from First Activity using the Intent received
name=i.getStringExtra("name_key");
reg=i.getStringExtra("reg_key");
dept=i.getStringExtra("dept_key");
t1.setText(name);
t2.setText(reg);
t3.setText(dept);
}
OUTPUT:
Question 11: Write an application that draws basic graphical primitives on the
screen
Designing layout for the Android Application
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/imageView" />
</RelativeLayout>
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.drawable.BitmapDrawable;
import android.os.Bundle;
import android.widget.ImageView;
//Creating a Bitmap
Bitmap bg = Bitmap.createBitmap(720, 1280, Bitmap.Config.ARGB_8888);
//Creating the Paint Object and set its color & TextSize
Paint paint = new Paint();
paint.setColor(Color.BLUE);
paint.setTextSize(50);
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="20dp"
android:layout_y="110dp"
android:text="Enter Rollno:"
android:textSize="20sp" />
<EditText
android:id="@+id/Rollno"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_x="175dp"
android:layout_y="100dp"
android:inputType="number"
android:textSize="20sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="20dp"
android:layout_y="160dp"
android:text="Enter Name:"
android:textSize="20sp" />
<EditText
android:id="@+id/Name"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_x="175dp"
android:layout_y="150dp"
android:inputType="text"
android:textSize="20sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="20dp"
android:layout_y="210dp"
android:text="Enter Marks:"
android:textSize="20sp" />
<EditText
android:id="@+id/Marks"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_x="175dp"
android:layout_y="200dp"
android:inputType="number"
android:textSize="20sp" />
<Button
android:id="@+id/Insert"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_x="25dp"
android:layout_y="300dp"
android:text="Insert"
android:textSize="30dp" />
<Button
android:id="@+id/Delete"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_x="200dp"
android:layout_y="300dp"
android:text="Delete"
android:textSize="30dp" />
<Button
android:id="@+id/Update"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_x="25dp"
android:layout_y="400dp"
android:text="Update"
android:textSize="30dp" />
<Button
android:id="@+id/View"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_x="200dp"
android:layout_y="400dp"
android:text="View"
android:textSize="30dp" />
<Button
android:id="@+id/ViewAll"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_x="100dp"
android:layout_y="500dp"
android:text="View All"
android:textSize="30dp" />
</AbsoluteLayout>
Java Coding for the Android Application
package com.example.exno5;
import android.app.Activity;
import android.app.AlertDialog.Builder;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
Rollno=(EditText)findViewById(R.id.Rollno);
Name=(EditText)findViewById(R.id.Name);
Marks=(EditText)findViewById(R.id.Marks);
Insert=(Button)findViewById(R.id.Insert);
Delete=(Button)findViewById(R.id.Delete);
Update=(Button)findViewById(R.id.Update);
View=(Button)findViewById(R.id.View);
ViewAll=(Button)findViewById(R.id.ViewAll);
Insert.setOnClickListener(this);
Delete.setOnClickListener(this);
Update.setOnClickListener(this);
View.setOnClickListener(this);
ViewAll.setOnClickListener(this);
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Message"
android:textSize="30sp" />
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:textSize="30sp" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="30dp"
android:layout_gravity="center"
android:text="Notify"
android:textSize="30sp"/>
</LinearLayout>
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
notify.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
Intent intent = new Intent(MainActivity.this, SecondActivity.class);
PendingIntent pending = PendingIntent.getActivity(MainActivity.this, 0, intent, 0);
Notification noti = new Notification.Builder(MainActivity.this).setContentTitle("New
Message").setContentText(e.getText().toString()).setSmallIcon(R.mipmap.ic_launcher).setCo
ntentIntent(pending).build();
NotificationManager manager = (NotificationManager)
getSystemService(NOTIFICATION_SERVICE);
noti.flags |= Notification.FLAG_AUTO_CANCEL;
manager.notify(0, noti);
}
});
}
}
OUTPUT:
Question 14: Implement an application that implements multi-threading.
Designing layout for the Android Application
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView"
android:layout_width="250dp"
android:layout_height="250dp"
android:layout_margin="50dp"
android:layout_gravity="center" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_gravity="center"
android:text="Load Image 1" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_gravity="center"
android:text="Load image 2" />
</LinearLayout>
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
public class MainActivity extends AppCompatActivity
{
ImageView img;
Button bt1,bt2;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
bt1 = (Button)findViewById(R.id.button);
bt2= (Button) findViewById(R.id.button2);
img = (ImageView)findViewById(R.id.imageView);
bt1.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
new Thread(new Runnable()
{
@Override
public void run()
{
img.post(new Runnable()
{
@Override
public void run()
{
img.setImageResource(R.drawable.india1);
}
});
}
}).start();
}
});
bt2.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
new Thread(new Runnable()
{
@Override
public void run()
{
img.post(new Runnable()
{
@Override
public void run()
{
img.setImageResource(R.drawable.india2);
}
});
}
}).start();
}
});
}
}
OUTPUT:
Question 15: Write a mobile application that creates alarm clock.
Designing layout for the Android Application
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TimePicker
android:id="@+id/timePicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center" />
<ToggleButton
android:id="@+id/toggleButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="20dp"
android:checked="false"
android:onClick="OnToggleClicked" />
</LinearLayout>
Changes in Manifest for the Android Application
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.exno11" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<activity android:name=".MainActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</manifest>
Java Coding for the Android Application
package com.example.exno11;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.TimePicker;
import android.widget.Toast;
import android.widget.ToggleButton;
import java.util.Calendar;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
alarmTimePicker = (TimePicker) findViewById(R.id.timePicker);
alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);
}
public void OnToggleClicked(View view)
{
long time;
if (((ToggleButton) view).isChecked())
{
Toast.makeText(MainActivity.this, "ALARM ON", Toast.LENGTH_SHORT).show();
Calendar calendar = Calendar.getInstance();
calendar.set(Calendar.HOUR_OF_DAY, alarmTimePicker.getCurrentHour());
calendar.set(Calendar.MINUTE, alarmTimePicker.getCurrentMinute());
Intent intent = new Intent(this, AlarmReceiver.class);
pendingIntent = PendingIntent.getBroadcast(this, 0, intent, 0);
time=(calendar.getTimeInMillis()-(calendar.getTimeInMillis()%60000));
if(System.currentTimeMillis()>time)
{
if (calendar.AM_PM == 0)
time = time + (1000*60*60*12);
else
time = time + (1000*60*60*24);
}
alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, time, 10000,
pendingIntent);
}
else
{
alarmManager.cancel(pendingIntent);
Toast.makeText(MainActivity.this, "ALARM OFF", Toast.LENGTH_SHORT).show();
}
}
}
Java Coding for Alarm Receiver
package com.example.exno11;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.media.Ringtone;
import android.media.RingtoneManager;
import android.net.Uri;
import android.widget.Toast;