RDO is Hierarchy model where as ADO is Object model ADO can access data from both flat files as well as the data bases Ie, It is encapsulation of DAO, RDO , OLE that is why we call it as OLE-DB Technology
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.