Android

 40 Minutes
 20 Questions


This test covers a wide range of topics related to Android technology. It includes questions on Application Fundamentals, User Interface, Application Components, Data Storage, and Performance. The test will assess the knowledge of the user on each of these topics and their ability to apply them in a practical setting. It will also evaluate the user's understanding of how these topics interact with each other and how they can be used to create effective Android applications.


Example Question:

Multiple-Choice
Which of the following approaches is considered to be a better approach for styling an application?
First Approach:
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#00DD00"
android:typeface="monospace"
android:text="@string/hello" />
Second Approach:
<TextView
style="@style/StyleFont"
android:text="@string/hello" />
(style defined in a separate file)
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="StyleFont" parent="@android:style/TextAppearance.Medium">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textColor">#00FF00</item>
<item name="android:typeface">monospace</item>
</style>
</resources>