Mobile Application Development Pratical2
Mobile Application Development Pratical2
1) download Android Studio IDE setup file, double click on the .exe file (setup file) of the
Android Studio.
7) Click on ok 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?