SlideShare a Scribd company logo
1 of 20
EDP
Introduction
K i t a w A .
Introduction
• Event-driven programming is a programming paradigm in
which the flow of the program is determined by events
• Event is an action or occurrence detected by a program;
and originates from mainly two sources:
• Users:
• mouse clicks, key presses
• Another programs:
• messages from other programs or threads
• Event-driven program is designed to react such events
Introduction
• In an event-driven application, there is generally a main
loop that listens for events, and triggers a callback
function when one of those events is detected
• A callback function, also called event handler, is a function
that is invoked when an event occurs
Initialization
Wait for events
Exit or
crash?
Call event
handler
Event
Handler
Stop
Start
Y N
Introduction
• Event-driven programming is the dominant paradigm used in
graphical user interfaces (GUIs)
• A user interface is a system by which people (users) interact
with the computer
• There are two main types of user interfaces:
• Text-Based User Interface or Command-Line Interface (CLI)
• Graphical User Interface (GUI)
Introduction
• Command Line Interface - CLI
• This is a text only interface, which only requires input from
the keyboard (usually referred to as “entering a command”)
• Typically, Enter key is pressed at the end of a command, after
which the computer will receive, parse and execute that
command
• The output of the command will be returned back to the
terminal as text lines
• This interface relies primarily on the keyboard
Introduction
• Command Line Interface - CLI
• The main advantages of a CLI are:
• users only need to utilize the keyboard and may need to
execute only few commands to complete the task
• a computer that is only using the command line takes a lot
less of the computers resources
• The main disadvantages of a CLI are:
• difficult for new users to learn
• relies heavily on recall rather than recognition
• navigation is often more difficult
Introduction
• Graphical User Interface - GUI
• It is a type of interface that allows users to communicate with
applications in the form of images/animations/icons as
opposed to text
• This interface presents the user with the information/actions
through graphical objects (i.e. GUI Controls or Widgets)
• Both mouse and keyboard can be used for the interaction
• The user performs actions by directly manipulating graphical
objects on the screen
Introduction
• Graphical User Interface - GUI
• The main advantages of a GUI are:
• less expert knowledge is required to use it (more user friendly)
• easier to navigate
• The main disadvantages of a GUI are:
• consumes system resources
• slower compared to CLI
What is .NET?
• .NET is a developer platform made up of tools, programming
languages, and libraries for building different types of
applications
• It is created by Microsoft
• Its applications are multi-platform applications
• It has been designed in such a way that it can be used from
any of the following languages: C#, C++, Visual Basic, etc
• It consists of an enormous library of codes used by the client
languages such as C# using object-oriented programming
(OOP) techniques
What is .NET?
Common Language Runtime
Framework Class Library
ADO.NET
WinForms
Common Language Specification, Common Type System
C#
ASP.NET WPF
Visual Basic C++
.NET
Framework
Common Language Runtime
• The CLR is responsible for maintaining the execution
of all applications developed using the .NET library
• It provides various services to managed code:
• Compilation and execution
• Integrating software components written in different .NET
languages,
• Garbage collection, and more.
Common Language Runtime
• Managed code is compiled into machine-specific
instructions in the following steps:
• First, the code is compiled into Microsoft Intermediate
Language (MSIL)
• When the app executes, another compiler (known as the
just-in-time compiler or JIT compiler) in the CLR translates
the MSIL in into machine-language code (for a particular
platform)
• The machine-language code executes on that platform
Common Language Runtime
• The Framework provides a high level of language
interoperability
• Because software components written in different .NET
languages (such as C# and Visual Basic) are all compiled into
MSIL, the components can be combined to create a single
unified program
• Thus, MSIL allows the .NET Framework to be language
independent
Framework Class Library
• The .NET framework class library is a library of classes and
interfaces that provide access to system functionality
• It is the foundation on which .NET Framework applications are
built
• The library is categorized into a number of namespaces
• The System.Windows namespaces contain types used in
Windows Presentation Foundation (WPF) applications,
• System.Windows.Forms and its child namespaces are used for
developing Windows Forms applications.
ADO.NET
• ADO.NET provides consistent access to data sources such as
SQL Server and XML
• Applications can use ADO.NET to connect to these data
sources and perform CRUD operations:
• Create,
• Read,
• Update and
• Delete data
System.Windows (WPF)
• System.Windows provides an object-oriented set of classes
that enable you to develop rich Windows applications
• With this module and some additional code you can:
• design UI
• read information from the user
• respond to the information provided
• manipulate data from external sources (i.e. files and
databases)
Common Type System
• The Common Type System (CTS) standardizes the data types
of all programming languages under the umbrella of .NET to a
common data type for easy and smooth communication
C# Visual Basic
System.Int32
Integer
int
Common Language Specification
• CLS is a set of basic language features that .NET Languages
needed to develop Applications and Services , which are
compatible with the .NET Framework.
• When there is a situation to communicate Objects written in
different .NET Complaint languages , those objects must
expose the features that are common to all the languages
• For example, one rule is that you cannot use multiple inheritance within
.NET Framework. As you may know C++ supports multiple inheritance
but; that’s not allowed to use such a C++ code within C# because it
doesn’t supports multiple inheritance
• Another rule is that you cannot have members with the same name but
different cases i.e. you cannot have add() and Add() methods. This easily
works in C# because it is case-sensitive but because VB is not case
sensitive, it’s not possible to use such a code
.NET Implementations
• Three implementations:
1. .NET Framework is the original implementation of .NET. It supports
running websites, services, desktop apps, and more on Windows
2. .NET Core is a cross-platform implementation for running websites,
services, and console apps on Windows, Linux, and macOS. This
implementation is open source on GitHub
3. Xamarin/Mono is a .NET implementation for running apps on all the
major mobile operating systems, including iOS and Android
EDP
END
T h a n k y o u !
Kitaw A.

More Related Content

Similar to Introduction.pptx the event driven course

Dotnet framework
Dotnet frameworkDotnet framework
Dotnet frameworkNitu Pandey
 
Learn the java basic programming with example and syntaxchapter1-part-b.pptx
Learn the java basic programming with example and syntaxchapter1-part-b.pptxLearn the java basic programming with example and syntaxchapter1-part-b.pptx
Learn the java basic programming with example and syntaxchapter1-part-b.pptxGaytriMate
 
Modified.net overview
Modified.net overviewModified.net overview
Modified.net overviewFaisal Aziz
 
Unit 2 computer software
Unit 2 computer softwareUnit 2 computer software
Unit 2 computer softwareHardik Patel
 
.net Based Component Technologies
.net Based Component Technologies.net Based Component Technologies
.net Based Component Technologiesprakashk453625
 
.Net overview
.Net overview.Net overview
.Net overviewmadydud
 
.Net overview|Introduction Of .net
.Net overview|Introduction Of .net.Net overview|Introduction Of .net
.Net overview|Introduction Of .netpinky singh
 
Tech presentation (part 1)
Tech presentation (part 1)Tech presentation (part 1)
Tech presentation (part 1)Abhijit Roy
 
.Net framework
.Net framework.Net framework
.Net frameworksanya6900
 
Vb.net session 01
Vb.net session 01Vb.net session 01
Vb.net session 01Niit Care
 

Similar to Introduction.pptx the event driven course (20)

Dotnet framework
Dotnet frameworkDotnet framework
Dotnet framework
 
Asp.net new
Asp.net newAsp.net new
Asp.net new
 
Learn the java basic programming with example and syntaxchapter1-part-b.pptx
Learn the java basic programming with example and syntaxchapter1-part-b.pptxLearn the java basic programming with example and syntaxchapter1-part-b.pptx
Learn the java basic programming with example and syntaxchapter1-part-b.pptx
 
Modified.net overview
Modified.net overviewModified.net overview
Modified.net overview
 
C# chap 2
C# chap 2C# chap 2
C# chap 2
 
Unit 2 computer software
Unit 2 computer softwareUnit 2 computer software
Unit 2 computer software
 
Introduction
IntroductionIntroduction
Introduction
 
.net Based Component Technologies
.net Based Component Technologies.net Based Component Technologies
.net Based Component Technologies
 
Introduction to .NET Framework
Introduction to .NET FrameworkIntroduction to .NET Framework
Introduction to .NET Framework
 
.Net overview
.Net overview.Net overview
.Net overview
 
.Net overview|Introduction Of .net
.Net overview|Introduction Of .net.Net overview|Introduction Of .net
.Net overview|Introduction Of .net
 
.NET Framework
.NET Framework.NET Framework
.NET Framework
 
.Net Introduction
.Net Introduction.Net Introduction
.Net Introduction
 
Tech presentation (part 1)
Tech presentation (part 1)Tech presentation (part 1)
Tech presentation (part 1)
 
E.s unit 6
E.s unit 6E.s unit 6
E.s unit 6
 
.Net framework
.Net framework.Net framework
.Net framework
 
NETOverview1ppt.pptx
NETOverview1ppt.pptxNETOverview1ppt.pptx
NETOverview1ppt.pptx
 
NETOverview1.ppt
NETOverview1.pptNETOverview1.ppt
NETOverview1.ppt
 
Vb.net session 01
Vb.net session 01Vb.net session 01
Vb.net session 01
 
VB IMPORTANT QUESTION
VB IMPORTANT QUESTIONVB IMPORTANT QUESTION
VB IMPORTANT QUESTION
 

Recently uploaded

Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
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
 
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
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
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
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
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
 
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
 
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
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 

Recently uploaded (20)

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
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
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
 
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...
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).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...
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
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
 
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
 
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
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
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
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 

Introduction.pptx the event driven course

  • 2. Introduction • Event-driven programming is a programming paradigm in which the flow of the program is determined by events • Event is an action or occurrence detected by a program; and originates from mainly two sources: • Users: • mouse clicks, key presses • Another programs: • messages from other programs or threads • Event-driven program is designed to react such events
  • 3. Introduction • In an event-driven application, there is generally a main loop that listens for events, and triggers a callback function when one of those events is detected • A callback function, also called event handler, is a function that is invoked when an event occurs Initialization Wait for events Exit or crash? Call event handler Event Handler Stop Start Y N
  • 4. Introduction • Event-driven programming is the dominant paradigm used in graphical user interfaces (GUIs) • A user interface is a system by which people (users) interact with the computer • There are two main types of user interfaces: • Text-Based User Interface or Command-Line Interface (CLI) • Graphical User Interface (GUI)
  • 5. Introduction • Command Line Interface - CLI • This is a text only interface, which only requires input from the keyboard (usually referred to as “entering a command”) • Typically, Enter key is pressed at the end of a command, after which the computer will receive, parse and execute that command • The output of the command will be returned back to the terminal as text lines • This interface relies primarily on the keyboard
  • 6. Introduction • Command Line Interface - CLI • The main advantages of a CLI are: • users only need to utilize the keyboard and may need to execute only few commands to complete the task • a computer that is only using the command line takes a lot less of the computers resources • The main disadvantages of a CLI are: • difficult for new users to learn • relies heavily on recall rather than recognition • navigation is often more difficult
  • 7. Introduction • Graphical User Interface - GUI • It is a type of interface that allows users to communicate with applications in the form of images/animations/icons as opposed to text • This interface presents the user with the information/actions through graphical objects (i.e. GUI Controls or Widgets) • Both mouse and keyboard can be used for the interaction • The user performs actions by directly manipulating graphical objects on the screen
  • 8. Introduction • Graphical User Interface - GUI • The main advantages of a GUI are: • less expert knowledge is required to use it (more user friendly) • easier to navigate • The main disadvantages of a GUI are: • consumes system resources • slower compared to CLI
  • 9. What is .NET? • .NET is a developer platform made up of tools, programming languages, and libraries for building different types of applications • It is created by Microsoft • Its applications are multi-platform applications • It has been designed in such a way that it can be used from any of the following languages: C#, C++, Visual Basic, etc • It consists of an enormous library of codes used by the client languages such as C# using object-oriented programming (OOP) techniques
  • 10. What is .NET? Common Language Runtime Framework Class Library ADO.NET WinForms Common Language Specification, Common Type System C# ASP.NET WPF Visual Basic C++ .NET Framework
  • 11. Common Language Runtime • The CLR is responsible for maintaining the execution of all applications developed using the .NET library • It provides various services to managed code: • Compilation and execution • Integrating software components written in different .NET languages, • Garbage collection, and more.
  • 12. Common Language Runtime • Managed code is compiled into machine-specific instructions in the following steps: • First, the code is compiled into Microsoft Intermediate Language (MSIL) • When the app executes, another compiler (known as the just-in-time compiler or JIT compiler) in the CLR translates the MSIL in into machine-language code (for a particular platform) • The machine-language code executes on that platform
  • 13. Common Language Runtime • The Framework provides a high level of language interoperability • Because software components written in different .NET languages (such as C# and Visual Basic) are all compiled into MSIL, the components can be combined to create a single unified program • Thus, MSIL allows the .NET Framework to be language independent
  • 14. Framework Class Library • The .NET framework class library is a library of classes and interfaces that provide access to system functionality • It is the foundation on which .NET Framework applications are built • The library is categorized into a number of namespaces • The System.Windows namespaces contain types used in Windows Presentation Foundation (WPF) applications, • System.Windows.Forms and its child namespaces are used for developing Windows Forms applications.
  • 15. ADO.NET • ADO.NET provides consistent access to data sources such as SQL Server and XML • Applications can use ADO.NET to connect to these data sources and perform CRUD operations: • Create, • Read, • Update and • Delete data
  • 16. System.Windows (WPF) • System.Windows provides an object-oriented set of classes that enable you to develop rich Windows applications • With this module and some additional code you can: • design UI • read information from the user • respond to the information provided • manipulate data from external sources (i.e. files and databases)
  • 17. Common Type System • The Common Type System (CTS) standardizes the data types of all programming languages under the umbrella of .NET to a common data type for easy and smooth communication C# Visual Basic System.Int32 Integer int
  • 18. Common Language Specification • CLS is a set of basic language features that .NET Languages needed to develop Applications and Services , which are compatible with the .NET Framework. • When there is a situation to communicate Objects written in different .NET Complaint languages , those objects must expose the features that are common to all the languages • For example, one rule is that you cannot use multiple inheritance within .NET Framework. As you may know C++ supports multiple inheritance but; that’s not allowed to use such a C++ code within C# because it doesn’t supports multiple inheritance • Another rule is that you cannot have members with the same name but different cases i.e. you cannot have add() and Add() methods. This easily works in C# because it is case-sensitive but because VB is not case sensitive, it’s not possible to use such a code
  • 19. .NET Implementations • Three implementations: 1. .NET Framework is the original implementation of .NET. It supports running websites, services, desktop apps, and more on Windows 2. .NET Core is a cross-platform implementation for running websites, services, and console apps on Windows, Linux, and macOS. This implementation is open source on GitHub 3. Xamarin/Mono is a .NET implementation for running apps on all the major mobile operating systems, including iOS and Android
  • 20. EDP END T h a n k y o u ! Kitaw A.