
Android Study Jams Quiz
Quiz by Sanskar Gupta
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Which layout is best suited for horizontal/vertical orientation in a single row or column of views ?
Which of the following properties of Views and ViewGroups are correct?
'android:gravity= “centre” ' is used to ___ ?
Do we have anything called “static” in kotlin ?
Which command is used to format code in Android Studio ?
How to write log messages in your code?
Which one of the following is the correct way of declaring functions?
Write the correct syntax to create intent to show the ChooserDialog .
val sendIntent = Intent(Intent.ACTION_SEND)
Which intent is used to invoke System Components?
e.g : Sending Mail, Sending SMS etc
Which one of the following is used to view errors in android studio?
Which of the following is not a way to debug the application in an android studio?
Which of the following statements explains the properties of 'android:gravity' and 'android:layout_gravity' .
1 . 'android:gravity' sets the gravity of the View or Layout relative to its parent
2 . 'android:gravity' sets the gravity of the contents (i.e. its subviews) of the View .
3 . 'android:layout_gravity' sets the gravity of the View or Layout relative to its parent.
4 . 'android:layout_gravity' sets the gravity of the contents (i.e its subviews) of the View.
Suppose that there are two activities in an application named ActivityOne and ActivityTwo. You want to invoke ActivityTwo from ActivityOne. What code will you write?
1. var intent = Intent(this, ActivityTwo::class.java) startActivity(intent)
2. startActivity(Intent(this, ActivityTwo::class.java))
Which of the following is/are properties of Implicit Intent ?