How do you perform in a fast-paced and potentially stressful environment?
Correct Answer
Here by asking this question, your interviewer want to evaluate, how you manage your stressfull situations and its impact on your work and co-employees Sample :: I know how important it is to be calm even when other people are not In my previous job, part of my work required managing multiple phone calls with customers and handling them in an efficient and professional manner I feel I can provide a good balance of listening and speaking calmly and clearly Additionally, I know a large part of my role is providing support for the adjusters or other employees to whose team I belong I would ask them what type of support they need from me and adjust my work to meet those requirements
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.