SlideShare a Scribd company logo
1 of 5
Download to read offline
A MOBILE AGENT-BASED P2P E-LEARNING SYSTEM
Takao KAWAMURA, Shin KINOSHITA and Kazunori SUGAHARA
Department of Information and Knowledge Engineering
Tottori University
4–101, Koyama-Minami
Tottori, JAPAN
{kawamura,kinosita,sugahara}@ike.tottori-u.ac.jp
ABSTRACT
In this paper, we present a novel framework for asyn-
chronous WBT. The proposed system has two distinguish-
ing features. Firstly, it is based on P2P architecture for scal-
ability and robustness. Secondly, all contents in the sys-
tem are not only data but also agents so that they can mark
user’s answers, tell the correct answers, and show some ex-
tra information without human instruction. We also present
a prototype implementation of the proposed system on Ma-
glog that is a Prolog-based framework for building mobile
multi-agent systems we have developed. Performance sim-
ulations demonstrate the effectiveness of the proposed sys-
tem.
KEY WORDS
Distributed Software Systems and Applications, e-
Learning, Mobile Agent, Peer-to-Peer
1 Introduction
The term e-Learning covers a wide set of applications and
processes, such as Web-based training (hereafter we ab-
breviate as WBT), computer-based training, virtual class-
rooms, and digital collaboration. We are concerned with
asynchronous WBT that allows the learner to complete the
WBT on his own time and schedule, without live interac-
tion with the instructor.
Although a large number of studies have been made
on asynchronous WBT[1, 2], all of them are based on the
client/server model. The client/server systems generally
lack scalability and robustness. In the recent years, P2P re-
search has grown exponentially. Although the current P2P
systems are famous for file sharing, and the consequent le-
gal problems, P2P systems are gradually proving to be a
very promising area of research because they have potential
for offering a decentralised, self-sustained, scalable, fault
tolerant and symmetric network of computers providing an
effective balancing of storage and bandwidth resources.
In this paper, we present a novel framework for asyn-
chronous WBT. The proposed system has two distinguish-
ing features. Firstly, it is based on P2P architecture and ev-
ery user’s computer plays the role of a client and a server.
Namely, while a user uses the proposed e-Learning system,
his/her computer (hereafter we refer to such a computer as
a node) is a part of the system. It receives some number
of contents from another node when it joins the system and
has responsibility to send appropriate contents to request-
ing nodes. Secondly, each content in the system is not only
data but also an agent so that it can mark user’s answers,
tell the correct answers, and show some extra information
without human instruction.
This paper is organised in 7 sections. We describe the
supposed situation for the proposed system in Section 2. In
Section 3, we describe our design goals. In Section 4, we
describe the design of the proposed system and a prototype
implementation of the system. In Section 5, we present
performance simulations. In Section 6, we briefly review
related work. Finally, in Section 7, we describe some con-
cluding remarks.
2 Supposed Situation
As mentioned in the previous section, we focus on asyn-
chronous WBT, that is to say, a user can connect to the
proposed e-Learning system anytime and anywhere he/she
wants. Once connection is established, the user can obtain
exercises one after another through specifying categories of
the required exercises. User’s answers for each exercise are
marked as correct or incorrect right away. Extra informa-
tion may be provided for each answer, which can be viewed
when the correct answer is shown.
While a user uses the proposed e-Learning system,
his/her computer is a part of the system. Namely, it receives
some number of categories and exercises in them from an-
other node when it joins the system and has responsibility
to send appropriate exercises to requesting nodes.
The important point to note is that the categories a
node has are independent of the categories in which the
node’s user are interested as shown in Figure 1. Figure 1
illustrates that user A’s request is forwarded at first to the
neighbor node, next forwarded to the node which has the
requested category.
3 Basic Concepts
As mentioned above, the proposed system has two distin-
guishing features. Firstly, it is based on P2P architecture.
Secondly, each exercise is not only data but also an agent
439-073 873
Network
Physics
I want to try
an exercise
of history!
User A
English History
User B User C
1
2
Searching Message
Migration of Exercise Agent
3
Node Node
Node
Figure 1. Proposed e-Learning system.
so that it can mark user’s answers, tell the correct answers,
and show some extra information about the exercise. In this
section, we describe these features in detail.
3.1 P2P Aspect
All exercises in the proposed system are classified into cat-
egories such as “Mathematics / Expression / Equation”,
“English / Grammar”, and “History / Rome”, etc.
When the proposed system begins, one initial node
has all categories in the system. When another node joins
the system, it is received some number of categories from
the initial node. The categories are distributed among all
nodes in the system according as nodes join the system or
leave the system.
We would like to emphasize that in existing P2P-
based file sharing systems such as Napster[3], Gnutella[4],
and Freenet[5] each shared file is owned by a particular
node. Accordingly, files are originally distributed among
all nodes. On the other hand, the categories in the pro-
posed system are originally concentrated. Consequently,
when a new node joins the system, not only location infor-
mation of a category but the category itself must be handed
to the new node. Considering that, the P2P network of the
proposed system can be constructed as a CAN[6].
A CAN has a virtual coordinate space that is used to
store (key, value) pairs. To store a pair (K1, V1), key K1 is
deterministically mapped onto a point P in the coordinate
space using a uniform hash function. The corresponding
(key, value) pair is then stored at the node that owns the
zone within which the point P lies. In the proposed system,
we let each category be a key and let a set of exercises
belonging to the category be the corresponding value.
3.2 Mobile Agent Aspect
Generally, in addition to service to show an exercise, a
WBT server provides services to mark the user’s answers,
tell the correct answers, and show some extra information
about the exercise. Therefore, for the proposed system
which can be considered a distributed WBT system, it is not
enough that only exercises are distributed among all nodes.
Functions to provide the above services also must be dis-
tributed among all nodes. We adopt mobile agent technol-
ogy to achieve this goal. Namely, an exercise is not only
data but also an agent so that it can mark user’s answers,
tell the correct answers, and show some extra information
about the exercise.
In addition, mobile agent technology is applied to re-
alize the migration of categories, that is, each category is
also an agent in the proposed system.
4 Design and Implementation
We have implemented a prototype of the proposed system
on Maglog that is a Prolog-based framework for building
mobile multi-agent systems we have developed[7].
As shown in Figure 2, a node consists of the following
agents and a user interface program. The components of a
node are divided into two type, those that move to other
node referred as mobile components in Figure 2, and those
that keep their station referred as stational components in
Figure 2.
Node Agent There is one node agent on each node. It
manages the zone information of a CAN and forwards
messages to the category agents in the node.
Category Agent Each category agent stands for a unit of a
particular subject. It manages exercise agents in itself
and sends them to the requesting node.
Exercise Agent Each exercise agent has a question and
functions to mark user’s answers, tell the correct an-
swers, and show some extra information about the ex-
ercise. These data are formatted in HTML.
Interface Agent There is one interface agent on each
node. It is an interface between the user interface pro-
gram and other agents.
The user interface program has been developed
through extending Scamper which is a simple web browser
runs in Squeak[8].
Agents communicate with other agents through
‘field’s provided by Maglog framework. A field is kind of a
preemptive queue. Roughly speaking, the above mentioned
four kinds of agents execute a message dispatch loop. Each
message to an agent is queued into the field owned by the
agent. The user interface program also communicates with
the interface agent through a field via XML-RPC[9]. Table
1 shows a partial summary of message types.
Figures 3, 4, 5, and 6 are screen-shots of the user in-
terface program. Categories are classified into a hierarchi-
cal tree structure, as shown in Figure 3. By clicking the
right button of a mouse on a category, a user can obtain an
874
Node
UIP : User Interface Program
IA : Interface Agent
NA : Node Agent
CA : Category Agent
EA : Exercise Agent
Mobile ComponentsMobile Components
Stationary ComponentsStationary Components
IA
UIP
...EAEA EA EA
CA CA
...
...
NA
Figure 2. Architecture of a node.
Table 1. Partial summary of message types.
Dispatcher Type Description
Node join To join the system.
Node leave To leave the system.
Node update To update the neigh-
bour’s zone information.
Node request To get an exercise agent.
Category add To add an exercise agent.
Category go To go to another node.
Category send To send an exercise
agent.
Category receive To receive an exercise
agent.
Exercise go To go to the requesting
node.
Exercise show To show a question.
Exercise mark To mark a user’s answer.
Exercise answer To show the correct an-
swer.
Exercise info To show the extra infor-
mation.
Interface retrieve To get an exercise agent.
Interface release To let an exercise agent
go home.
Interface arrived To be notified the arrival
of an exercise agent.
exercise belonging to the category. After a while an appro-
priate exercise agent comes from some node and the user
can try the question as shown in Figure 4. The user can re-
quire to mark his/her answer anytime by clicking the sub-
mit button. Figure 5 shows an example result of marking.
Figure 6s show the correct answers and extra information
about the exercise that are shown by clicking the answer
button.
Figure 3. An exercise can be obtained by clicking the right
button of a mouse on a category.
Figure 4. An appropriate exercise agent comes from some
node and is tried by the requested user.
5 Performance Simulation
This section presents performance simulations obtained
from a prototype implementation of the proposed system
described in the previous section.
The experimental environment consists of 8 PCs with
Intel Pentium4 2.4GHz processor and 512MB of RAM, and
all the PCs are running on GNU/Linux (kernel version is
2.2.26) operating system. The physical network layout is
shown in Figure 7.
We measured the searching latency in the experimen-
tal environment under the conditions shown in Table 2. All
875
Figure 5. User’s answers are marked as correct or incorrect
by clicking the submit button.
Figure 6. Correct answers and extra information are shown
by clicking the answer button on the screen shown as Fig-
ure 5.
100BASE-TX
Switchng HUB
Node
Node
NodeNode
Node
NodeNode
Node
Figure 7. Experimental environment.
nodes send searching requests at the same time and exer-
cises to be searched are selected randomly. We compared
distributed and concentrated systems where these terms are
defined as follows:
Distributed System Each node has one category.
Concentrated System One node has all categories and the
rest nodes have no category.
It must be noted that the distributed system represents the
proposed system in which all categories have ideal distribu-
tion. The concentrated system is equivalent to an ordinary
WBT system.
Table 2. Experimental Conditions.
Number of Nodes 8
Number of Categories 8
Number of Exercises/Category 50
Searching Frequency [times/sec] 1
12 , 1
6 , 1
3 , 1
2
Simulations are carried out with the time interval of
600 seconds. Each Simulation is repeated 10 times and
the average of those is reported in Figure 8. Naturally, the
higher searching frequency is, the larger searching latency
is. Figure 8 shows that searching latency grows rapid in
the concentrated system, while it grows slowly in the dis-
tributed system. In other words, the result suggests that
the proposed e-Learning system has higher scalability than
ordinary concentrated WBT systems have.
0
5000
10000
15000
20000
25000
0 0.1 0.2 0.3 0.4 0.5 0.6
AverageSearchingLatency[msec]
Searching Frequency [times/sec]
Concentrated System
Distributed System
Figure 8. Comparison of concentrated and distributed sys-
tems in searching latency.
6 Related Works
A great deal of effort has been made on agent-based
systems[10, 11, 12, 13]. However, these technologies pro-
vide support for agent collaboration and communication
but lack support for P2P technology. Therefore, there are
876
few agent-based P2P applications. PeerDB[14] is one of
them, however agent technology is only used to assist query
processing while in the proposed e-Learning system it is
used not only for interactiveness but also for migration of
the functionality of the system.
Edutella is P2P network for exchanging informa-
tion about learning objects[15]. Edutella is based on
RDF(Resource Description Framework), which is a frame-
work for representing information in the Web. Conse-
quently, Edutella does not intend to receive user’s response.
In contrast, that is one of main goal of the proposed system
and it is achieved through agent technology.
7 Conclusion
Since existing asynchronous WBT systems are based on
the client/server model, they have problems of scalability
and robustness. The proposed e-Learning system solves
these problems in decentralised manner through both P2P
technology and mobile agent technology. Performance
simulations suggest that the proposed e-Learning system
has higher scalability than ordinary concentrated WBT sys-
tems have.
The expansion to provide popular functions of ordi-
nary concentrated WBT systems for communication be-
tween the instructor and the learners and among the learn-
ers by means of email, BBS (Bulletin Board System) and
‘Chat’, in decentralised manner, is left for future work.
References
[1] Helic, D., Krottmaier, H., Maurer, H. and Scerbakov,
N.: Implementing Project-Based Learning in WBT
Systems, World Conference on E-Learning in Cor-
porate, Government, Healthcare, and Higher Educa-
tion, pp. 2189–2196 (2003).
[2] Homma, H. and Aoki, Y.: Creation of WBT Server
on Digital Signal Processing, Proceedings of 4th In-
ternational Conference on Information Technology
Based Higher Education and Training (2003). Mar-
rakech, Morocco.
[3] Napster: http://www.napster.com/.
[4] Gnutella: http://welcome.to/gnutella/.
[5] Clarke, I., Sandberg, O., Wiley, B. and Hong,
T. W.: Freenet: A Distributed Anonymous
Information Storage and Retrieval System,
http://freenetproject.org/freenet.pdf (1999).
[6] Ratnasamy, S., Francis, P., Handley, M., Karp, R. and
Shenker, S.: A Scalable Content-Addressable Net-
work, Proceedings of the 2001 conference on Appli-
cations, technologies, architectures, and protocols for
computer communications, ACM Press, pp. 161–172
(2001).
[7] Kawamura, T., Kinoshita, S., Sugahara, K. and
Kuwatani, T.: A Logic-based Framework for Mobile
Multi-Agent Systems, Proceedings of International
Conference on Integration of Knowledge Intensive
Multi-Agent Systems, pp. 754–759 (2003). Boston,
Massachusetts, USA.
[8] Ingalls, D., Kaehler, T., Maloney, J., Wallace, S. and
Kay, A.: Back to the Future: The Story of Squeak, A
Practical Smalltalk Written in Itself, Proceedings of
ACM Conference on Object-Oriented Programming,
Systems, Languages, and Applications, pp. 318–326
(1997).
[9] Winer, D.: XML-RPC Specification,
http://xmlrcp.com/spec.
[10] Wong, D., Paciorek, N., Walsh, T. and Dicelie, J.:
Concordia: An Infrastructure for Collaborating Mo-
bile Agents, Proceedings of the First International
Workshop on Mobile Agents, Vol. 1219, Springer-
Verlag, pp. 86–97 (1997).
[11] Lange, D. B. and Oshima, M.: Programming and
Deploying Java Mobile Agents with Aglets, Addison-
Wesley (1998).
[12] Tarau, P.: Inference and Computation Mobility with
Jinni, The Logic Programming Paradigm: a 25 Year
Perspective (Apt, K., Marek, V. and Truszczynski,
M.(eds.)), Springer, pp. 33–48 (1999).
[13] Satoh, I.: MobileSpaces: A Framework for Building
Adaptive Distributed Applications using a Hierarchi-
cal Mobile Agent System, Proceedings of IEEE Inter-
national Conference on Distributed Computing Sys-
tems, IEEE Press, pp. 161–168 (2000).
[14] Ng, W. S., Ooi, B. C., Tan, K.-L. and Zhou, A.:
PeerDB: A P2P-based System for Distributed Data
Sharing, Proceedings of the 19th International Con-
ference on Data Engineering (Dayal, U., Ramam-
ritham, K. and Vijayaraman, T. M.(eds.)), IEEE Com-
puter Society, pp. 633–644 (2003).
[15] Nejdl, W., Wolf, B., Qu, C., Decker, S., Sintek,
M., Naeve, A., Nilsson, M., Palm´er, M. and Risch,
T.: EDUTELLA: A P2P Networking Infrastructure
Based on RDF, Proceedings of the Eleventh Interna-
tional Conference on World Wide Web, ACM Press,
pp. 604–615 (2002).
877

More Related Content

What's hot

Human Machine Learning and Analysis
Human Machine Learning and AnalysisHuman Machine Learning and Analysis
Human Machine Learning and AnalysisEmil Lupu
 
A Comparative Study of Group Key Management in MANET
A Comparative Study of Group Key Management in MANETA Comparative Study of Group Key Management in MANET
A Comparative Study of Group Key Management in MANETIJERA Editor
 
network mining and representation learning
network mining and representation learningnetwork mining and representation learning
network mining and representation learningsun peiyuan
 
basics of computer network
basics of computer networkbasics of computer network
basics of computer networkProf Ansari
 
A Novel Energy Efficient and Administrator Based Secured Routing in MANET
A Novel Energy Efficient and Administrator Based Secured Routing in MANETA Novel Energy Efficient and Administrator Based Secured Routing in MANET
A Novel Energy Efficient and Administrator Based Secured Routing in MANETIJNSA Journal
 
Recommender system
Recommender systemRecommender system
Recommender systemSaiguru P.v
 
Ieeepro techno solutions ieee java project - oruta privacy-preserving public...
Ieeepro techno solutions  ieee java project - oruta privacy-preserving public...Ieeepro techno solutions  ieee java project - oruta privacy-preserving public...
Ieeepro techno solutions ieee java project - oruta privacy-preserving public...hemanthbbc
 
Ad hoc networks filter based addressing protocol
Ad hoc networks filter based addressing protocolAd hoc networks filter based addressing protocol
Ad hoc networks filter based addressing protocoleSAT Publishing House
 
DSR Routing Decisions for Mobile Ad Hoc Networks using Fuzzy Inference System
DSR Routing Decisions for Mobile Ad Hoc Networks using Fuzzy Inference SystemDSR Routing Decisions for Mobile Ad Hoc Networks using Fuzzy Inference System
DSR Routing Decisions for Mobile Ad Hoc Networks using Fuzzy Inference Systemcscpconf
 
CoryCookFinalProject535
CoryCookFinalProject535CoryCookFinalProject535
CoryCookFinalProject535Cory Cook
 
Pretext Knowledge Grids on Unstructured Data for Facilitating Online Education
Pretext Knowledge Grids on Unstructured Data for Facilitating  Online EducationPretext Knowledge Grids on Unstructured Data for Facilitating  Online Education
Pretext Knowledge Grids on Unstructured Data for Facilitating Online EducationIOSR Journals
 
A survey on trust based secure routing in manet
A survey on trust based secure routing in manetA survey on trust based secure routing in manet
A survey on trust based secure routing in manetcsandit
 
On the Choice of Models of Computation for Writing Executable Specificatoins ...
On the Choice of Models of Computation for Writing Executable Specificatoins ...On the Choice of Models of Computation for Writing Executable Specificatoins ...
On the Choice of Models of Computation for Writing Executable Specificatoins ...ijeukens
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA Aiman Hud
 

What's hot (16)

Human Machine Learning and Analysis
Human Machine Learning and AnalysisHuman Machine Learning and Analysis
Human Machine Learning and Analysis
 
A Comparative Study of Group Key Management in MANET
A Comparative Study of Group Key Management in MANETA Comparative Study of Group Key Management in MANET
A Comparative Study of Group Key Management in MANET
 
network mining and representation learning
network mining and representation learningnetwork mining and representation learning
network mining and representation learning
 
basics of computer network
basics of computer networkbasics of computer network
basics of computer network
 
A Novel Energy Efficient and Administrator Based Secured Routing in MANET
A Novel Energy Efficient and Administrator Based Secured Routing in MANETA Novel Energy Efficient and Administrator Based Secured Routing in MANET
A Novel Energy Efficient and Administrator Based Secured Routing in MANET
 
Recommender system
Recommender systemRecommender system
Recommender system
 
IJET-V3I2P3
IJET-V3I2P3IJET-V3I2P3
IJET-V3I2P3
 
Ieeepro techno solutions ieee java project - oruta privacy-preserving public...
Ieeepro techno solutions  ieee java project - oruta privacy-preserving public...Ieeepro techno solutions  ieee java project - oruta privacy-preserving public...
Ieeepro techno solutions ieee java project - oruta privacy-preserving public...
 
Ad hoc networks filter based addressing protocol
Ad hoc networks filter based addressing protocolAd hoc networks filter based addressing protocol
Ad hoc networks filter based addressing protocol
 
DSR Routing Decisions for Mobile Ad Hoc Networks using Fuzzy Inference System
DSR Routing Decisions for Mobile Ad Hoc Networks using Fuzzy Inference SystemDSR Routing Decisions for Mobile Ad Hoc Networks using Fuzzy Inference System
DSR Routing Decisions for Mobile Ad Hoc Networks using Fuzzy Inference System
 
CoryCookFinalProject535
CoryCookFinalProject535CoryCookFinalProject535
CoryCookFinalProject535
 
Pretext Knowledge Grids on Unstructured Data for Facilitating Online Education
Pretext Knowledge Grids on Unstructured Data for Facilitating  Online EducationPretext Knowledge Grids on Unstructured Data for Facilitating  Online Education
Pretext Knowledge Grids on Unstructured Data for Facilitating Online Education
 
A survey on trust based secure routing in manet
A survey on trust based secure routing in manetA survey on trust based secure routing in manet
A survey on trust based secure routing in manet
 
1757 1761
1757 17611757 1761
1757 1761
 
On the Choice of Models of Computation for Writing Executable Specificatoins ...
On the Choice of Models of Computation for Writing Executable Specificatoins ...On the Choice of Models of Computation for Writing Executable Specificatoins ...
On the Choice of Models of Computation for Writing Executable Specificatoins ...
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA
 

Similar to A MOBILE AGENT-BASED P2P E-LEARNING SYSTEM. Takao KAWAMURA & others

DISTRIBUTED E-LEARNING SYSTEM USING AN HYBRID P2P-BASED CONTENT ADDRESSABLE ...
DISTRIBUTED E-LEARNING SYSTEM USING AN  HYBRID P2P-BASED CONTENT ADDRESSABLE ...DISTRIBUTED E-LEARNING SYSTEM USING AN  HYBRID P2P-BASED CONTENT ADDRESSABLE ...
DISTRIBUTED E-LEARNING SYSTEM USING AN HYBRID P2P-BASED CONTENT ADDRESSABLE ...ijdpsjournal
 
A Model of Local Area Network Based Application for Inter-office Communication
A Model of Local Area Network Based Application for Inter-office CommunicationA Model of Local Area Network Based Application for Inter-office Communication
A Model of Local Area Network Based Application for Inter-office Communicationtheijes
 
Testing Vitality Ranking and Prediction in Social Networking Services With Dy...
Testing Vitality Ranking and Prediction in Social Networking Services With Dy...Testing Vitality Ranking and Prediction in Social Networking Services With Dy...
Testing Vitality Ranking and Prediction in Social Networking Services With Dy...reshma reshu
 
IRJET- Automatic Detection of Characteristics of Clothing using Image Process...
IRJET- Automatic Detection of Characteristics of Clothing using Image Process...IRJET- Automatic Detection of Characteristics of Clothing using Image Process...
IRJET- Automatic Detection of Characteristics of Clothing using Image Process...IRJET Journal
 
IRJET- Secure Scheme For Cloud-Based Multimedia Content Storage
IRJET-  	  Secure Scheme For Cloud-Based Multimedia Content StorageIRJET-  	  Secure Scheme For Cloud-Based Multimedia Content Storage
IRJET- Secure Scheme For Cloud-Based Multimedia Content StorageIRJET Journal
 
Final Year Project Report Example
Final Year Project Report ExampleFinal Year Project Report Example
Final Year Project Report ExampleMuhd Mu'izuddin
 
IRJET - Network Traffic Monitoring and Botnet Detection using K-ANN Algorithm
IRJET - Network Traffic Monitoring and Botnet Detection using K-ANN AlgorithmIRJET - Network Traffic Monitoring and Botnet Detection using K-ANN Algorithm
IRJET - Network Traffic Monitoring and Botnet Detection using K-ANN AlgorithmIRJET Journal
 
Crypto Mark Scheme for Fast Pollution Detection and Resistance over Networking
Crypto Mark Scheme for Fast Pollution Detection and Resistance over NetworkingCrypto Mark Scheme for Fast Pollution Detection and Resistance over Networking
Crypto Mark Scheme for Fast Pollution Detection and Resistance over NetworkingIRJET Journal
 
Rachit Mishra_stock prediction_report
Rachit Mishra_stock prediction_reportRachit Mishra_stock prediction_report
Rachit Mishra_stock prediction_reportRachit Mishra
 
Between Simulator and Prototype: Crossover Architecture for Testing and Demon...
Between Simulator and Prototype: Crossover Architecture for Testing and Demon...Between Simulator and Prototype: Crossover Architecture for Testing and Demon...
Between Simulator and Prototype: Crossover Architecture for Testing and Demon...Jaroslaw Domaszewicz
 
Towards a distributed framework to analyze multimodal data.pdf
Towards a distributed framework to analyze multimodal data.pdfTowards a distributed framework to analyze multimodal data.pdf
Towards a distributed framework to analyze multimodal data.pdfCarlosRodrigues517978
 
Trust management in p2 p systems
Trust management in p2 p systemsTrust management in p2 p systems
Trust management in p2 p systemseSAT Journals
 
CS8603_Notes_003-1_edubuzz360.pdf
CS8603_Notes_003-1_edubuzz360.pdfCS8603_Notes_003-1_edubuzz360.pdf
CS8603_Notes_003-1_edubuzz360.pdfKishaKiddo
 
PHASE II.pptx
PHASE II.pptxPHASE II.pptx
PHASE II.pptxMotiDiro1
 
Online eaxmination
Online eaxminationOnline eaxmination
Online eaxminationAditi_17
 
Availability Assessment of Software Systems Architecture Using Formal Models
Availability Assessment of Software Systems Architecture Using Formal ModelsAvailability Assessment of Software Systems Architecture Using Formal Models
Availability Assessment of Software Systems Architecture Using Formal ModelsEditor IJCATR
 

Similar to A MOBILE AGENT-BASED P2P E-LEARNING SYSTEM. Takao KAWAMURA & others (20)

DISTRIBUTED E-LEARNING SYSTEM USING AN HYBRID P2P-BASED CONTENT ADDRESSABLE ...
DISTRIBUTED E-LEARNING SYSTEM USING AN  HYBRID P2P-BASED CONTENT ADDRESSABLE ...DISTRIBUTED E-LEARNING SYSTEM USING AN  HYBRID P2P-BASED CONTENT ADDRESSABLE ...
DISTRIBUTED E-LEARNING SYSTEM USING AN HYBRID P2P-BASED CONTENT ADDRESSABLE ...
 
A Model of Local Area Network Based Application for Inter-office Communication
A Model of Local Area Network Based Application for Inter-office CommunicationA Model of Local Area Network Based Application for Inter-office Communication
A Model of Local Area Network Based Application for Inter-office Communication
 
Testing Vitality Ranking and Prediction in Social Networking Services With Dy...
Testing Vitality Ranking and Prediction in Social Networking Services With Dy...Testing Vitality Ranking and Prediction in Social Networking Services With Dy...
Testing Vitality Ranking and Prediction in Social Networking Services With Dy...
 
IRJET- Automatic Detection of Characteristics of Clothing using Image Process...
IRJET- Automatic Detection of Characteristics of Clothing using Image Process...IRJET- Automatic Detection of Characteristics of Clothing using Image Process...
IRJET- Automatic Detection of Characteristics of Clothing using Image Process...
 
Atva05
Atva05Atva05
Atva05
 
IRJET- Secure Scheme For Cloud-Based Multimedia Content Storage
IRJET-  	  Secure Scheme For Cloud-Based Multimedia Content StorageIRJET-  	  Secure Scheme For Cloud-Based Multimedia Content Storage
IRJET- Secure Scheme For Cloud-Based Multimedia Content Storage
 
Final Year Project Report Example
Final Year Project Report ExampleFinal Year Project Report Example
Final Year Project Report Example
 
IRJET - Network Traffic Monitoring and Botnet Detection using K-ANN Algorithm
IRJET - Network Traffic Monitoring and Botnet Detection using K-ANN AlgorithmIRJET - Network Traffic Monitoring and Botnet Detection using K-ANN Algorithm
IRJET - Network Traffic Monitoring and Botnet Detection using K-ANN Algorithm
 
Crypto Mark Scheme for Fast Pollution Detection and Resistance over Networking
Crypto Mark Scheme for Fast Pollution Detection and Resistance over NetworkingCrypto Mark Scheme for Fast Pollution Detection and Resistance over Networking
Crypto Mark Scheme for Fast Pollution Detection and Resistance over Networking
 
Rachit Mishra_stock prediction_report
Rachit Mishra_stock prediction_reportRachit Mishra_stock prediction_report
Rachit Mishra_stock prediction_report
 
Finald
FinaldFinald
Finald
 
Between Simulator and Prototype: Crossover Architecture for Testing and Demon...
Between Simulator and Prototype: Crossover Architecture for Testing and Demon...Between Simulator and Prototype: Crossover Architecture for Testing and Demon...
Between Simulator and Prototype: Crossover Architecture for Testing and Demon...
 
Towards a distributed framework to analyze multimodal data.pdf
Towards a distributed framework to analyze multimodal data.pdfTowards a distributed framework to analyze multimodal data.pdf
Towards a distributed framework to analyze multimodal data.pdf
 
Report_Internships
Report_InternshipsReport_Internships
Report_Internships
 
Trust management in p2 p systems
Trust management in p2 p systemsTrust management in p2 p systems
Trust management in p2 p systems
 
CS8603_Notes_003-1_edubuzz360.pdf
CS8603_Notes_003-1_edubuzz360.pdfCS8603_Notes_003-1_edubuzz360.pdf
CS8603_Notes_003-1_edubuzz360.pdf
 
PHASE II.pptx
PHASE II.pptxPHASE II.pptx
PHASE II.pptx
 
Online eaxmination
Online eaxminationOnline eaxmination
Online eaxmination
 
Availability Assessment of Software Systems Architecture Using Formal Models
Availability Assessment of Software Systems Architecture Using Formal ModelsAvailability Assessment of Software Systems Architecture Using Formal Models
Availability Assessment of Software Systems Architecture Using Formal Models
 
Uml examples
Uml examplesUml examples
Uml examples
 

More from eraser Juan José Calderón

Evaluación de t-MOOC universitario sobre competencias digitales docentes medi...
Evaluación de t-MOOC universitario sobre competencias digitales docentes medi...Evaluación de t-MOOC universitario sobre competencias digitales docentes medi...
Evaluación de t-MOOC universitario sobre competencias digitales docentes medi...eraser Juan José Calderón
 
Editorial of the JBBA Vol 4, Issue 1, May 2021. Naseem Naqvi,
Editorial of the JBBA Vol 4, Issue 1, May 2021. Naseem Naqvi, Editorial of the JBBA Vol 4, Issue 1, May 2021. Naseem Naqvi,
Editorial of the JBBA Vol 4, Issue 1, May 2021. Naseem Naqvi, eraser Juan José Calderón
 
REGULATION OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL LAYING DOWN HARMONIS...
REGULATION OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL LAYING DOWN HARMONIS...REGULATION OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL LAYING DOWN HARMONIS...
REGULATION OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL LAYING DOWN HARMONIS...eraser Juan José Calderón
 
Predicting Big Data Adoption in Companies With an Explanatory and Predictive ...
Predicting Big Data Adoption in Companies With an Explanatory and Predictive ...Predicting Big Data Adoption in Companies With an Explanatory and Predictive ...
Predicting Big Data Adoption in Companies With an Explanatory and Predictive ...eraser Juan José Calderón
 
Innovar con blockchain en las ciudades: Ideas para lograrlo, casos de uso y a...
Innovar con blockchain en las ciudades: Ideas para lograrlo, casos de uso y a...Innovar con blockchain en las ciudades: Ideas para lograrlo, casos de uso y a...
Innovar con blockchain en las ciudades: Ideas para lograrlo, casos de uso y a...eraser Juan José Calderón
 
Innovar con blockchain en las ciudades: Ideas para lograrlo, casos de uso y a...
Innovar con blockchain en las ciudades: Ideas para lograrlo, casos de uso y a...Innovar con blockchain en las ciudades: Ideas para lograrlo, casos de uso y a...
Innovar con blockchain en las ciudades: Ideas para lograrlo, casos de uso y a...eraser Juan José Calderón
 
Ética y Revolución Digital . revista Diecisiete nº 4. 2021
Ética y Revolución Digital . revista Diecisiete nº 4. 2021Ética y Revolución Digital . revista Diecisiete nº 4. 2021
Ética y Revolución Digital . revista Diecisiete nº 4. 2021eraser Juan José Calderón
 
#StopBigTechGoverningBigTech . More than 170 Civil Society Groups Worldwide O...
#StopBigTechGoverningBigTech . More than 170 Civil Society Groups Worldwide O...#StopBigTechGoverningBigTech . More than 170 Civil Society Groups Worldwide O...
#StopBigTechGoverningBigTech . More than 170 Civil Society Groups Worldwide O...eraser Juan José Calderón
 
PACTO POR LA CIENCIA Y LA INNOVACIÓN 8 de febrero de 2021
PACTO POR LA CIENCIA Y LA INNOVACIÓN 8 de febrero de 2021PACTO POR LA CIENCIA Y LA INNOVACIÓN 8 de febrero de 2021
PACTO POR LA CIENCIA Y LA INNOVACIÓN 8 de febrero de 2021eraser Juan José Calderón
 
Expert Panel of the European Blockchain Observatory and Forum
Expert Panel of the European Blockchain Observatory and ForumExpert Panel of the European Blockchain Observatory and Forum
Expert Panel of the European Blockchain Observatory and Forumeraser Juan José Calderón
 
Desigualdades educativas derivadas del COVID-19 desde una perspectiva feminis...
Desigualdades educativas derivadas del COVID-19 desde una perspectiva feminis...Desigualdades educativas derivadas del COVID-19 desde una perspectiva feminis...
Desigualdades educativas derivadas del COVID-19 desde una perspectiva feminis...eraser Juan José Calderón
 
"Experiencias booktuber: Más allá del libro y de la pantalla"
"Experiencias booktuber: Más allá del libro y de la pantalla""Experiencias booktuber: Más allá del libro y de la pantalla"
"Experiencias booktuber: Más allá del libro y de la pantalla"eraser Juan José Calderón
 
The impact of digital influencers on adolescent identity building.
The impact of digital influencers on adolescent identity building.The impact of digital influencers on adolescent identity building.
The impact of digital influencers on adolescent identity building.eraser Juan José Calderón
 
Open educational resources (OER) in the Spanish universities
Open educational resources (OER) in the Spanish universitiesOpen educational resources (OER) in the Spanish universities
Open educational resources (OER) in the Spanish universitieseraser Juan José Calderón
 
El modelo flipped classroom: un reto para una enseñanza centrada en el alumno
El modelo flipped classroom: un reto para una enseñanza centrada en el alumnoEl modelo flipped classroom: un reto para una enseñanza centrada en el alumno
El modelo flipped classroom: un reto para una enseñanza centrada en el alumnoeraser Juan José Calderón
 
Pensamiento propio e integración transdisciplinaria en la epistémica social. ...
Pensamiento propio e integración transdisciplinaria en la epistémica social. ...Pensamiento propio e integración transdisciplinaria en la epistémica social. ...
Pensamiento propio e integración transdisciplinaria en la epistémica social. ...eraser Juan José Calderón
 
Escuela de Robótica de Misiones. Un modelo de educación disruptiva.
Escuela de Robótica de Misiones. Un modelo de educación disruptiva.Escuela de Robótica de Misiones. Un modelo de educación disruptiva.
Escuela de Robótica de Misiones. Un modelo de educación disruptiva.eraser Juan José Calderón
 
La Universidad española Frente a la pandemia. Actuaciones de Crue Universidad...
La Universidad española Frente a la pandemia. Actuaciones de Crue Universidad...La Universidad española Frente a la pandemia. Actuaciones de Crue Universidad...
La Universidad española Frente a la pandemia. Actuaciones de Crue Universidad...eraser Juan José Calderón
 
Covid-19 and IoT: Some Perspectives on the Use of IoT Technologies in Prevent...
Covid-19 and IoT: Some Perspectives on the Use of IoT Technologies in Prevent...Covid-19 and IoT: Some Perspectives on the Use of IoT Technologies in Prevent...
Covid-19 and IoT: Some Perspectives on the Use of IoT Technologies in Prevent...eraser Juan José Calderón
 

More from eraser Juan José Calderón (20)

Evaluación de t-MOOC universitario sobre competencias digitales docentes medi...
Evaluación de t-MOOC universitario sobre competencias digitales docentes medi...Evaluación de t-MOOC universitario sobre competencias digitales docentes medi...
Evaluación de t-MOOC universitario sobre competencias digitales docentes medi...
 
Call for paper 71. Revista Comunicar
Call for paper 71. Revista ComunicarCall for paper 71. Revista Comunicar
Call for paper 71. Revista Comunicar
 
Editorial of the JBBA Vol 4, Issue 1, May 2021. Naseem Naqvi,
Editorial of the JBBA Vol 4, Issue 1, May 2021. Naseem Naqvi, Editorial of the JBBA Vol 4, Issue 1, May 2021. Naseem Naqvi,
Editorial of the JBBA Vol 4, Issue 1, May 2021. Naseem Naqvi,
 
REGULATION OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL LAYING DOWN HARMONIS...
REGULATION OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL LAYING DOWN HARMONIS...REGULATION OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL LAYING DOWN HARMONIS...
REGULATION OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL LAYING DOWN HARMONIS...
 
Predicting Big Data Adoption in Companies With an Explanatory and Predictive ...
Predicting Big Data Adoption in Companies With an Explanatory and Predictive ...Predicting Big Data Adoption in Companies With an Explanatory and Predictive ...
Predicting Big Data Adoption in Companies With an Explanatory and Predictive ...
 
Innovar con blockchain en las ciudades: Ideas para lograrlo, casos de uso y a...
Innovar con blockchain en las ciudades: Ideas para lograrlo, casos de uso y a...Innovar con blockchain en las ciudades: Ideas para lograrlo, casos de uso y a...
Innovar con blockchain en las ciudades: Ideas para lograrlo, casos de uso y a...
 
Innovar con blockchain en las ciudades: Ideas para lograrlo, casos de uso y a...
Innovar con blockchain en las ciudades: Ideas para lograrlo, casos de uso y a...Innovar con blockchain en las ciudades: Ideas para lograrlo, casos de uso y a...
Innovar con blockchain en las ciudades: Ideas para lograrlo, casos de uso y a...
 
Ética y Revolución Digital . revista Diecisiete nº 4. 2021
Ética y Revolución Digital . revista Diecisiete nº 4. 2021Ética y Revolución Digital . revista Diecisiete nº 4. 2021
Ética y Revolución Digital . revista Diecisiete nº 4. 2021
 
#StopBigTechGoverningBigTech . More than 170 Civil Society Groups Worldwide O...
#StopBigTechGoverningBigTech . More than 170 Civil Society Groups Worldwide O...#StopBigTechGoverningBigTech . More than 170 Civil Society Groups Worldwide O...
#StopBigTechGoverningBigTech . More than 170 Civil Society Groups Worldwide O...
 
PACTO POR LA CIENCIA Y LA INNOVACIÓN 8 de febrero de 2021
PACTO POR LA CIENCIA Y LA INNOVACIÓN 8 de febrero de 2021PACTO POR LA CIENCIA Y LA INNOVACIÓN 8 de febrero de 2021
PACTO POR LA CIENCIA Y LA INNOVACIÓN 8 de febrero de 2021
 
Expert Panel of the European Blockchain Observatory and Forum
Expert Panel of the European Blockchain Observatory and ForumExpert Panel of the European Blockchain Observatory and Forum
Expert Panel of the European Blockchain Observatory and Forum
 
Desigualdades educativas derivadas del COVID-19 desde una perspectiva feminis...
Desigualdades educativas derivadas del COVID-19 desde una perspectiva feminis...Desigualdades educativas derivadas del COVID-19 desde una perspectiva feminis...
Desigualdades educativas derivadas del COVID-19 desde una perspectiva feminis...
 
"Experiencias booktuber: Más allá del libro y de la pantalla"
"Experiencias booktuber: Más allá del libro y de la pantalla""Experiencias booktuber: Más allá del libro y de la pantalla"
"Experiencias booktuber: Más allá del libro y de la pantalla"
 
The impact of digital influencers on adolescent identity building.
The impact of digital influencers on adolescent identity building.The impact of digital influencers on adolescent identity building.
The impact of digital influencers on adolescent identity building.
 
Open educational resources (OER) in the Spanish universities
Open educational resources (OER) in the Spanish universitiesOpen educational resources (OER) in the Spanish universities
Open educational resources (OER) in the Spanish universities
 
El modelo flipped classroom: un reto para una enseñanza centrada en el alumno
El modelo flipped classroom: un reto para una enseñanza centrada en el alumnoEl modelo flipped classroom: un reto para una enseñanza centrada en el alumno
El modelo flipped classroom: un reto para una enseñanza centrada en el alumno
 
Pensamiento propio e integración transdisciplinaria en la epistémica social. ...
Pensamiento propio e integración transdisciplinaria en la epistémica social. ...Pensamiento propio e integración transdisciplinaria en la epistémica social. ...
Pensamiento propio e integración transdisciplinaria en la epistémica social. ...
 
Escuela de Robótica de Misiones. Un modelo de educación disruptiva.
Escuela de Robótica de Misiones. Un modelo de educación disruptiva.Escuela de Robótica de Misiones. Un modelo de educación disruptiva.
Escuela de Robótica de Misiones. Un modelo de educación disruptiva.
 
La Universidad española Frente a la pandemia. Actuaciones de Crue Universidad...
La Universidad española Frente a la pandemia. Actuaciones de Crue Universidad...La Universidad española Frente a la pandemia. Actuaciones de Crue Universidad...
La Universidad española Frente a la pandemia. Actuaciones de Crue Universidad...
 
Covid-19 and IoT: Some Perspectives on the Use of IoT Technologies in Prevent...
Covid-19 and IoT: Some Perspectives on the Use of IoT Technologies in Prevent...Covid-19 and IoT: Some Perspectives on the Use of IoT Technologies in Prevent...
Covid-19 and IoT: Some Perspectives on the Use of IoT Technologies in Prevent...
 

Recently uploaded

Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 

Recently uploaded (20)

Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 

A MOBILE AGENT-BASED P2P E-LEARNING SYSTEM. Takao KAWAMURA & others

  • 1. A MOBILE AGENT-BASED P2P E-LEARNING SYSTEM Takao KAWAMURA, Shin KINOSHITA and Kazunori SUGAHARA Department of Information and Knowledge Engineering Tottori University 4–101, Koyama-Minami Tottori, JAPAN {kawamura,kinosita,sugahara}@ike.tottori-u.ac.jp ABSTRACT In this paper, we present a novel framework for asyn- chronous WBT. The proposed system has two distinguish- ing features. Firstly, it is based on P2P architecture for scal- ability and robustness. Secondly, all contents in the sys- tem are not only data but also agents so that they can mark user’s answers, tell the correct answers, and show some ex- tra information without human instruction. We also present a prototype implementation of the proposed system on Ma- glog that is a Prolog-based framework for building mobile multi-agent systems we have developed. Performance sim- ulations demonstrate the effectiveness of the proposed sys- tem. KEY WORDS Distributed Software Systems and Applications, e- Learning, Mobile Agent, Peer-to-Peer 1 Introduction The term e-Learning covers a wide set of applications and processes, such as Web-based training (hereafter we ab- breviate as WBT), computer-based training, virtual class- rooms, and digital collaboration. We are concerned with asynchronous WBT that allows the learner to complete the WBT on his own time and schedule, without live interac- tion with the instructor. Although a large number of studies have been made on asynchronous WBT[1, 2], all of them are based on the client/server model. The client/server systems generally lack scalability and robustness. In the recent years, P2P re- search has grown exponentially. Although the current P2P systems are famous for file sharing, and the consequent le- gal problems, P2P systems are gradually proving to be a very promising area of research because they have potential for offering a decentralised, self-sustained, scalable, fault tolerant and symmetric network of computers providing an effective balancing of storage and bandwidth resources. In this paper, we present a novel framework for asyn- chronous WBT. The proposed system has two distinguish- ing features. Firstly, it is based on P2P architecture and ev- ery user’s computer plays the role of a client and a server. Namely, while a user uses the proposed e-Learning system, his/her computer (hereafter we refer to such a computer as a node) is a part of the system. It receives some number of contents from another node when it joins the system and has responsibility to send appropriate contents to request- ing nodes. Secondly, each content in the system is not only data but also an agent so that it can mark user’s answers, tell the correct answers, and show some extra information without human instruction. This paper is organised in 7 sections. We describe the supposed situation for the proposed system in Section 2. In Section 3, we describe our design goals. In Section 4, we describe the design of the proposed system and a prototype implementation of the system. In Section 5, we present performance simulations. In Section 6, we briefly review related work. Finally, in Section 7, we describe some con- cluding remarks. 2 Supposed Situation As mentioned in the previous section, we focus on asyn- chronous WBT, that is to say, a user can connect to the proposed e-Learning system anytime and anywhere he/she wants. Once connection is established, the user can obtain exercises one after another through specifying categories of the required exercises. User’s answers for each exercise are marked as correct or incorrect right away. Extra informa- tion may be provided for each answer, which can be viewed when the correct answer is shown. While a user uses the proposed e-Learning system, his/her computer is a part of the system. Namely, it receives some number of categories and exercises in them from an- other node when it joins the system and has responsibility to send appropriate exercises to requesting nodes. The important point to note is that the categories a node has are independent of the categories in which the node’s user are interested as shown in Figure 1. Figure 1 illustrates that user A’s request is forwarded at first to the neighbor node, next forwarded to the node which has the requested category. 3 Basic Concepts As mentioned above, the proposed system has two distin- guishing features. Firstly, it is based on P2P architecture. Secondly, each exercise is not only data but also an agent 439-073 873
  • 2. Network Physics I want to try an exercise of history! User A English History User B User C 1 2 Searching Message Migration of Exercise Agent 3 Node Node Node Figure 1. Proposed e-Learning system. so that it can mark user’s answers, tell the correct answers, and show some extra information about the exercise. In this section, we describe these features in detail. 3.1 P2P Aspect All exercises in the proposed system are classified into cat- egories such as “Mathematics / Expression / Equation”, “English / Grammar”, and “History / Rome”, etc. When the proposed system begins, one initial node has all categories in the system. When another node joins the system, it is received some number of categories from the initial node. The categories are distributed among all nodes in the system according as nodes join the system or leave the system. We would like to emphasize that in existing P2P- based file sharing systems such as Napster[3], Gnutella[4], and Freenet[5] each shared file is owned by a particular node. Accordingly, files are originally distributed among all nodes. On the other hand, the categories in the pro- posed system are originally concentrated. Consequently, when a new node joins the system, not only location infor- mation of a category but the category itself must be handed to the new node. Considering that, the P2P network of the proposed system can be constructed as a CAN[6]. A CAN has a virtual coordinate space that is used to store (key, value) pairs. To store a pair (K1, V1), key K1 is deterministically mapped onto a point P in the coordinate space using a uniform hash function. The corresponding (key, value) pair is then stored at the node that owns the zone within which the point P lies. In the proposed system, we let each category be a key and let a set of exercises belonging to the category be the corresponding value. 3.2 Mobile Agent Aspect Generally, in addition to service to show an exercise, a WBT server provides services to mark the user’s answers, tell the correct answers, and show some extra information about the exercise. Therefore, for the proposed system which can be considered a distributed WBT system, it is not enough that only exercises are distributed among all nodes. Functions to provide the above services also must be dis- tributed among all nodes. We adopt mobile agent technol- ogy to achieve this goal. Namely, an exercise is not only data but also an agent so that it can mark user’s answers, tell the correct answers, and show some extra information about the exercise. In addition, mobile agent technology is applied to re- alize the migration of categories, that is, each category is also an agent in the proposed system. 4 Design and Implementation We have implemented a prototype of the proposed system on Maglog that is a Prolog-based framework for building mobile multi-agent systems we have developed[7]. As shown in Figure 2, a node consists of the following agents and a user interface program. The components of a node are divided into two type, those that move to other node referred as mobile components in Figure 2, and those that keep their station referred as stational components in Figure 2. Node Agent There is one node agent on each node. It manages the zone information of a CAN and forwards messages to the category agents in the node. Category Agent Each category agent stands for a unit of a particular subject. It manages exercise agents in itself and sends them to the requesting node. Exercise Agent Each exercise agent has a question and functions to mark user’s answers, tell the correct an- swers, and show some extra information about the ex- ercise. These data are formatted in HTML. Interface Agent There is one interface agent on each node. It is an interface between the user interface pro- gram and other agents. The user interface program has been developed through extending Scamper which is a simple web browser runs in Squeak[8]. Agents communicate with other agents through ‘field’s provided by Maglog framework. A field is kind of a preemptive queue. Roughly speaking, the above mentioned four kinds of agents execute a message dispatch loop. Each message to an agent is queued into the field owned by the agent. The user interface program also communicates with the interface agent through a field via XML-RPC[9]. Table 1 shows a partial summary of message types. Figures 3, 4, 5, and 6 are screen-shots of the user in- terface program. Categories are classified into a hierarchi- cal tree structure, as shown in Figure 3. By clicking the right button of a mouse on a category, a user can obtain an 874
  • 3. Node UIP : User Interface Program IA : Interface Agent NA : Node Agent CA : Category Agent EA : Exercise Agent Mobile ComponentsMobile Components Stationary ComponentsStationary Components IA UIP ...EAEA EA EA CA CA ... ... NA Figure 2. Architecture of a node. Table 1. Partial summary of message types. Dispatcher Type Description Node join To join the system. Node leave To leave the system. Node update To update the neigh- bour’s zone information. Node request To get an exercise agent. Category add To add an exercise agent. Category go To go to another node. Category send To send an exercise agent. Category receive To receive an exercise agent. Exercise go To go to the requesting node. Exercise show To show a question. Exercise mark To mark a user’s answer. Exercise answer To show the correct an- swer. Exercise info To show the extra infor- mation. Interface retrieve To get an exercise agent. Interface release To let an exercise agent go home. Interface arrived To be notified the arrival of an exercise agent. exercise belonging to the category. After a while an appro- priate exercise agent comes from some node and the user can try the question as shown in Figure 4. The user can re- quire to mark his/her answer anytime by clicking the sub- mit button. Figure 5 shows an example result of marking. Figure 6s show the correct answers and extra information about the exercise that are shown by clicking the answer button. Figure 3. An exercise can be obtained by clicking the right button of a mouse on a category. Figure 4. An appropriate exercise agent comes from some node and is tried by the requested user. 5 Performance Simulation This section presents performance simulations obtained from a prototype implementation of the proposed system described in the previous section. The experimental environment consists of 8 PCs with Intel Pentium4 2.4GHz processor and 512MB of RAM, and all the PCs are running on GNU/Linux (kernel version is 2.2.26) operating system. The physical network layout is shown in Figure 7. We measured the searching latency in the experimen- tal environment under the conditions shown in Table 2. All 875
  • 4. Figure 5. User’s answers are marked as correct or incorrect by clicking the submit button. Figure 6. Correct answers and extra information are shown by clicking the answer button on the screen shown as Fig- ure 5. 100BASE-TX Switchng HUB Node Node NodeNode Node NodeNode Node Figure 7. Experimental environment. nodes send searching requests at the same time and exer- cises to be searched are selected randomly. We compared distributed and concentrated systems where these terms are defined as follows: Distributed System Each node has one category. Concentrated System One node has all categories and the rest nodes have no category. It must be noted that the distributed system represents the proposed system in which all categories have ideal distribu- tion. The concentrated system is equivalent to an ordinary WBT system. Table 2. Experimental Conditions. Number of Nodes 8 Number of Categories 8 Number of Exercises/Category 50 Searching Frequency [times/sec] 1 12 , 1 6 , 1 3 , 1 2 Simulations are carried out with the time interval of 600 seconds. Each Simulation is repeated 10 times and the average of those is reported in Figure 8. Naturally, the higher searching frequency is, the larger searching latency is. Figure 8 shows that searching latency grows rapid in the concentrated system, while it grows slowly in the dis- tributed system. In other words, the result suggests that the proposed e-Learning system has higher scalability than ordinary concentrated WBT systems have. 0 5000 10000 15000 20000 25000 0 0.1 0.2 0.3 0.4 0.5 0.6 AverageSearchingLatency[msec] Searching Frequency [times/sec] Concentrated System Distributed System Figure 8. Comparison of concentrated and distributed sys- tems in searching latency. 6 Related Works A great deal of effort has been made on agent-based systems[10, 11, 12, 13]. However, these technologies pro- vide support for agent collaboration and communication but lack support for P2P technology. Therefore, there are 876
  • 5. few agent-based P2P applications. PeerDB[14] is one of them, however agent technology is only used to assist query processing while in the proposed e-Learning system it is used not only for interactiveness but also for migration of the functionality of the system. Edutella is P2P network for exchanging informa- tion about learning objects[15]. Edutella is based on RDF(Resource Description Framework), which is a frame- work for representing information in the Web. Conse- quently, Edutella does not intend to receive user’s response. In contrast, that is one of main goal of the proposed system and it is achieved through agent technology. 7 Conclusion Since existing asynchronous WBT systems are based on the client/server model, they have problems of scalability and robustness. The proposed e-Learning system solves these problems in decentralised manner through both P2P technology and mobile agent technology. Performance simulations suggest that the proposed e-Learning system has higher scalability than ordinary concentrated WBT sys- tems have. The expansion to provide popular functions of ordi- nary concentrated WBT systems for communication be- tween the instructor and the learners and among the learn- ers by means of email, BBS (Bulletin Board System) and ‘Chat’, in decentralised manner, is left for future work. References [1] Helic, D., Krottmaier, H., Maurer, H. and Scerbakov, N.: Implementing Project-Based Learning in WBT Systems, World Conference on E-Learning in Cor- porate, Government, Healthcare, and Higher Educa- tion, pp. 2189–2196 (2003). [2] Homma, H. and Aoki, Y.: Creation of WBT Server on Digital Signal Processing, Proceedings of 4th In- ternational Conference on Information Technology Based Higher Education and Training (2003). Mar- rakech, Morocco. [3] Napster: http://www.napster.com/. [4] Gnutella: http://welcome.to/gnutella/. [5] Clarke, I., Sandberg, O., Wiley, B. and Hong, T. W.: Freenet: A Distributed Anonymous Information Storage and Retrieval System, http://freenetproject.org/freenet.pdf (1999). [6] Ratnasamy, S., Francis, P., Handley, M., Karp, R. and Shenker, S.: A Scalable Content-Addressable Net- work, Proceedings of the 2001 conference on Appli- cations, technologies, architectures, and protocols for computer communications, ACM Press, pp. 161–172 (2001). [7] Kawamura, T., Kinoshita, S., Sugahara, K. and Kuwatani, T.: A Logic-based Framework for Mobile Multi-Agent Systems, Proceedings of International Conference on Integration of Knowledge Intensive Multi-Agent Systems, pp. 754–759 (2003). Boston, Massachusetts, USA. [8] Ingalls, D., Kaehler, T., Maloney, J., Wallace, S. and Kay, A.: Back to the Future: The Story of Squeak, A Practical Smalltalk Written in Itself, Proceedings of ACM Conference on Object-Oriented Programming, Systems, Languages, and Applications, pp. 318–326 (1997). [9] Winer, D.: XML-RPC Specification, http://xmlrcp.com/spec. [10] Wong, D., Paciorek, N., Walsh, T. and Dicelie, J.: Concordia: An Infrastructure for Collaborating Mo- bile Agents, Proceedings of the First International Workshop on Mobile Agents, Vol. 1219, Springer- Verlag, pp. 86–97 (1997). [11] Lange, D. B. and Oshima, M.: Programming and Deploying Java Mobile Agents with Aglets, Addison- Wesley (1998). [12] Tarau, P.: Inference and Computation Mobility with Jinni, The Logic Programming Paradigm: a 25 Year Perspective (Apt, K., Marek, V. and Truszczynski, M.(eds.)), Springer, pp. 33–48 (1999). [13] Satoh, I.: MobileSpaces: A Framework for Building Adaptive Distributed Applications using a Hierarchi- cal Mobile Agent System, Proceedings of IEEE Inter- national Conference on Distributed Computing Sys- tems, IEEE Press, pp. 161–168 (2000). [14] Ng, W. S., Ooi, B. C., Tan, K.-L. and Zhou, A.: PeerDB: A P2P-based System for Distributed Data Sharing, Proceedings of the 19th International Con- ference on Data Engineering (Dayal, U., Ramam- ritham, K. and Vijayaraman, T. M.(eds.)), IEEE Com- puter Society, pp. 633–644 (2003). [15] Nejdl, W., Wolf, B., Qu, C., Decker, S., Sintek, M., Naeve, A., Nilsson, M., Palm´er, M. and Risch, T.: EDUTELLA: A P2P Networking Infrastructure Based on RDF, Proceedings of the Eleventh Interna- tional Conference on World Wide Web, ACM Press, pp. 604–615 (2002). 877