0% found this document useful (0 votes)
953 views

Mobile Application Development Pratical2

The document discusses installing and configuring the Java Development Kit (JDK), Android Studio, and Android SDK to develop Android applications. It lists the steps to install the Android operating system as: 1) downloading and installing Android Studio, 2) selecting an installation location, 3) clicking install, 4) clicking next and finish. It also lists Eclipse, NetBeans, IntelliJ IDEA, Android Studio, and Cordova as IDEs that can be used to develop for Android. Finally, it differentiates between the Java Virtual Machine (JVM) and Dalvik Virtual Machine (DVM), and explains that the JDK is essential as it allows developers to create Java programs that can be run by the JVM on Android

Uploaded by

Nishant Kadam
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
953 views

Mobile Application Development Pratical2

The document discusses installing and configuring the Java Development Kit (JDK), Android Studio, and Android SDK to develop Android applications. It lists the steps to install the Android operating system as: 1) downloading and installing Android Studio, 2) selecting an installation location, 3) clicking install, 4) clicking next and finish. It also lists Eclipse, NetBeans, IntelliJ IDEA, Android Studio, and Cordova as IDEs that can be used to develop for Android. Finally, it differentiates between the Java Virtual Machine (JVM) and Dalvik Virtual Machine (DVM), and explains that the JDK is essential as it allows developers to create Java programs that can be run by the JVM on Android

Uploaded by

Nishant Kadam
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

Subject: mobile application development

Name: nishant kadam fs-528


Practical No. 2: Install and configure java development kit (JDK), Android studio and android SDK.

1] List all the steps to install android operating system?

1) download Android Studio IDE setup file, double click on the .exe file (setup file) of the
Android Studio.

2 Select an appropriate location and click on Next button.

3) Click on Install button. It will start installing as shown below.

4) Click on Next button.

5) Click on finish button.

6)select the android version from the android sdk

7) Click on ok button.

8) select the Accept License radio button and then click on Install Packages button

9)  Click install button
2. List various IDEs that can be used to execute android operating system.

 Eclipse,
NetBeans
 IntelliJ IDE
Android Studio

Komodo
Cordova
3] Differentiate between JVM and DVM

JVM DVM
JVM stands for Java Virtual Machine DVM stands for dalvik Virtual Machine
Stack-based VM that performs arithmetic and Register-based VM that uses registers located
logic operations through push and pop in the CPU to perform arithmetic and logic
operands. The result of operations is stored in operations.
stack memory.
Java source code is compiled into Java bytecode Source code files are first of all compiled into
format(.class file) that further translates into Java bytecode format like JVM. Further, the
machine code DEX compiler(dx tool) converts the Java
bytecode into Dalvik bytecode(classes.dex) file
that will be used to create the .apk file.
The executable file for the device is .jar file. The executable file for the device is .apk file.
Supports multiple operating systems like Linux, Support only the Android operation system.
Windows, and Mac OS.

4] What is IDE? Why Java development toolkit is essential to install an android operating system?

An IDE, or Integrated Development Environment, enables programmers to consolidate the different


aspects of writing a computer program. IDEs increase programmer productivity by combining
common activities of writing software into a single application: editing source code, building
executables, and debugging. The JDK allows developers to create Java programs that can be
executed and run by the JVM and JRE

You might also like