Android Application Development - AND-401 Exam Practice Test
The DalvikVM core libraries are a subset of which of the following?
Correct Answer: C
Vote an answer
Which of the following is a correct Android Manifest statement?
Correct Answer: B
Vote an answer
What Eclipse plug-in is required to develop Android application?
Correct Answer: D
Vote an answer
Which of the following is the base class of all UI components?
Correct Answer: B
Vote an answer
Which of the following sets the entire Activity window as a WebView?
Correct Answer: C
Vote an answer
What is the name of the class used by Intent to store additional information?
Correct Answer: B
Vote an answer
Which of the following lines of code is used to pass a value to the next activity?
Correct Answer: C
Vote an answer
Consider the following code:
Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); intent.setData(android.net.Uri.parse("http://www.androidatc.com")); startActivity(intent);
Which of the following is correct about the code above?
Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); intent.setData(android.net.Uri.parse("http://www.androidatc.com")); startActivity(intent);
Which of the following is correct about the code above?
Correct Answer: D
Vote an answer