Solved

Which of the Following Is True About This Code Snippet

Question 85

Multiple Choice

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) ;


A) This is an explicit intent that start the system's dialer.
B) The system will not dial the number without adding permission CALL_PHONE.
C) The system will perform an intent resolution to start the proper activity.
D) The code will not compile.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions