


Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
ITGSS Developer Certification: Android/CoresOS App Developer – Questions with Correct Answers | 100% Pass
Typology: Exams
1 / 4
This page cannot be seen from the preview
Don't miss anything!



What is the importance of having an emulator within the Android/CoresOS environment? - The emulator lets developers "play" around an interface that acts as if it were an actual mobile device. They can write and test codes, and even debug. Emulators are a safe place for testing codes especially if it is in the early design phase. What is ADB? - Android Debug Bridge (ADB) is a versatile command line tool that lets you communicate with an emulator instance or connected Android-powered device. What language is supported by Android/CoresOS for application development? - Java and Kotlin What is the significance of the .dex files? - Android programs are compiled into .dex (Dalvik Executable) files, which are in turn zipped into a single .apk file on the device. .dex files can be created by automatically translating compiled applications written in the Java and Kotlin programming languages. What does ADT stand for? - ADT stands for Android Development Tools (software). Android is licensed under which open source licensing license? - Apache License 2. List out the three main components of the APK. - Dalvik Executable, Native Libraries, Resources Write down any one advantages of Android/CoresOS. - Android/CoresOS is fully customizable as user wants.
Give the languages name, which you can code in Eclipse editor. - Ada, ABAP, C, C++, COBOL, Fortran, Haskell, JavaScript, Lasso, Natural, Perl, PHP, Prolog, Python, R, Ruby What is the resolution of HVGA skin? - 320x What is the resolution of QVGA skin? - 240x Give the folder name which stores your all Android project. - workspace What is emulator? - The Android SDK includes a mobile device emulator — a virtual mobile device that runs on your computer. The emulator lets you develop and test Android applications without using a physical device. Select the name of the attribute which specifies the minimum version of the OS on which the application will run. - android:minSdkVersion List out the tool name provided by Android SDK. - SDK MANAGER Each application can have zero or more activities. True or False? Justify in short. - True, An Android application can contain zero or more activities. When your application has more than one activity, you may need to navigate from one activity to another. Which library provides the database support in Android application? - SQLite Select any three IDEs which can be used for Android development. - Eclipse,InteliJ,Titanium
In android studio, a service that is started and cannot be stopped even the calling activity is destroyed is - startService()