Android Application Development - AND-401 FREE EXAM DUMPS QUESTIONS & ANSWERS
Which of the following is NOT true about SQLiteOperHelper class? (Choose two)
Correct Answer: C,D
Vote an answer
Which of the following is correct about XML layout files?
Correct Answer: C
Vote an answer
Which of the following statements about DDMS is incorrect?
Correct Answer: D
Vote an answer
To create a customized Adapter for a compound list item layout , you should:
Correct Answer: C
Vote an answer
What does the following code achieve?
Intent intent = new Intent(FirstActivity.this, SecondActivity.class); startActivityForResult(intent);
Intent intent = new Intent(FirstActivity.this, SecondActivity.class); startActivityForResult(intent);
Correct Answer: A
Vote an answer
To add a new Activity to your application, you need to perform the following steps:
Correct Answer: B
Vote an answer
Which file specifies the minimum required Android SDK version your application supports?
Correct Answer: B
Vote an answer
Which of the following methods updates a ListView when an element is added to the data set?
Correct Answer: A
Vote an answer
Which of the following is true about this code snippet? (Choose two)
Intent intent = new Intent(Intent.ACTION_DIAL,Uri.parse("tel:555-1234")); startActivity(intent);
Intent intent = new Intent(Intent.ACTION_DIAL,Uri.parse("tel:555-1234")); startActivity(intent);
Correct Answer: C,D
Vote an answer
If your application is throwing exception android.content.ActivityNotFoundException, how to fix it?
Correct Answer: A
Vote an answer