Tell me about a time you had to handle multiple responsibilities. How did you organize the work you needed to do?
Correct Answer
Sample Response : While attending college, I also worked at a law firm I was successful because I practiced good time-management skills, and I made a to-do list every day As I completed each task, I checked it off the list It is funny how something so simple can keep you so organized As a result of my to-do lists, I was able to visualize my daily progress
Correct Answer: Testing an executable application for portability across system platforms and environments, usually for conformation to an ABI specification
4. What is the proper way of setting up an Android-powered device for app development?
Correct Answer: The following are steps to be followed prior to actual application development in an Android-powered device: - Declare your application as ?debuggable? in your Android Manifest - Turn on ?USB Debugging? on your device - Set up your system to detect your device
Correct Answer: For launching an application, we will need to create an intent that explicitly defines the activity that we wish to start For example: Code Intent intent = new Intent(this, MyTestActivityclass); startActivity(intent);
7. Whats the difference between a NSArray and a NSMutableArray?
Correct Answer: A NSArray?s contents can not be modified once it?s been created whereas a NSMutableArray can be modified as needed, ie items can be added/removed from it
8. Values that are used to end loops are referred to as _____ values.