SlideShare a Scribd company logo
Add code to the following class:
Receiver
to impose a four times timeout of 5 seconds. On the expiration
of first, second, and third timeout the following messages
should be displayed on the console of the
Receiver
:
It is 5 seconds I am waiting.
It is 10 seconds I am waiting.
It is 15 seconds I am waiting.
On the expiration of fourth timeout the following message
should be displayed on the console of the
Receiver
and the
Receiver
should be terminated:
It is 20 seconds I am waiting.
I waited 20 seconds to get your message. But you did not send
it.
If the
Sender
sends its message during these time periods the Receiver
should displays the message and terminates. The following are
the result of five outputs of the
Receiver
:
Output 1: When the
Sender
sends its message before the expiration of 5 seconds:
Let us go to a movie
Output 2: When the
Sender
sends its message before the expiration of 10 seconds:
It is 5 seconds I am waiting.
Let us go to a movie
Output 3: When the
Sender
sends its message before the expiration of 15 seconds:
It is 5 seconds I am waiting.
It is 10 seconds I am waiting.
Let us go to a movie
Output 4: When the
Sender
sends its message before the expiration of 20 seconds:
It is 10 seconds I am waiting.
It is 15 seconds I am waiting.
Let us go to a movie
Output 5: When the
Sender
either sends its message after 20 seconds or does not send at
all:
It is 5 seconds I am waiting.
It is 10 seconds I am waiting.
It is 15 seconds I am waiting.
It is 20 seconds I am waiting.
I waited 20 seconds to get your message. I do not wait anymore.
Note: This question is similar (not the same) as exercise 4 in
chapter 4 of your book.
Note: Only copy/paste the class:
Receiver
class under the word:
Answer
.
Hints:
1.
You need to call the java method:
setSoTimeout(5000)
of class:
DatagramSocket
.
2.
You need an extra catch-block with the exception class:
SocketTimeoutException
.
3.
You need a loop that iterates at most four times every 5
seconds.
Sender
:
import
java.io.*;
import
java.net.*;
public
class
Sender {
public
static
void
main(String[]
args
)
throws
IOException {
// This class is complete, do not change it.
try
{
String
message
=
"Let us go to a movie"
;
byte
[]
buffer
=
message
.getBytes();
int
port
= 16790;
InetAddress
host
= InetAddress.
getByName
(
"localhost"
);
DatagramSocket
serverSocket
=
new
DatagramSocket();
DatagramPacket
datagram
=
new
DatagramPacket(
buffer
,
buffer
.
length
,
host
,
port
);
serverSocket
.send(
datagram
);
serverSocket
.close();
}
catch
(IOException
e
) {
System.
out
.println(
"Error: "
+
e
);
System.
exit
(0);
}
}
}
Receiver
:
import
java.io.*;
import
java.net.*;
public
class
Receiver {
// Complete this class.
public
static
void
main(String[]
args
)
throws
IOException {
final
int
MAX_LEN
= 100;
byte
[]
buffer
=
new
byte
[
MAX_LEN
];
int
port
= 16790;
DatagramPacket
datagram
=
new
DatagramPacket(
buffer
,
buffer
.
length
);
DatagramSocket
clientSocket
=
new
DatagramSocket(
port
);
.......
}
}
Answer
:
Receiver
:

More Related Content

More from normanlane62630

After watching the video Generational Theft regarding our nation.docx
After watching the video Generational Theft regarding our nation.docxAfter watching the video Generational Theft regarding our nation.docx
After watching the video Generational Theft regarding our nation.docx
normanlane62630
 
After the Civil War, the United States became a much more industrial.docx
After the Civil War, the United States became a much more industrial.docxAfter the Civil War, the United States became a much more industrial.docx
After the Civil War, the United States became a much more industrial.docx
normanlane62630
 
After reviewing the rubric, I feel that the easiest way to break thi.docx
After reviewing the rubric, I feel that the easiest way to break thi.docxAfter reviewing the rubric, I feel that the easiest way to break thi.docx
After reviewing the rubric, I feel that the easiest way to break thi.docx
normanlane62630
 
After the data are collected and before program evaluators meet with.docx
After the data are collected and before program evaluators meet with.docxAfter the data are collected and before program evaluators meet with.docx
After the data are collected and before program evaluators meet with.docx
normanlane62630
 
After receiving feedback on your rough draft, you should have made s.docx
After receiving feedback on your rough draft, you should have made s.docxAfter receiving feedback on your rough draft, you should have made s.docx
After receiving feedback on your rough draft, you should have made s.docx
normanlane62630
 
After reading the primary source documents on Independence and Nati.docx
After reading the primary source documents on Independence and Nati.docxAfter reading the primary source documents on Independence and Nati.docx
After reading the primary source documents on Independence and Nati.docx
normanlane62630
 
After reading the narrative essays of the above authors, write parag.docx
After reading the narrative essays of the above authors, write parag.docxAfter reading the narrative essays of the above authors, write parag.docx
After reading the narrative essays of the above authors, write parag.docx
normanlane62630
 
After reading the material, write a discussion post. In doing this, .docx
After reading the material, write a discussion post. In doing this, .docxAfter reading the material, write a discussion post. In doing this, .docx
After reading the material, write a discussion post. In doing this, .docx
normanlane62630
 
after reiwing the apollo 13 movie the work must be your original.docx
after reiwing the apollo 13 movie the work must be your original.docxafter reiwing the apollo 13 movie the work must be your original.docx
after reiwing the apollo 13 movie the work must be your original.docx
normanlane62630
 
After reading the excerpts from Alice Walker and Toni Morrison, shar.docx
After reading the excerpts from Alice Walker and Toni Morrison, shar.docxAfter reading the excerpts from Alice Walker and Toni Morrison, shar.docx
After reading the excerpts from Alice Walker and Toni Morrison, shar.docx
normanlane62630
 
After reading the assigned reading material for Week four (see annou.docx
After reading the assigned reading material for Week four (see annou.docxAfter reading the assigned reading material for Week four (see annou.docx
After reading the assigned reading material for Week four (see annou.docx
normanlane62630
 
After reading Chapters 3 and 4 and the Linquanti article, Fostering .docx
After reading Chapters 3 and 4 and the Linquanti article, Fostering .docxAfter reading Chapters 3 and 4 and the Linquanti article, Fostering .docx
After reading Chapters 3 and 4 and the Linquanti article, Fostering .docx
normanlane62630
 
After having read Turning Stones, students will use a completely.docx
After having read Turning Stones, students will use a completely.docxAfter having read Turning Stones, students will use a completely.docx
After having read Turning Stones, students will use a completely.docx
normanlane62630
 
After learning about the history of Nazi anti-Semitism, do you think.docx
After learning about the history of Nazi anti-Semitism, do you think.docxAfter learning about the history of Nazi anti-Semitism, do you think.docx
After learning about the history of Nazi anti-Semitism, do you think.docx
normanlane62630
 
After meetings with your client, Quick Bros. Animation, in a con.docx
After meetings with your client, Quick Bros. Animation, in a con.docxAfter meetings with your client, Quick Bros. Animation, in a con.docx
After meetings with your client, Quick Bros. Animation, in a con.docx
normanlane62630
 
After completing the readings and video of the studies by Milgram, Z.docx
After completing the readings and video of the studies by Milgram, Z.docxAfter completing the readings and video of the studies by Milgram, Z.docx
After completing the readings and video of the studies by Milgram, Z.docx
normanlane62630
 
After completing the readings, answer the following questions1..docx
After completing the readings, answer the following questions1..docxAfter completing the readings, answer the following questions1..docx
After completing the readings, answer the following questions1..docx
normanlane62630
 
After completing the readings, answer the following five questions.docx
After completing the readings, answer the following five questions.docxAfter completing the readings, answer the following five questions.docx
After completing the readings, answer the following five questions.docx
normanlane62630
 
After closely reading the article The Context of Traditional Americ.docx
After closely reading the article The Context of Traditional Americ.docxAfter closely reading the article The Context of Traditional Americ.docx
After closely reading the article The Context of Traditional Americ.docx
normanlane62630
 
After completing the activity above, answer the following questions .docx
After completing the activity above, answer the following questions .docxAfter completing the activity above, answer the following questions .docx
After completing the activity above, answer the following questions .docx
normanlane62630
 

More from normanlane62630 (20)

After watching the video Generational Theft regarding our nation.docx
After watching the video Generational Theft regarding our nation.docxAfter watching the video Generational Theft regarding our nation.docx
After watching the video Generational Theft regarding our nation.docx
 
After the Civil War, the United States became a much more industrial.docx
After the Civil War, the United States became a much more industrial.docxAfter the Civil War, the United States became a much more industrial.docx
After the Civil War, the United States became a much more industrial.docx
 
After reviewing the rubric, I feel that the easiest way to break thi.docx
After reviewing the rubric, I feel that the easiest way to break thi.docxAfter reviewing the rubric, I feel that the easiest way to break thi.docx
After reviewing the rubric, I feel that the easiest way to break thi.docx
 
After the data are collected and before program evaluators meet with.docx
After the data are collected and before program evaluators meet with.docxAfter the data are collected and before program evaluators meet with.docx
After the data are collected and before program evaluators meet with.docx
 
After receiving feedback on your rough draft, you should have made s.docx
After receiving feedback on your rough draft, you should have made s.docxAfter receiving feedback on your rough draft, you should have made s.docx
After receiving feedback on your rough draft, you should have made s.docx
 
After reading the primary source documents on Independence and Nati.docx
After reading the primary source documents on Independence and Nati.docxAfter reading the primary source documents on Independence and Nati.docx
After reading the primary source documents on Independence and Nati.docx
 
After reading the narrative essays of the above authors, write parag.docx
After reading the narrative essays of the above authors, write parag.docxAfter reading the narrative essays of the above authors, write parag.docx
After reading the narrative essays of the above authors, write parag.docx
 
After reading the material, write a discussion post. In doing this, .docx
After reading the material, write a discussion post. In doing this, .docxAfter reading the material, write a discussion post. In doing this, .docx
After reading the material, write a discussion post. In doing this, .docx
 
after reiwing the apollo 13 movie the work must be your original.docx
after reiwing the apollo 13 movie the work must be your original.docxafter reiwing the apollo 13 movie the work must be your original.docx
after reiwing the apollo 13 movie the work must be your original.docx
 
After reading the excerpts from Alice Walker and Toni Morrison, shar.docx
After reading the excerpts from Alice Walker and Toni Morrison, shar.docxAfter reading the excerpts from Alice Walker and Toni Morrison, shar.docx
After reading the excerpts from Alice Walker and Toni Morrison, shar.docx
 
After reading the assigned reading material for Week four (see annou.docx
After reading the assigned reading material for Week four (see annou.docxAfter reading the assigned reading material for Week four (see annou.docx
After reading the assigned reading material for Week four (see annou.docx
 
After reading Chapters 3 and 4 and the Linquanti article, Fostering .docx
After reading Chapters 3 and 4 and the Linquanti article, Fostering .docxAfter reading Chapters 3 and 4 and the Linquanti article, Fostering .docx
After reading Chapters 3 and 4 and the Linquanti article, Fostering .docx
 
After having read Turning Stones, students will use a completely.docx
After having read Turning Stones, students will use a completely.docxAfter having read Turning Stones, students will use a completely.docx
After having read Turning Stones, students will use a completely.docx
 
After learning about the history of Nazi anti-Semitism, do you think.docx
After learning about the history of Nazi anti-Semitism, do you think.docxAfter learning about the history of Nazi anti-Semitism, do you think.docx
After learning about the history of Nazi anti-Semitism, do you think.docx
 
After meetings with your client, Quick Bros. Animation, in a con.docx
After meetings with your client, Quick Bros. Animation, in a con.docxAfter meetings with your client, Quick Bros. Animation, in a con.docx
After meetings with your client, Quick Bros. Animation, in a con.docx
 
After completing the readings and video of the studies by Milgram, Z.docx
After completing the readings and video of the studies by Milgram, Z.docxAfter completing the readings and video of the studies by Milgram, Z.docx
After completing the readings and video of the studies by Milgram, Z.docx
 
After completing the readings, answer the following questions1..docx
After completing the readings, answer the following questions1..docxAfter completing the readings, answer the following questions1..docx
After completing the readings, answer the following questions1..docx
 
After completing the readings, answer the following five questions.docx
After completing the readings, answer the following five questions.docxAfter completing the readings, answer the following five questions.docx
After completing the readings, answer the following five questions.docx
 
After closely reading the article The Context of Traditional Americ.docx
After closely reading the article The Context of Traditional Americ.docxAfter closely reading the article The Context of Traditional Americ.docx
After closely reading the article The Context of Traditional Americ.docx
 
After completing the activity above, answer the following questions .docx
After completing the activity above, answer the following questions .docxAfter completing the activity above, answer the following questions .docx
After completing the activity above, answer the following questions .docx
 

Recently uploaded

What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
GeorgeMilliken2
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
HajraNaeem15
 
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
สมใจ จันสุกสี
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
Jean Carlos Nunes Paixão
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Excellence Foundation for South Sudan
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
iammrhaywood
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
TechSoup
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
RAHUL
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptxBeyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
EduSkills OECD
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
Nguyen Thanh Tu Collection
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
Himanshu Rai
 
How to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRMHow to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRM
Celine George
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
S. Raj Kumar
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
haiqairshad
 
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Diana Rendina
 
How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience
Wahiba Chair Training & Consulting
 

Recently uploaded (20)

What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
 
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptxBeyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
 
How to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRMHow to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRM
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
 
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
 
How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience
 

Add code to the following class Receiver to impose a four times.docx