A loss (or losses) from previous years carried forward in order to offset future earnings This reduces the tax burden for the years with profit as the accumulated losses are deducted from the taxable profit
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.