Monetize Android Applications
Training Skills for Android ATC Certified Trainer
Android Application Development v8
Android Security Essentials
Android Applications UI-UX Design and Monetization Techniques
Flutter Certified Application Developer
When are permissions enforced in Activities?
When they launched by Context.startActivity() or Context.startActivityFor Result().
When method Context.enforcepermission() is called.
When method Context.stopActivity() is called.
When Context.checkPermission() is called.
Which one of the following is NOT true about “taskAffinity”?
It can be placed inside manifest tag.
It can be placed inside application tag.
It can be placed inside activity tag
The name of the default affinity for an application is the package name set by manifest tag
What does the following line of code do?
FileOutputStream fOut = openFileOutput("MyFile.txt", MODE_WORLD_READABLE);
The file MyFile.txt will be created in the /data// files/ directory.
The file MyFile.txt will be created in the /data/data// files/ directory.
None are correct
The file MyFile.txt will be created in the /data/data// directory.