SlideShare a Scribd company logo
Presentation
                  on
             Major Project

Submitted by:
Mohit Singh
Roll no: 104507
M.Tech 2nd Year
Student Oriented Cloud Computing
                and
    Android Based Application
                for
  lean mobile computing Systems
Objective
    The main objective of the project is to develop a Cloud
     Computing Application for Java program creation,
     compilation and execution on lean mobile computing
     systems like smart phones, ipads and netbooks.
    Setup a server and deploy the application on the cloud to
     test it across the range of lean mobile computing systems.
    Develop an Android based application for Java program
     development and using a cloud computing facility to
     execute the developed Java programs.
    Develop Android based application for students.
Motivation behind Project
        The next generation of open operating systems
 won’t be on desktops or mainframes but on the small
 mobile devices we carry every day. The openness of
 these new environments will lead to new applications and
 markets and will enable greater integration.
Aakash (Tablet)
Aakash world's cheapest internet device was
conceived under the Human Resources and
Development Ministry's National Mission
on Education through Information and
Communication Technology (NME-ICT) to
provide students a device that could be used
as an EBook reader, to access online
streaming course material and web based
research
But there are no applications which can
enable the students to develop and execute
programs using these tablets.
Cloud Computing
…
Cloud         computing
provides computation,
software, data access,
and storage services
that do not require end-
user knowledge of the
physical location and
configuration of the
system that delivers the
services.
…
   Cloud Computing is a general term used to describe a new
    class of network based computing that takes place over the
    Internet, basically a step on from Utility.
   In other words, this is a collection/group of integrated and
    networked hardware, software and Internet infrastructure
    (called a platform).
   Using the Internet for communication and transport provides
    hardware, software and networking services to clients.
   These platforms hide the complexity and details of the
    underlying infrastructure from users and applications by
    providing very simple graphical interface or API (Applications
    Programming Interface).
…
   In addition, the platform provides on demand services, that
    are always on, anywhere, anytime and any place.
   Pay for use and as needed, elastic (scale up and down in
    capacity and functionalities).
   The hardware and software services are available to the
    general public, enterprises, corporations and businesses
    markets.
Cloud Summary
   Cloud computing is an umbrella term used to refer to Internet
    based development and services.
   A number of characteristics define cloud data, applications
    services and infrastructure:
    ◦ Remotely hosted: Services or data are hosted on remote
      infrastructure.
    ◦ Ubiquitous: Services or data are available from anywhere.
    ◦ Commodified: The result is a utility computing model similar to
      traditional that of traditional utilities, like gas and electricity - you
      pay for what you would want!
Cloud Architecture
Software as a service (SaaS)
   Software as a service , sometimes referred to as "on-demand
    software," is a software delivery model in which software and
    its associated data are hosted centrally (typically in the
    (Internet) cloud) and are typically accessed by users using a
    thin client, normally using a web browser over the Internet.
   SaaS has become a common delivery model for most business
    applications, including accounting, collaboration, customer
    relationship management (CRM), enterprise resource planning
    (ERP), invoicing, human resource management (HRM),
    content management (CM) and service desk management.
Platform as a service (PaaS)
   Platform as a service (PaaS) is the delivery of a computing
    platform and solution stack as a service.
   PaaS offerings facilitate deployment of applications without
    the cost and complexity of buying and managing the
    underlying hardware and software and provisioning hosting
    capabilities.
   PaaS providing all of the facilities required to support the
    complete life cycle of building and delivering web applications
    and services entirely available from the Internet
Infrastructure as a service" (IaaS)
   Cloud infrastructure services, also known as “Infrastructure as
    a service" (IaaS), deliver computer infrastructure – typically a
    platform virtualization environment – as a service, along with
    raw (block) storage and networking.
   Rather than purchasing servers, software, data-center space or
    network equipment, clients instead buy those resources as a
    fully outsourced service.
   Suppliers typically bill such services on a utility computing
    basis; the amount of resources consumed (and therefore the
    cost) will typically reflect the level of activity.[
Cloud Storage
   Several large Web companies (such as Amazon and Google)
    are now exploiting the fact that they have data storage
    capacity that can be hired out to others.
   This approach, known as cloud storage allows data stored
    remotely to be temporarily cached on desktop computers,
    mobile phones or other Internet-linked devices.
   Amazon’s Elastic Compute Cloud (EC2) and Simple Storage
    Solution (S3) are well known examples.
Advantages of Cloud Computing
   Lower computer costs
   Improved performance
   Reduced software costs
   Instant software updates
   Improved document format compatibility.
   Unlimited storage capacity
   Increased data reliability
   Universal document access
   Latest version availability
   Easier group collaboration
   Device independence
Disadvantages of Cloud Computing
   Requires a constant Internet connection
   Does not work well with low-speed connections
   Can be slow
   Features might be limited
   Stored data might not be secure
   Stored data can be lost
   HPC Systems
   General Concerns
Android


  Android is a software
  stack for mobile
  devices that includes
  an operating system,
  middleware and key
  applications.
About Android and its features
   Android is an operating system based on Linux with a Java
    programming interface.
    It provides tools, e.g. a compiler, debugger and a device
    emulator as well as its own Java Virtual machine (Dalvik
    Virtual Machine - DVM).
   Android is created by the Open Handset Alliance which is
    lead by Google.
     Android uses a special virtual machine, e.g. the Dalvik
    Virtual Machine. Dalvik uses special bytecode. Therefore
    you cannot run standard Java bytecode on Android.
   Android provides a tool "dx" which allows converting Java
    Class files into "dex" (Dalvik Executable) files.
…
   Android applications are packed into an .apk (Android
    Package) file by the program "aapt" (Android Asset
    Packaging Tool) To simplify development Google
    provides the Android Development Tools (ADT) for
    Eclipse.
   The ADT performs automatically the conversion from
    class to dex files and creates the apk during deployment.
…
   Android supports 2-D and 3-D graphics using the
    OpenGL libraries and supports data storage in a
    SQLite database.
   Every Android applications runs in its own process and
    under its own userid which is generated automatically
    by the Android system during deployment.
   Therefore the application is isolated from other
    running applications and a misbehaving application
    cannot easily harm other Android applications.
Features


   Open
   Breaking down Boundaries
   All applications are equal
   Fast & Easy development
Android Framework and Tools


          Android Tools include SDK, ADT for eclipse
   integration support and an emulator.

        Let’s discuss them one by one in brief:
Introduction to Android SDK and ADT
    for Eclipse
 The Android SDK archive initially contains only the basic SDK tools. It
  does not contain an Android platform or any third-party libraries. In fact, it
  doesn't even have all the tools you need to develop an application.
 In order to start developing applications, you must install the Platform-tools
  and at least one version of the Android platform, using the SDK Manager.
  Platform-tools contains build tools that are periodically updated to support
  new features in the Android platform (which is why they are separate from
  basic SDK tools), including adb, dexdump, and others.
 To install Platform-tools, Android platforms and other add-ons, you must
  have an Internet connection, so if you plan to use the SDK while offline,
  please make sure to download the necessary components while online. To
  start the SDK Manager, please execute the program "SDK Manager.exe".
  From the command-line you can also directly trigger an update by
  Executing:
         toolsAndroid.bat update sdk
Dalvik Virtual Machine
 The Dalvik virtual machine is simple Java interpreter machine,
  completely optimized for Android platform and which is developed
  to run on low-end memory mobile devices.
 One of the prominent aspects in Dalvik is its capability to run along
  an application compilation enhancing the runtime performance of
  the applications.
 Dalvik is not exactly, a Java machine, because Dalvik could not read
  Java code, but consists its own byte code called “dex” and so the
  executable files compacted using Dalvik holds the file type name
  '.dex'.
 Google states that the credit for Androids successful development
  goes to Dalvik VM, because this type of virtual machine, delivers a
  good performance over various stages of an application runtime
  environment, conserving more battery-power during long run of an
  application.
…
Android Architecture
Building Android Application
…
Components of Android Application

   Activity
   Views
   Services
   Content Provider
   Intents
   Broadcast Receiver
…
…
Progress Track

Learnt   program development for Android and Cloud
Computing.
Linking Android SDK and ADT plugin with Eclipse
developing Android programs and debugging it with both
Emulator and Android smart phone.
Presently designing the GUI and the other components of the
above mentioned application.
References
   http://en.wikipedia.org/wiki/Cloud_computing
   http://www.thinkgrid.com/docs/computing-whitepaper.pdf
   http://www.awsug.com/wp-content/uploads/2008/10/saas_and_clo
   http://acet.rdg.ac.uk/~mab/Talks/Clouds-La-Coruna09/Talk.ppt
   http://developer.android.com/guide/index.html
   http://en.wikipedia.org/wiki/Android
   http://developer.android.com/resources/tutorials/hello-world.html
cloud computing and android
Ad

More Related Content

What's hot (20)

5gtechnology 121103044412-phpapp02 (2)
5gtechnology 121103044412-phpapp02 (2)5gtechnology 121103044412-phpapp02 (2)
5gtechnology 121103044412-phpapp02 (2)
Dawood Aqlan
 
4g wireless technology
4g wireless technology 4g wireless technology
4g wireless technology
hardik_khengar
 
5g technology ppt
5g technology ppt5g technology ppt
5g technology ppt
DANISHAMIN950
 
5g wireless
5g wireless5g wireless
5g wireless
amangupta919
 
Zigbee
ZigbeeZigbee
Zigbee
Shoaib A Siddiqui
 
Introduction to 6G, prepare now training
Introduction to 6G, prepare now trainingIntroduction to 6G, prepare now training
Introduction to 6G, prepare now training
Tonex
 
FOG COMPUTING
FOG COMPUTINGFOG COMPUTING
FOG COMPUTING
Saisharan Amaravadhi
 
Zigbee technology
Zigbee technologyZigbee technology
Zigbee technology
Srujana Aryasomayajula
 
Challenges & issues in way to 6g wireless communication
Challenges & issues in way to 6g wireless communicationChallenges & issues in way to 6g wireless communication
Challenges & issues in way to 6g wireless communication
Nikhil Soni
 
skype-peer to peer protocol
skype-peer to peer protocolskype-peer to peer protocol
skype-peer to peer protocol
DhwaniHingorani
 
Fog computing
Fog computingFog computing
Fog computing
Ayush Chaurasia
 
5G applications
5G applications5G applications
5G applications
Udara Sandaruwan
 
PIXEOM
PIXEOMPIXEOM
PIXEOM
Hyn Michael
 
Ppt presentation
Ppt presentationPpt presentation
Ppt presentation
vishal4799
 
Building Blocks for IoT Devices
Building Blocks for IoT DevicesBuilding Blocks for IoT Devices
Building Blocks for IoT Devices
Anil Gorthy
 
Under Water Image Enhancement by Fusion
Under Water Image Enhancement by FusionUnder Water Image Enhancement by Fusion
Under Water Image Enhancement by Fusion
IJMER
 
Fog computing technology
Fog computing technologyFog computing technology
Fog computing technology
Nikhil Sabu
 
Cloud Computing Principles and Paradigms: 7 enhancing cloud computing environ...
Cloud Computing Principles and Paradigms: 7 enhancing cloud computing environ...Cloud Computing Principles and Paradigms: 7 enhancing cloud computing environ...
Cloud Computing Principles and Paradigms: 7 enhancing cloud computing environ...
Majid Hajibaba
 
Jini technology ppt
Jini technology pptJini technology ppt
Jini technology ppt
OECLIB Odisha Electronics Control Library
 
Zigbee Presentation
Zigbee PresentationZigbee Presentation
Zigbee Presentation
Maathu Michael
 
5gtechnology 121103044412-phpapp02 (2)
5gtechnology 121103044412-phpapp02 (2)5gtechnology 121103044412-phpapp02 (2)
5gtechnology 121103044412-phpapp02 (2)
Dawood Aqlan
 
4g wireless technology
4g wireless technology 4g wireless technology
4g wireless technology
hardik_khengar
 
Introduction to 6G, prepare now training
Introduction to 6G, prepare now trainingIntroduction to 6G, prepare now training
Introduction to 6G, prepare now training
Tonex
 
Challenges & issues in way to 6g wireless communication
Challenges & issues in way to 6g wireless communicationChallenges & issues in way to 6g wireless communication
Challenges & issues in way to 6g wireless communication
Nikhil Soni
 
skype-peer to peer protocol
skype-peer to peer protocolskype-peer to peer protocol
skype-peer to peer protocol
DhwaniHingorani
 
Ppt presentation
Ppt presentationPpt presentation
Ppt presentation
vishal4799
 
Building Blocks for IoT Devices
Building Blocks for IoT DevicesBuilding Blocks for IoT Devices
Building Blocks for IoT Devices
Anil Gorthy
 
Under Water Image Enhancement by Fusion
Under Water Image Enhancement by FusionUnder Water Image Enhancement by Fusion
Under Water Image Enhancement by Fusion
IJMER
 
Fog computing technology
Fog computing technologyFog computing technology
Fog computing technology
Nikhil Sabu
 
Cloud Computing Principles and Paradigms: 7 enhancing cloud computing environ...
Cloud Computing Principles and Paradigms: 7 enhancing cloud computing environ...Cloud Computing Principles and Paradigms: 7 enhancing cloud computing environ...
Cloud Computing Principles and Paradigms: 7 enhancing cloud computing environ...
Majid Hajibaba
 

Viewers also liked (20)

My Project Report Documentation with Abstract & Snapshots
My Project Report Documentation with Abstract & SnapshotsMy Project Report Documentation with Abstract & Snapshots
My Project Report Documentation with Abstract & Snapshots
Usman Sait
 
Cloud Computing Revolution The Third It Industry Revolution
Cloud Computing Revolution  The Third It Industry RevolutionCloud Computing Revolution  The Third It Industry Revolution
Cloud Computing Revolution The Third It Industry Revolution
Liming Liu
 
Introduction of Cloud computing
Introduction of Cloud computingIntroduction of Cloud computing
Introduction of Cloud computing
Rkrishna Mishra
 
Android College Application Project Report
Android College Application Project ReportAndroid College Application Project Report
Android College Application Project Report
stalin george
 
Seminar on cloud computing by Prashant Gupta
Seminar on cloud computing by Prashant GuptaSeminar on cloud computing by Prashant Gupta
Seminar on cloud computing by Prashant Gupta
Prashant Gupta
 
Cloud computing simple ppt
Cloud computing simple pptCloud computing simple ppt
Cloud computing simple ppt
Agarwaljay
 
A Hybrid Cloud Approach for Secure Authorized De-Duplication
A Hybrid Cloud Approach for Secure Authorized De-DuplicationA Hybrid Cloud Approach for Secure Authorized De-Duplication
A Hybrid Cloud Approach for Secure Authorized De-Duplication
Editor IJMTER
 
Survey on Privacy- Preserving Multi keyword Ranked Search over Encrypted Clou...
Survey on Privacy- Preserving Multi keyword Ranked Search over Encrypted Clou...Survey on Privacy- Preserving Multi keyword Ranked Search over Encrypted Clou...
Survey on Privacy- Preserving Multi keyword Ranked Search over Encrypted Clou...
Editor IJMTER
 
Authenticated key exchange protocols for parallel network file systems
Authenticated key exchange protocols for parallel network file systemsAuthenticated key exchange protocols for parallel network file systems
Authenticated key exchange protocols for parallel network file systems
Pvrtechnologies Nellore
 
School Management System in Android
School Management System in AndroidSchool Management System in Android
School Management System in Android
Team Codingparks
 
Virtual school application
Virtual school applicationVirtual school application
Virtual school application
Soham Navadiya
 
Cloud Compiler
Cloud Compiler Cloud Compiler
Cloud Compiler
Being Topper
 
Cloud Computing And Android Apps For The Indian
Cloud Computing And Android Apps For The IndianCloud Computing And Android Apps For The Indian
Cloud Computing And Android Apps For The Indian
Sanjay Chitnis
 
Fixing errors in Android Java applications
Fixing errors in Android Java applicationsFixing errors in Android Java applications
Fixing errors in Android Java applications
Stephen Gilmore
 
Windows NAS on cloud storage using CloudArray software
Windows NAS on cloud storage using CloudArray softwareWindows NAS on cloud storage using CloudArray software
Windows NAS on cloud storage using CloudArray software
TwinStrata
 
Ppt on cloud storage application 2015
Ppt on cloud storage application 2015 Ppt on cloud storage application 2015
Ppt on cloud storage application 2015
Amit Kumar Prasad
 
A hybrid cloud approach for secure authorized deduplication
A hybrid cloud approach for secure authorized deduplicationA hybrid cloud approach for secure authorized deduplication
A hybrid cloud approach for secure authorized deduplication
Papitha Velumani
 
Introduction to google cloud messaging in android
Introduction to google cloud messaging in androidIntroduction to google cloud messaging in android
Introduction to google cloud messaging in android
RIA RUI Society
 
Brocade EMC vdx connectrix 발표자료 20150212
Brocade EMC vdx connectrix 발표자료 20150212Brocade EMC vdx connectrix 발표자료 20150212
Brocade EMC vdx connectrix 발표자료 20150212
JunSeok Seo
 
Cloud compiler - Minor Project by students of CBPGEC
Cloud compiler - Minor Project by students of CBPGEC  Cloud compiler - Minor Project by students of CBPGEC
Cloud compiler - Minor Project by students of CBPGEC
vipin kumar
 
My Project Report Documentation with Abstract & Snapshots
My Project Report Documentation with Abstract & SnapshotsMy Project Report Documentation with Abstract & Snapshots
My Project Report Documentation with Abstract & Snapshots
Usman Sait
 
Cloud Computing Revolution The Third It Industry Revolution
Cloud Computing Revolution  The Third It Industry RevolutionCloud Computing Revolution  The Third It Industry Revolution
Cloud Computing Revolution The Third It Industry Revolution
Liming Liu
 
Introduction of Cloud computing
Introduction of Cloud computingIntroduction of Cloud computing
Introduction of Cloud computing
Rkrishna Mishra
 
Android College Application Project Report
Android College Application Project ReportAndroid College Application Project Report
Android College Application Project Report
stalin george
 
Seminar on cloud computing by Prashant Gupta
Seminar on cloud computing by Prashant GuptaSeminar on cloud computing by Prashant Gupta
Seminar on cloud computing by Prashant Gupta
Prashant Gupta
 
Cloud computing simple ppt
Cloud computing simple pptCloud computing simple ppt
Cloud computing simple ppt
Agarwaljay
 
A Hybrid Cloud Approach for Secure Authorized De-Duplication
A Hybrid Cloud Approach for Secure Authorized De-DuplicationA Hybrid Cloud Approach for Secure Authorized De-Duplication
A Hybrid Cloud Approach for Secure Authorized De-Duplication
Editor IJMTER
 
Survey on Privacy- Preserving Multi keyword Ranked Search over Encrypted Clou...
Survey on Privacy- Preserving Multi keyword Ranked Search over Encrypted Clou...Survey on Privacy- Preserving Multi keyword Ranked Search over Encrypted Clou...
Survey on Privacy- Preserving Multi keyword Ranked Search over Encrypted Clou...
Editor IJMTER
 
Authenticated key exchange protocols for parallel network file systems
Authenticated key exchange protocols for parallel network file systemsAuthenticated key exchange protocols for parallel network file systems
Authenticated key exchange protocols for parallel network file systems
Pvrtechnologies Nellore
 
School Management System in Android
School Management System in AndroidSchool Management System in Android
School Management System in Android
Team Codingparks
 
Virtual school application
Virtual school applicationVirtual school application
Virtual school application
Soham Navadiya
 
Cloud Computing And Android Apps For The Indian
Cloud Computing And Android Apps For The IndianCloud Computing And Android Apps For The Indian
Cloud Computing And Android Apps For The Indian
Sanjay Chitnis
 
Fixing errors in Android Java applications
Fixing errors in Android Java applicationsFixing errors in Android Java applications
Fixing errors in Android Java applications
Stephen Gilmore
 
Windows NAS on cloud storage using CloudArray software
Windows NAS on cloud storage using CloudArray softwareWindows NAS on cloud storage using CloudArray software
Windows NAS on cloud storage using CloudArray software
TwinStrata
 
Ppt on cloud storage application 2015
Ppt on cloud storage application 2015 Ppt on cloud storage application 2015
Ppt on cloud storage application 2015
Amit Kumar Prasad
 
A hybrid cloud approach for secure authorized deduplication
A hybrid cloud approach for secure authorized deduplicationA hybrid cloud approach for secure authorized deduplication
A hybrid cloud approach for secure authorized deduplication
Papitha Velumani
 
Introduction to google cloud messaging in android
Introduction to google cloud messaging in androidIntroduction to google cloud messaging in android
Introduction to google cloud messaging in android
RIA RUI Society
 
Brocade EMC vdx connectrix 발표자료 20150212
Brocade EMC vdx connectrix 발표자료 20150212Brocade EMC vdx connectrix 발표자료 20150212
Brocade EMC vdx connectrix 발표자료 20150212
JunSeok Seo
 
Cloud compiler - Minor Project by students of CBPGEC
Cloud compiler - Minor Project by students of CBPGEC  Cloud compiler - Minor Project by students of CBPGEC
Cloud compiler - Minor Project by students of CBPGEC
vipin kumar
 
Ad

Similar to cloud computing and android (20)

Implementing SAAS: Cloud Computing and Android Based Application Framework fo...
Implementing SAAS: Cloud Computing and Android Based Application Framework fo...Implementing SAAS: Cloud Computing and Android Based Application Framework fo...
Implementing SAAS: Cloud Computing and Android Based Application Framework fo...
IOSR Journals
 
Android 1-intro n architecture
Android 1-intro n architectureAndroid 1-intro n architecture
Android 1-intro n architecture
Dilip Singh
 
PPT Companion to Android
PPT Companion to AndroidPPT Companion to Android
PPT Companion to Android
Dharani Kumar Madduri
 
Introduction to Cloud computing
Introduction to Cloud computingIntroduction to Cloud computing
Introduction to Cloud computing
Priyodarshini Dhar
 
Cloud computing abstract
Cloud computing abstractCloud computing abstract
Cloud computing abstract
Jagadeesh Kumar
 
Cloud computing abstract
Cloud computing abstractCloud computing abstract
Cloud computing abstract
Jagadeesh Kumar
 
Android
AndroidAndroid
Android
aktash12
 
Android- Introduction for Beginners
Android- Introduction for BeginnersAndroid- Introduction for Beginners
Android- Introduction for Beginners
Tripti Tiwari
 
Cloud Deployment Toolkit
Cloud Deployment ToolkitCloud Deployment Toolkit
Cloud Deployment Toolkit
Bret Piatt
 
CLOUD COMPUTING: A REVIEW
CLOUD COMPUTING: A REVIEWCLOUD COMPUTING: A REVIEW
CLOUD COMPUTING: A REVIEW
IAEME Publication
 
Cloud Computing
Cloud ComputingCloud Computing
Cloud Computing
Rishu Mehra
 
Clpud-Computing-PPT-3.pptx
Clpud-Computing-PPT-3.pptxClpud-Computing-PPT-3.pptx
Clpud-Computing-PPT-3.pptx
ssuserf71896
 
Clpud-Computing-PPT-3_cloud_computing.pptx
Clpud-Computing-PPT-3_cloud_computing.pptxClpud-Computing-PPT-3_cloud_computing.pptx
Clpud-Computing-PPT-3_cloud_computing.pptx
aravym456
 
Clpud-Computing-PPT-3.pptx
Clpud-Computing-PPT-3.pptxClpud-Computing-PPT-3.pptx
Clpud-Computing-PPT-3.pptx
Piyush793067
 
Technology and Android.pptx
Technology and Android.pptxTechnology and Android.pptx
Technology and Android.pptx
muthulakshmi cse
 
Cloud Computing
Cloud ComputingCloud Computing
Cloud Computing
Adhish Pendharkar
 
Cloud computing
Cloud computingCloud computing
Cloud computing
Manish Chiniwalar
 
cloud ppt Sushil-604234071.pdf for engineering
cloud ppt Sushil-604234071.pdf for engineeringcloud ppt Sushil-604234071.pdf for engineering
cloud ppt Sushil-604234071.pdf for engineering
Sushilkumar744913
 
Trends on Information Technology
Trends on Information TechnologyTrends on Information Technology
Trends on Information Technology
Carlos J. Costa
 
ReactJS Test Questions Answers.pdf
ReactJS Test Questions Answers.pdfReactJS Test Questions Answers.pdf
ReactJS Test Questions Answers.pdf
Skill Test for Freelancer
 
Implementing SAAS: Cloud Computing and Android Based Application Framework fo...
Implementing SAAS: Cloud Computing and Android Based Application Framework fo...Implementing SAAS: Cloud Computing and Android Based Application Framework fo...
Implementing SAAS: Cloud Computing and Android Based Application Framework fo...
IOSR Journals
 
Android 1-intro n architecture
Android 1-intro n architectureAndroid 1-intro n architecture
Android 1-intro n architecture
Dilip Singh
 
Introduction to Cloud computing
Introduction to Cloud computingIntroduction to Cloud computing
Introduction to Cloud computing
Priyodarshini Dhar
 
Cloud computing abstract
Cloud computing abstractCloud computing abstract
Cloud computing abstract
Jagadeesh Kumar
 
Cloud computing abstract
Cloud computing abstractCloud computing abstract
Cloud computing abstract
Jagadeesh Kumar
 
Android- Introduction for Beginners
Android- Introduction for BeginnersAndroid- Introduction for Beginners
Android- Introduction for Beginners
Tripti Tiwari
 
Cloud Deployment Toolkit
Cloud Deployment ToolkitCloud Deployment Toolkit
Cloud Deployment Toolkit
Bret Piatt
 
Clpud-Computing-PPT-3.pptx
Clpud-Computing-PPT-3.pptxClpud-Computing-PPT-3.pptx
Clpud-Computing-PPT-3.pptx
ssuserf71896
 
Clpud-Computing-PPT-3_cloud_computing.pptx
Clpud-Computing-PPT-3_cloud_computing.pptxClpud-Computing-PPT-3_cloud_computing.pptx
Clpud-Computing-PPT-3_cloud_computing.pptx
aravym456
 
Clpud-Computing-PPT-3.pptx
Clpud-Computing-PPT-3.pptxClpud-Computing-PPT-3.pptx
Clpud-Computing-PPT-3.pptx
Piyush793067
 
Technology and Android.pptx
Technology and Android.pptxTechnology and Android.pptx
Technology and Android.pptx
muthulakshmi cse
 
cloud ppt Sushil-604234071.pdf for engineering
cloud ppt Sushil-604234071.pdf for engineeringcloud ppt Sushil-604234071.pdf for engineering
cloud ppt Sushil-604234071.pdf for engineering
Sushilkumar744913
 
Trends on Information Technology
Trends on Information TechnologyTrends on Information Technology
Trends on Information Technology
Carlos J. Costa
 
Ad

Recently uploaded (20)

One Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learningOne Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learning
momer9505
 
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Library Association of Ireland
 
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar RabbiPresentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Md Shaifullar Rabbi
 
Multi-currency in odoo accounting and Update exchange rates automatically in ...
Multi-currency in odoo accounting and Update exchange rates automatically in ...Multi-currency in odoo accounting and Update exchange rates automatically in ...
Multi-currency in odoo accounting and Update exchange rates automatically in ...
Celine George
 
Metamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative JourneyMetamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative Journey
Arshad Shaikh
 
New Microsoft PowerPoint Presentation.pptx
New Microsoft PowerPoint Presentation.pptxNew Microsoft PowerPoint Presentation.pptx
New Microsoft PowerPoint Presentation.pptx
milanasargsyan5
 
Handling Multiple Choice Responses: Fortune Effiong.pptx
Handling Multiple Choice Responses: Fortune Effiong.pptxHandling Multiple Choice Responses: Fortune Effiong.pptx
Handling Multiple Choice Responses: Fortune Effiong.pptx
AuthorAIDNationalRes
 
Ultimate VMware 2V0-11.25 Exam Dumps for Exam Success
Ultimate VMware 2V0-11.25 Exam Dumps for Exam SuccessUltimate VMware 2V0-11.25 Exam Dumps for Exam Success
Ultimate VMware 2V0-11.25 Exam Dumps for Exam Success
Mark Soia
 
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Library Association of Ireland
 
Exploring-Substances-Acidic-Basic-and-Neutral.pdf
Exploring-Substances-Acidic-Basic-and-Neutral.pdfExploring-Substances-Acidic-Basic-and-Neutral.pdf
Exploring-Substances-Acidic-Basic-and-Neutral.pdf
Sandeep Swamy
 
How to manage Multiple Warehouses for multiple floors in odoo point of sale
How to manage Multiple Warehouses for multiple floors in odoo point of saleHow to manage Multiple Warehouses for multiple floors in odoo point of sale
How to manage Multiple Warehouses for multiple floors in odoo point of sale
Celine George
 
Odoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo SlidesOdoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo Slides
Celine George
 
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
Celine George
 
Political History of Pala dynasty Pala Rulers NEP.pptx
Political History of Pala dynasty Pala Rulers NEP.pptxPolitical History of Pala dynasty Pala Rulers NEP.pptx
Political History of Pala dynasty Pala Rulers NEP.pptx
Arya Mahila P. G. College, Banaras Hindu University, Varanasi, India.
 
Sinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_NameSinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_Name
keshanf79
 
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Library Association of Ireland
 
Biophysics Chapter 3 Methods of Studying Macromolecules.pdf
Biophysics Chapter 3 Methods of Studying Macromolecules.pdfBiophysics Chapter 3 Methods of Studying Macromolecules.pdf
Biophysics Chapter 3 Methods of Studying Macromolecules.pdf
PKLI-Institute of Nursing and Allied Health Sciences Lahore , Pakistan.
 
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public SchoolsK12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
dogden2
 
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptxSCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
Ronisha Das
 
LDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini UpdatesLDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini Updates
LDM Mia eStudios
 
One Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learningOne Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learning
momer9505
 
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Library Association of Ireland
 
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar RabbiPresentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Md Shaifullar Rabbi
 
Multi-currency in odoo accounting and Update exchange rates automatically in ...
Multi-currency in odoo accounting and Update exchange rates automatically in ...Multi-currency in odoo accounting and Update exchange rates automatically in ...
Multi-currency in odoo accounting and Update exchange rates automatically in ...
Celine George
 
Metamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative JourneyMetamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative Journey
Arshad Shaikh
 
New Microsoft PowerPoint Presentation.pptx
New Microsoft PowerPoint Presentation.pptxNew Microsoft PowerPoint Presentation.pptx
New Microsoft PowerPoint Presentation.pptx
milanasargsyan5
 
Handling Multiple Choice Responses: Fortune Effiong.pptx
Handling Multiple Choice Responses: Fortune Effiong.pptxHandling Multiple Choice Responses: Fortune Effiong.pptx
Handling Multiple Choice Responses: Fortune Effiong.pptx
AuthorAIDNationalRes
 
Ultimate VMware 2V0-11.25 Exam Dumps for Exam Success
Ultimate VMware 2V0-11.25 Exam Dumps for Exam SuccessUltimate VMware 2V0-11.25 Exam Dumps for Exam Success
Ultimate VMware 2V0-11.25 Exam Dumps for Exam Success
Mark Soia
 
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Library Association of Ireland
 
Exploring-Substances-Acidic-Basic-and-Neutral.pdf
Exploring-Substances-Acidic-Basic-and-Neutral.pdfExploring-Substances-Acidic-Basic-and-Neutral.pdf
Exploring-Substances-Acidic-Basic-and-Neutral.pdf
Sandeep Swamy
 
How to manage Multiple Warehouses for multiple floors in odoo point of sale
How to manage Multiple Warehouses for multiple floors in odoo point of saleHow to manage Multiple Warehouses for multiple floors in odoo point of sale
How to manage Multiple Warehouses for multiple floors in odoo point of sale
Celine George
 
Odoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo SlidesOdoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo Slides
Celine George
 
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
Celine George
 
Sinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_NameSinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_Name
keshanf79
 
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Library Association of Ireland
 
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public SchoolsK12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
dogden2
 
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptxSCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
Ronisha Das
 
LDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini UpdatesLDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini Updates
LDM Mia eStudios
 

cloud computing and android

  • 1. Presentation on Major Project Submitted by: Mohit Singh Roll no: 104507 M.Tech 2nd Year
  • 2. Student Oriented Cloud Computing and Android Based Application for lean mobile computing Systems
  • 3. Objective  The main objective of the project is to develop a Cloud Computing Application for Java program creation, compilation and execution on lean mobile computing systems like smart phones, ipads and netbooks.  Setup a server and deploy the application on the cloud to test it across the range of lean mobile computing systems.  Develop an Android based application for Java program development and using a cloud computing facility to execute the developed Java programs.  Develop Android based application for students.
  • 4. Motivation behind Project The next generation of open operating systems won’t be on desktops or mainframes but on the small mobile devices we carry every day. The openness of these new environments will lead to new applications and markets and will enable greater integration.
  • 5. Aakash (Tablet) Aakash world's cheapest internet device was conceived under the Human Resources and Development Ministry's National Mission on Education through Information and Communication Technology (NME-ICT) to provide students a device that could be used as an EBook reader, to access online streaming course material and web based research But there are no applications which can enable the students to develop and execute programs using these tablets.
  • 7. … Cloud computing provides computation, software, data access, and storage services that do not require end- user knowledge of the physical location and configuration of the system that delivers the services.
  • 8. …  Cloud Computing is a general term used to describe a new class of network based computing that takes place over the Internet, basically a step on from Utility.  In other words, this is a collection/group of integrated and networked hardware, software and Internet infrastructure (called a platform).  Using the Internet for communication and transport provides hardware, software and networking services to clients.  These platforms hide the complexity and details of the underlying infrastructure from users and applications by providing very simple graphical interface or API (Applications Programming Interface).
  • 9. …  In addition, the platform provides on demand services, that are always on, anywhere, anytime and any place.  Pay for use and as needed, elastic (scale up and down in capacity and functionalities).  The hardware and software services are available to the general public, enterprises, corporations and businesses markets.
  • 10. Cloud Summary  Cloud computing is an umbrella term used to refer to Internet based development and services.  A number of characteristics define cloud data, applications services and infrastructure: ◦ Remotely hosted: Services or data are hosted on remote infrastructure. ◦ Ubiquitous: Services or data are available from anywhere. ◦ Commodified: The result is a utility computing model similar to traditional that of traditional utilities, like gas and electricity - you pay for what you would want!
  • 12. Software as a service (SaaS)  Software as a service , sometimes referred to as "on-demand software," is a software delivery model in which software and its associated data are hosted centrally (typically in the (Internet) cloud) and are typically accessed by users using a thin client, normally using a web browser over the Internet.  SaaS has become a common delivery model for most business applications, including accounting, collaboration, customer relationship management (CRM), enterprise resource planning (ERP), invoicing, human resource management (HRM), content management (CM) and service desk management.
  • 13. Platform as a service (PaaS)  Platform as a service (PaaS) is the delivery of a computing platform and solution stack as a service.  PaaS offerings facilitate deployment of applications without the cost and complexity of buying and managing the underlying hardware and software and provisioning hosting capabilities.  PaaS providing all of the facilities required to support the complete life cycle of building and delivering web applications and services entirely available from the Internet
  • 14. Infrastructure as a service" (IaaS)  Cloud infrastructure services, also known as “Infrastructure as a service" (IaaS), deliver computer infrastructure – typically a platform virtualization environment – as a service, along with raw (block) storage and networking.  Rather than purchasing servers, software, data-center space or network equipment, clients instead buy those resources as a fully outsourced service.  Suppliers typically bill such services on a utility computing basis; the amount of resources consumed (and therefore the cost) will typically reflect the level of activity.[
  • 15. Cloud Storage  Several large Web companies (such as Amazon and Google) are now exploiting the fact that they have data storage capacity that can be hired out to others.  This approach, known as cloud storage allows data stored remotely to be temporarily cached on desktop computers, mobile phones or other Internet-linked devices.  Amazon’s Elastic Compute Cloud (EC2) and Simple Storage Solution (S3) are well known examples.
  • 16. Advantages of Cloud Computing  Lower computer costs  Improved performance  Reduced software costs  Instant software updates  Improved document format compatibility.  Unlimited storage capacity  Increased data reliability  Universal document access  Latest version availability  Easier group collaboration  Device independence
  • 17. Disadvantages of Cloud Computing  Requires a constant Internet connection  Does not work well with low-speed connections  Can be slow  Features might be limited  Stored data might not be secure  Stored data can be lost  HPC Systems  General Concerns
  • 18. Android Android is a software stack for mobile devices that includes an operating system, middleware and key applications.
  • 19. About Android and its features  Android is an operating system based on Linux with a Java programming interface.  It provides tools, e.g. a compiler, debugger and a device emulator as well as its own Java Virtual machine (Dalvik Virtual Machine - DVM).  Android is created by the Open Handset Alliance which is lead by Google.  Android uses a special virtual machine, e.g. the Dalvik Virtual Machine. Dalvik uses special bytecode. Therefore you cannot run standard Java bytecode on Android.  Android provides a tool "dx" which allows converting Java Class files into "dex" (Dalvik Executable) files.
  • 20. …  Android applications are packed into an .apk (Android Package) file by the program "aapt" (Android Asset Packaging Tool) To simplify development Google provides the Android Development Tools (ADT) for Eclipse.  The ADT performs automatically the conversion from class to dex files and creates the apk during deployment.
  • 21. …  Android supports 2-D and 3-D graphics using the OpenGL libraries and supports data storage in a SQLite database.  Every Android applications runs in its own process and under its own userid which is generated automatically by the Android system during deployment.  Therefore the application is isolated from other running applications and a misbehaving application cannot easily harm other Android applications.
  • 22. Features  Open  Breaking down Boundaries  All applications are equal  Fast & Easy development
  • 23. Android Framework and Tools Android Tools include SDK, ADT for eclipse integration support and an emulator. Let’s discuss them one by one in brief:
  • 24. Introduction to Android SDK and ADT for Eclipse  The Android SDK archive initially contains only the basic SDK tools. It does not contain an Android platform or any third-party libraries. In fact, it doesn't even have all the tools you need to develop an application.  In order to start developing applications, you must install the Platform-tools and at least one version of the Android platform, using the SDK Manager. Platform-tools contains build tools that are periodically updated to support new features in the Android platform (which is why they are separate from basic SDK tools), including adb, dexdump, and others.  To install Platform-tools, Android platforms and other add-ons, you must have an Internet connection, so if you plan to use the SDK while offline, please make sure to download the necessary components while online. To start the SDK Manager, please execute the program "SDK Manager.exe". From the command-line you can also directly trigger an update by Executing: toolsAndroid.bat update sdk
  • 25. Dalvik Virtual Machine  The Dalvik virtual machine is simple Java interpreter machine, completely optimized for Android platform and which is developed to run on low-end memory mobile devices.  One of the prominent aspects in Dalvik is its capability to run along an application compilation enhancing the runtime performance of the applications.  Dalvik is not exactly, a Java machine, because Dalvik could not read Java code, but consists its own byte code called “dex” and so the executable files compacted using Dalvik holds the file type name '.dex'.  Google states that the credit for Androids successful development goes to Dalvik VM, because this type of virtual machine, delivers a good performance over various stages of an application runtime environment, conserving more battery-power during long run of an application.
  • 26.
  • 29.
  • 30. Components of Android Application  Activity  Views  Services  Content Provider  Intents  Broadcast Receiver
  • 31.
  • 32.
  • 33. Progress Track Learnt program development for Android and Cloud Computing. Linking Android SDK and ADT plugin with Eclipse developing Android programs and debugging it with both Emulator and Android smart phone. Presently designing the GUI and the other components of the above mentioned application.
  • 34. References  http://en.wikipedia.org/wiki/Cloud_computing  http://www.thinkgrid.com/docs/computing-whitepaper.pdf  http://www.awsug.com/wp-content/uploads/2008/10/saas_and_clo  http://acet.rdg.ac.uk/~mab/Talks/Clouds-La-Coruna09/Talk.ppt  http://developer.android.com/guide/index.html  http://en.wikipedia.org/wiki/Android  http://developer.android.com/resources/tutorials/hello-world.html