🧪 Android Studio MCQ Quiz Hub

Mobile Clouding Application Mcq

Choose a topic to test your knowledge and improve your Android Studio skills

1. Android is licensed under which open source licensing license?




2. Although most people's first thought when they think of Android is Google, Android is not actually owned by Google. Who owns the Android platform?




3. As an Android programmer, what version of Android should you use as your minimum development target?




4. What was Google's main business motivation for supporting Android?




5. From a phone manufacturer's point of view, what makes Android so great?




6. What is a funny fact about the start of Android?




7. A device with Android installed is needed to develop apps for Android.




8. Android tries hard to __________ low-level components, such as the software stack, with interfaces so that vendor-specific code can be managed easily.




9. Google licensed some proprietary apps.




10. What part of the Android platform is open source?




11. When did Google purchase Android?




12. Android releases since 1.5 have been given nicknames derived how?




13. Android doesn't make any assumptions about a device's screen size, resolution, or chipset.:




14. Why are the so few users left with versions 1.0 and 1.1?




15. Which Android version had the greatest share of the market as of January 2011?




16. Which piece of code used in Android is not open source?




17. Android is built upon the Java Micro Edition (J2ME) version of Java.




18. What operating system is used as the base of the Android stack?




19. What year was development on the Dalvik virtual machine started?




20. What is a key difference with the distribution of apps for Android based devices than other mobile device platform applications?




21. When developing for the Android OS, Java byte code is compiled into what?




22. What does the .apk extension stand for?




23. When you distribute your application commercially,you'll want to sign it with your own key.




24. How does Google check for malicious software in the Android Market?




25. Which of these are not one of the three main components of the APK?




26. What was the main reason for replacing the Java VM with the Dalvik VM when the project began?




27. Android Applications must be signed.




28. Which of the following are not a component of an APK file?




29. The AWT and Swing libraries have been removed from the Android library set.




30. The R.java file is where you edit the resources for your project.




31. What is contained within the manifest xml file?




32. What is contained within the Layout xml file?




33. The emulated device for android.




34. Your Java source code is what is directly run on the Android device.




35. The Emulator is identical to running a real phone EXCEPT when emulating/simulating what?




36. How is a simulator different from an emulator?




37. The R file is a(an) generated file




38. To create an emulator, you need an AVD. What does it stand for?




39. The ________ file specifies the layout of your screen.




40. The manifest explains what the application consists of and glues everything together.




41. What is the driving force behind an Android application and that ultimately gets converted into a Dalvik executable?




42. While developing Android applications, developers can test their apps on.




43. What file is responsible for glueing everthing together , explaining what the applicatin consists of, what its main building blocks are, ext...?




44. Which of the following is the most "resource hungry" part of dealing with Activities on Android.




45. What runs in the background and doesn't have any UI components?




46. What is an Activity?




47. When an activity doesn't exist in memory it is in.




48. Which of the following is NOT a state in the lifecycle of a service?




49. There is no guarantee that an activity will be stopped prior to being destroyed.




50. Intents




51. In an explicit intent, the sender specifies the type of receiver.




52. When the activity is not in focus, but still visible on the screen it is in?




53. An activity in a stopped state is doing nothing.




54. Services have any user interface components




55. Broadcast receivers are Android’s implementation of a system-wide publish/subscribe mechanism, or more precisely, what design pattern?




56. There can be only one running activity at a given time.




57. YAMBA stands for Yet Another Mobile Banking App.




58. Lists and adapters are more organizational aids than user interface elements in Android.




59. What built-in database is Android shipped with?




60. Creating a UI (User Interface) in Android requires careful use of...