SlideShare a Scribd company logo
1 of 11
Download to read offline
LAB REPORT-04
Course Title: Pervasive Computing and Mobile App
Development Lab.
Course Code: CSE 335
SUBMITTED
Mehedi Firoz, PC-F
191-15-2475
Department of CSE
Daffodil International University
Code: Activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="match_parent"
android:layout_height="80sp"
android:textSize="60sp"
android:gravity="right"
android:inputType="number"
android:background="#C243D8"
android:textColor="#fbf8f8"
android:textStyle="normal"
android:id="@+id/textView"
/>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="80sp"
android:id="@+id/linearLayout"
android:layout_below="@+id/textView"
>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="C"
android:layout_marginLeft="2dp"
android:id="@+id/buttonC"
android:textSize="30dp"
android:layout_marginRight="2dp"
android:layout_weight="0.25"
/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="+/-"
android:textSize="30dp"
android:layout_marginRight="2dp"
android:layout_weight="0.25"
/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="%"
android:layout_marginRight="2dp"
android:id="@+id/ButtonPercent"
android:textSize="30dp"
android:layout_weight="0.25"
/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="÷"
android:id="@+id/buttonDiv"
android:textSize="30dp"
android:layout_marginRight="2dp"
android:layout_weight="0.25"
android:layout_below="@+id/linearLayout"
android:singleLine="true"
/>
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="80sp"
android:id="@+id/linearLayout2"
android:layout_below="@+id/linearLayout"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="7"
android:id="@+id/button7"
android:textSize="30dp"
android:layout_weight="0.25"
/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="8"
android:id="@+id/button8"
android:textSize="30dp"
android:layout_weight="0.25"
/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="9"
android:id="@+id/button9"
android:textSize="30dp"
android:layout_weight="0.25"
/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="×"
android:id="@+id/buttonMul"
android:textSize="30dp"
android:layout_weight="0.25"
/>
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="80sp"
android:id="@+id/linearLayout3"
android:layout_below="@+id/linearLayout2"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="4"
android:id="@+id/button4"
android:textSize="30dp"
android:layout_weight="0.25"
android:layout_below="@+id/linearLayout"
/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="5"
android:id="@+id/button5"
android:textSize="30dp"
android:layout_weight="0.25"
android:layout_below="@+id/linearLayout"
/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="6"
android:id="@+id/button6"
android:textSize="30dp"
android:layout_weight="0.25"
android:layout_below="@+id/linearLayout"
/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="-"
android:id="@+id/buttonSub"
android:textSize="30dp"
android:layout_weight="0.25"
android:layout_below="@+id/linearLayout"
/>
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="80sp"
android:id="@+id/linearLayout4"
android:layout_below="@+id/linearLayout3"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="1"
android:id="@+id/button1"
android:textSize="30dp"
android:layout_weight="0.25"
android:layout_below="@+id/linearLayout"
/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="2"
android:id="@+id/button2"
android:textSize="30dp"
android:layout_weight="0.25"
android:layout_below="@+id/linearLayout"
/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="3"
android:id="@+id/button3"
android:textSize="30dp"
android:layout_weight="0.25"
android:layout_below="@+id/linearLayout"
/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="+"
android:id="@+id/buttonAdd"
android:textSize="30dp"
android:layout_weight="0.25"
android:layout_below="@+id/linearLayout"
/>
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="80sp"
android:id="@+id/linearLayout5"
android:layout_below="@+id/linearLayout4"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="0"
android:id="@+id/button0"
android:textSize="30dp"
android:layout_weight="0.25"
android:layout_below="@+id/linearLayout" />
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="."
android:id="@+id/buttonPoint"
android:textSize="30dp"
android:layout_weight="0.25"
android:layout_below="@+id/linearLayout"
/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="="
android:id="@+id/buttonEqu"
android:textSize="30dp"
android:layout_weight="0.50"
android:color="#F5923F"
android:layout_below="@+id/linearLayout"
/>
</LinearLayout>
</RelativeLayout>
Code: Main_Activity.java
package com.example.lab3;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
Button button0,button1,button2,button3,button4,button5,button6,
button7,button8, button9,buttonPoint, buttonMul,buttonDiv,
buttonSub,buttonAdd,buttonC,buttonEqu,buttonPercent;
TextView textView;
boolean addition,subtraction,multiplication,
division,percent;
float value1,value2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
button0 = (Button)findViewById(R.id.button0);
button1= (Button)findViewById(R.id.button1);
button2= (Button)findViewById(R.id.button2);
button3= (Button)findViewById(R.id.button3);
button4= (Button)findViewById(R.id.button4);
button5= (Button)findViewById(R.id.button5);
button6= (Button)findViewById(R.id.button6);
button7= (Button)findViewById(R.id.button7);
button8= (Button)findViewById(R.id.button8);
button9= (Button)findViewById(R.id.button9);
// buttonPoint= (Button)findViewById(R.id.buttonPoint);
buttonMul= (Button)findViewById(R.id.buttonMul);
buttonDiv= (Button)findViewById(R.id.buttonDiv);
buttonSub= (Button)findViewById(R.id.buttonSub);
buttonAdd= (Button)findViewById(R.id.buttonAdd);
buttonC= (Button)findViewById(R.id.buttonC);
buttonEqu= (Button) findViewById(R.id.buttonEqu) ;
buttonPercent= (Button)findViewById(R.id.ButtonPercent);
textView= (TextView)findViewById(R.id.textView);
button0.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
textView.setText(textView.getText()+"0");
}
});
button1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
textView.setText(textView.getText()+"1");
}
});
button2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
textView.setText(textView.getText()+"2");
}
});
button3.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
textView.setText(textView.getText()+"3");
}
});
button4.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
textView.setText(textView.getText()+"4");
}
});
button5.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
textView.setText(textView.getText()+"5");
}
});
button6.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
textView.setText(textView.getText()+"6");
}
});
button7.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
textView.setText(textView.getText()+"7");
}
});
button8.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
textView.setText(textView.getText()+"8");
}
});
button9.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
textView.setText(textView.getText()+"9");
}
});
buttonAdd.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(textView == null)
{
textView.setText("");
}else
{value1= Float.parseFloat(textView.getText() + "");
addition=true; //1
textView.setText(null);
}}
});
buttonSub.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(textView == null)
{textView.setText("");
}else
{value1= Float.parseFloat(textView.getText() + "");
subtraction=true;
textView.setText(null);
}}
});
buttonMul.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(textView == null)
{
textView.setText("");
}else
{ value1= Float.parseFloat(textView.getText() + "");
multiplication=true; //1
textView.setText(null);
}}});
//division
buttonDiv.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(textView == null)
{
textView.setText("");
}else
{
value1= Float.parseFloat(textView.getText() + "");
division=true;
textView.setText(null);}}});
buttonEqu.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
value2= Float.parseFloat(textView.getText()+ "");
if (addition==true)
{textView.setText(value1 + value2 + "");
addition=false;
}
if (subtraction==true)
{textView.setText(value1 - value2 + "");
subtraction=false;
}
if (multiplication==true)
{textView.setText(value1 * value2 + "");
multiplication=false;
}
if (division==true)
textView.setText(value1 / value2 + "");
division=false;
}});
buttonC.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
textView.setText("");
}
});
}
}
Output ScreenShot
Lab report-4

More Related Content

Similar to Lab report-4

Practical 14 android.docx
Practical 14 android.docxPractical 14 android.docx
Practical 14 android.docxVedantIbitwar
 
Share kmu itbz_20181106
Share kmu itbz_20181106Share kmu itbz_20181106
Share kmu itbz_20181106DongHyun Gang
 
Lecture #1 Creating your first android project
Lecture #1  Creating your first android projectLecture #1  Creating your first android project
Lecture #1 Creating your first android projectVitali Pekelis
 
How to use data binding in android
How to use data binding in androidHow to use data binding in android
How to use data binding in androidInnovationM
 
Optimizing Apps for Better Performance
Optimizing Apps for Better PerformanceOptimizing Apps for Better Performance
Optimizing Apps for Better PerformanceElif Boncuk
 
IRJET- Displaying Smart Phone Data in the Desktop using Firebase
IRJET- Displaying Smart Phone Data in the Desktop using FirebaseIRJET- Displaying Smart Phone Data in the Desktop using Firebase
IRJET- Displaying Smart Phone Data in the Desktop using FirebaseIRJET Journal
 
Resume-Android Developer
Resume-Android DeveloperResume-Android Developer
Resume-Android DeveloperNikhil Desale
 
Veera - Infosys - DotNet Devoloper
Veera - Infosys - DotNet DevoloperVeera - Infosys - DotNet Devoloper
Veera - Infosys - DotNet Devolopersurendra p.v.
 
Fragments: Why, How, What For?
Fragments: Why, How, What For?Fragments: Why, How, What For?
Fragments: Why, How, What For?Brenda Cook
 
Info Store(Mobile App)
Info Store(Mobile App)Info Store(Mobile App)
Info Store(Mobile App)AimranRazak
 
An end-to-end experience of Windows Phone 7 development (Part 1)
An end-to-end experience of Windows Phone 7 development (Part 1)An end-to-end experience of Windows Phone 7 development (Part 1)
An end-to-end experience of Windows Phone 7 development (Part 1)rudigrobler
 
Introduction to Android Programming
Introduction to Android ProgrammingIntroduction to Android Programming
Introduction to Android ProgrammingRaveendra R
 
Fragment me
Fragment meFragment me
Fragment mea a
 

Similar to Lab report-4 (20)

Practical 14 android.docx
Practical 14 android.docxPractical 14 android.docx
Practical 14 android.docx
 
Share kmu itbz_20181106
Share kmu itbz_20181106Share kmu itbz_20181106
Share kmu itbz_20181106
 
MAD LAB MANUAL.pdf
MAD LAB MANUAL.pdfMAD LAB MANUAL.pdf
MAD LAB MANUAL.pdf
 
Lecture #1 Creating your first android project
Lecture #1  Creating your first android projectLecture #1  Creating your first android project
Lecture #1 Creating your first android project
 
How to use data binding in android
How to use data binding in androidHow to use data binding in android
How to use data binding in android
 
Optimizing Apps for Better Performance
Optimizing Apps for Better PerformanceOptimizing Apps for Better Performance
Optimizing Apps for Better Performance
 
IRJET- Displaying Smart Phone Data in the Desktop using Firebase
IRJET- Displaying Smart Phone Data in the Desktop using FirebaseIRJET- Displaying Smart Phone Data in the Desktop using Firebase
IRJET- Displaying Smart Phone Data in the Desktop using Firebase
 
Chapter 5 - Layouts
Chapter 5 - LayoutsChapter 5 - Layouts
Chapter 5 - Layouts
 
Resume-Android Developer
Resume-Android DeveloperResume-Android Developer
Resume-Android Developer
 
Veera - Infosys - DotNet Devoloper
Veera - Infosys - DotNet DevoloperVeera - Infosys - DotNet Devoloper
Veera - Infosys - DotNet Devoloper
 
Fragments: Why, How, What For?
Fragments: Why, How, What For?Fragments: Why, How, What For?
Fragments: Why, How, What For?
 
Manisha android cv
Manisha android cvManisha android cv
Manisha android cv
 
Geekcamp Android
Geekcamp AndroidGeekcamp Android
Geekcamp Android
 
yogeshmulchandaninew
yogeshmulchandaninewyogeshmulchandaninew
yogeshmulchandaninew
 
Info Store(Mobile App)
Info Store(Mobile App)Info Store(Mobile App)
Info Store(Mobile App)
 
Ramesh iOS Profile
Ramesh iOS ProfileRamesh iOS Profile
Ramesh iOS Profile
 
An end-to-end experience of Windows Phone 7 development (Part 1)
An end-to-end experience of Windows Phone 7 development (Part 1)An end-to-end experience of Windows Phone 7 development (Part 1)
An end-to-end experience of Windows Phone 7 development (Part 1)
 
Introduction to Android Programming
Introduction to Android ProgrammingIntroduction to Android Programming
Introduction to Android Programming
 
Fragment me
Fragment meFragment me
Fragment me
 
Power Apps Session 2.pptx
Power Apps Session 2.pptxPower Apps Session 2.pptx
Power Apps Session 2.pptx
 

Recently uploaded

Call Girls In Porbandar 📞 8617370543 At Low Cost Cash Payment Booking
Call Girls In Porbandar 📞 8617370543  At Low Cost Cash Payment BookingCall Girls In Porbandar 📞 8617370543  At Low Cost Cash Payment Booking
Call Girls In Porbandar 📞 8617370543 At Low Cost Cash Payment BookingNitya salvi
 
Russian Call Girls In Bhubaneswar 📱 Odisha 9777949614 Indore
Russian Call Girls In Bhubaneswar 📱 Odisha 9777949614 IndoreRussian Call Girls In Bhubaneswar 📱 Odisha 9777949614 Indore
Russian Call Girls In Bhubaneswar 📱 Odisha 9777949614 IndoreCall Girls Mumbai
 
9711106444 Ghaziabad, Call Girls @ ₹. 1500– Per Shot Per Night 7000 Delhi
9711106444 Ghaziabad, Call Girls @ ₹. 1500– Per Shot Per Night 7000 Delhi9711106444 Ghaziabad, Call Girls @ ₹. 1500– Per Shot Per Night 7000 Delhi
9711106444 Ghaziabad, Call Girls @ ₹. 1500– Per Shot Per Night 7000 Delhidelhimunirka15
 
Khambhalia Escorts 8617370543 Khambhalia Call Girls Service
Khambhalia Escorts 8617370543 Khambhalia Call Girls ServiceKhambhalia Escorts 8617370543 Khambhalia Call Girls Service
Khambhalia Escorts 8617370543 Khambhalia Call Girls ServiceNitya salvi
 
Nadiad call girls 📞 8617370543 At Low Cost Cash Payment Booking
Nadiad call girls 📞 8617370543 At Low Cost Cash Payment BookingNadiad call girls 📞 8617370543 At Low Cost Cash Payment Booking
Nadiad call girls 📞 8617370543 At Low Cost Cash Payment BookingNitya salvi
 
Russian Call Girls Pilibhit Just Call 👉👉 📞 8617370543 Top Class Call Girl Ser...
Russian Call Girls Pilibhit Just Call 👉👉 📞 8617370543 Top Class Call Girl Ser...Russian Call Girls Pilibhit Just Call 👉👉 📞 8617370543 Top Class Call Girl Ser...
Russian Call Girls Pilibhit Just Call 👉👉 📞 8617370543 Top Class Call Girl Ser...Nitya salvi
 
Call Girls In Sindhudurg Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service E...
Call Girls In Sindhudurg Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service E...Call Girls In Sindhudurg Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service E...
Call Girls In Sindhudurg Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service E...Nitya salvi
 
HUMA Final Presentation About Chicano Culture
HUMA Final Presentation About Chicano CultureHUMA Final Presentation About Chicano Culture
HUMA Final Presentation About Chicano Culturekarinamercado2462
 
Faridabad $ best call girls in Faridabad (Adult Only) 8168257667 Escort Servi...
Faridabad $ best call girls in Faridabad (Adult Only) 8168257667 Escort Servi...Faridabad $ best call girls in Faridabad (Adult Only) 8168257667 Escort Servi...
Faridabad $ best call girls in Faridabad (Adult Only) 8168257667 Escort Servi...Hyderabad Escorts Agency
 
Navsari Call Girl 📞 8617370543 Low Price Genuine Service
Navsari Call Girl 📞 8617370543 Low Price Genuine ServiceNavsari Call Girl 📞 8617370543 Low Price Genuine Service
Navsari Call Girl 📞 8617370543 Low Price Genuine ServiceNitya salvi
 
Sonbhadra Escorts 📞 8617370543 | Sonbhadra Call Girls
Sonbhadra  Escorts 📞 8617370543 | Sonbhadra Call GirlsSonbhadra  Escorts 📞 8617370543 | Sonbhadra Call Girls
Sonbhadra Escorts 📞 8617370543 | Sonbhadra Call GirlsNitya salvi
 
Nehru Nagar, Call Girls ☎️ ((#9711106444)), 💘 Full enjoy Low rate girl💘 Genui...
Nehru Nagar, Call Girls ☎️ ((#9711106444)), 💘 Full enjoy Low rate girl💘 Genui...Nehru Nagar, Call Girls ☎️ ((#9711106444)), 💘 Full enjoy Low rate girl💘 Genui...
Nehru Nagar, Call Girls ☎️ ((#9711106444)), 💘 Full enjoy Low rate girl💘 Genui...delhimunirka15
 
Engineering Major for College_ Environmental Health Engineering by Slidesgo.pptx
Engineering Major for College_ Environmental Health Engineering by Slidesgo.pptxEngineering Major for College_ Environmental Health Engineering by Slidesgo.pptx
Engineering Major for College_ Environmental Health Engineering by Slidesgo.pptxDanielRemache4
 
SB_ Pretzel and the puppies_ Rough_ RiverPhan (2024)
SB_ Pretzel and the puppies_ Rough_ RiverPhan (2024)SB_ Pretzel and the puppies_ Rough_ RiverPhan (2024)
SB_ Pretzel and the puppies_ Rough_ RiverPhan (2024)River / Thao Phan
 
Call girl Jaipur (service) 9257505146,9216459764
Call girl Jaipur (service) 9257505146,9216459764Call girl Jaipur (service) 9257505146,9216459764
Call girl Jaipur (service) 9257505146,9216459764Jaipur
 
Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu DhabiMussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabiromeke1848
 
Jaro je tady - Spring is here (Judith) 3
Jaro je tady - Spring is here (Judith) 3Jaro je tady - Spring is here (Judith) 3
Jaro je tady - Spring is here (Judith) 3wistariecz
 
Premium Call Girls Ranchi 0000000000 ❤VVIP POOJA Call Girls in Ranchi Jharkhand
Premium Call Girls Ranchi 0000000000 ❤VVIP POOJA Call Girls in Ranchi JharkhandPremium Call Girls Ranchi 0000000000 ❤VVIP POOJA Call Girls in Ranchi Jharkhand
Premium Call Girls Ranchi 0000000000 ❤VVIP POOJA Call Girls in Ranchi JharkhandCall Girls Mumbai
 
Just Call Vip call girls Farrukhabad Escorts ☎️8617370543 Two shot with one g...
Just Call Vip call girls Farrukhabad Escorts ☎️8617370543 Two shot with one g...Just Call Vip call girls Farrukhabad Escorts ☎️8617370543 Two shot with one g...
Just Call Vip call girls Farrukhabad Escorts ☎️8617370543 Two shot with one g...Nitya salvi
 
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...Nitya salvi
 

Recently uploaded (20)

Call Girls In Porbandar 📞 8617370543 At Low Cost Cash Payment Booking
Call Girls In Porbandar 📞 8617370543  At Low Cost Cash Payment BookingCall Girls In Porbandar 📞 8617370543  At Low Cost Cash Payment Booking
Call Girls In Porbandar 📞 8617370543 At Low Cost Cash Payment Booking
 
Russian Call Girls In Bhubaneswar 📱 Odisha 9777949614 Indore
Russian Call Girls In Bhubaneswar 📱 Odisha 9777949614 IndoreRussian Call Girls In Bhubaneswar 📱 Odisha 9777949614 Indore
Russian Call Girls In Bhubaneswar 📱 Odisha 9777949614 Indore
 
9711106444 Ghaziabad, Call Girls @ ₹. 1500– Per Shot Per Night 7000 Delhi
9711106444 Ghaziabad, Call Girls @ ₹. 1500– Per Shot Per Night 7000 Delhi9711106444 Ghaziabad, Call Girls @ ₹. 1500– Per Shot Per Night 7000 Delhi
9711106444 Ghaziabad, Call Girls @ ₹. 1500– Per Shot Per Night 7000 Delhi
 
Khambhalia Escorts 8617370543 Khambhalia Call Girls Service
Khambhalia Escorts 8617370543 Khambhalia Call Girls ServiceKhambhalia Escorts 8617370543 Khambhalia Call Girls Service
Khambhalia Escorts 8617370543 Khambhalia Call Girls Service
 
Nadiad call girls 📞 8617370543 At Low Cost Cash Payment Booking
Nadiad call girls 📞 8617370543 At Low Cost Cash Payment BookingNadiad call girls 📞 8617370543 At Low Cost Cash Payment Booking
Nadiad call girls 📞 8617370543 At Low Cost Cash Payment Booking
 
Russian Call Girls Pilibhit Just Call 👉👉 📞 8617370543 Top Class Call Girl Ser...
Russian Call Girls Pilibhit Just Call 👉👉 📞 8617370543 Top Class Call Girl Ser...Russian Call Girls Pilibhit Just Call 👉👉 📞 8617370543 Top Class Call Girl Ser...
Russian Call Girls Pilibhit Just Call 👉👉 📞 8617370543 Top Class Call Girl Ser...
 
Call Girls In Sindhudurg Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service E...
Call Girls In Sindhudurg Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service E...Call Girls In Sindhudurg Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service E...
Call Girls In Sindhudurg Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service E...
 
HUMA Final Presentation About Chicano Culture
HUMA Final Presentation About Chicano CultureHUMA Final Presentation About Chicano Culture
HUMA Final Presentation About Chicano Culture
 
Faridabad $ best call girls in Faridabad (Adult Only) 8168257667 Escort Servi...
Faridabad $ best call girls in Faridabad (Adult Only) 8168257667 Escort Servi...Faridabad $ best call girls in Faridabad (Adult Only) 8168257667 Escort Servi...
Faridabad $ best call girls in Faridabad (Adult Only) 8168257667 Escort Servi...
 
Navsari Call Girl 📞 8617370543 Low Price Genuine Service
Navsari Call Girl 📞 8617370543 Low Price Genuine ServiceNavsari Call Girl 📞 8617370543 Low Price Genuine Service
Navsari Call Girl 📞 8617370543 Low Price Genuine Service
 
Sonbhadra Escorts 📞 8617370543 | Sonbhadra Call Girls
Sonbhadra  Escorts 📞 8617370543 | Sonbhadra Call GirlsSonbhadra  Escorts 📞 8617370543 | Sonbhadra Call Girls
Sonbhadra Escorts 📞 8617370543 | Sonbhadra Call Girls
 
Nehru Nagar, Call Girls ☎️ ((#9711106444)), 💘 Full enjoy Low rate girl💘 Genui...
Nehru Nagar, Call Girls ☎️ ((#9711106444)), 💘 Full enjoy Low rate girl💘 Genui...Nehru Nagar, Call Girls ☎️ ((#9711106444)), 💘 Full enjoy Low rate girl💘 Genui...
Nehru Nagar, Call Girls ☎️ ((#9711106444)), 💘 Full enjoy Low rate girl💘 Genui...
 
Engineering Major for College_ Environmental Health Engineering by Slidesgo.pptx
Engineering Major for College_ Environmental Health Engineering by Slidesgo.pptxEngineering Major for College_ Environmental Health Engineering by Slidesgo.pptx
Engineering Major for College_ Environmental Health Engineering by Slidesgo.pptx
 
SB_ Pretzel and the puppies_ Rough_ RiverPhan (2024)
SB_ Pretzel and the puppies_ Rough_ RiverPhan (2024)SB_ Pretzel and the puppies_ Rough_ RiverPhan (2024)
SB_ Pretzel and the puppies_ Rough_ RiverPhan (2024)
 
Call girl Jaipur (service) 9257505146,9216459764
Call girl Jaipur (service) 9257505146,9216459764Call girl Jaipur (service) 9257505146,9216459764
Call girl Jaipur (service) 9257505146,9216459764
 
Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu DhabiMussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
 
Jaro je tady - Spring is here (Judith) 3
Jaro je tady - Spring is here (Judith) 3Jaro je tady - Spring is here (Judith) 3
Jaro je tady - Spring is here (Judith) 3
 
Premium Call Girls Ranchi 0000000000 ❤VVIP POOJA Call Girls in Ranchi Jharkhand
Premium Call Girls Ranchi 0000000000 ❤VVIP POOJA Call Girls in Ranchi JharkhandPremium Call Girls Ranchi 0000000000 ❤VVIP POOJA Call Girls in Ranchi Jharkhand
Premium Call Girls Ranchi 0000000000 ❤VVIP POOJA Call Girls in Ranchi Jharkhand
 
Just Call Vip call girls Farrukhabad Escorts ☎️8617370543 Two shot with one g...
Just Call Vip call girls Farrukhabad Escorts ☎️8617370543 Two shot with one g...Just Call Vip call girls Farrukhabad Escorts ☎️8617370543 Two shot with one g...
Just Call Vip call girls Farrukhabad Escorts ☎️8617370543 Two shot with one g...
 
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
 

Lab report-4