In HTML5, what is TRUE about localStorage?

In HTML5, what is TRUE about localStorage? A. It is never expired B. It is faster than sessionStorage C. It is only available in one session Answer:...

How to set data for a ListView?

How to set data for a ListView? A. Define in XML file B. Use function setListAdapter() C. Use function addView() D. b or c E. None of above Answer:...

What is NotificationManager class?

What is NotificationManager class? A. The NotificationManager class is used to display notifications on the device's status bar and disappears after...

How to set data for a Gallery control?

How to set data for a Gallery control? A. Define in XML file B. Use function setGalleryAdapter() C. Use function addView() D. b or c E. None of above Answer:...

What is NOT correct about HTML5?

What is NOT correct about HTML5? A. All browsers support for all new elements of HTML5 B. HTML5 helps to reduce the need of browser plugin C. HTML5...

What is the method for monitoring a location?

What is the method for monitoring a location? A. The method is addProximityAlert(). B. The method is addProximityNotify(). C. The method is addProximityLocation(). D....

How to instantiate a Spinner control?

How to instantiate a Spinner control? A. Via XML layout B. Via code C. All of above D. None of above Answer:...

How to call an AJAX request in Sencha Touch?

How to call an AJAX request in Sencha Touch? A. Use Ext.Ajax() B. Use Ext.Ajax.call() C. Use Ext.Ajax.request() D. None of above Answer:...

What is Toast class?

What is Toast class? A. The Toast class is used to display notifications on the device's status bar B. The Toast class is used to display notifications...

What is android view group?

What is android view group? A. Layouts B. Base class of building blocks C. FragmentActivity D. Collection of views and other child views Answer:...

"Gingerbread" is nickname of

"Gingerbread" is nickname of A. Android version 2.3.x B. Android version 4.x C. Android version 2.2 D. Android version 3.x Answer:...

How to create a Sencha Touch app?

How to create a Sencha Touch app? A. Use Sencha SDK Guide: File New Project B. Use command line: sencha generate app C. Download app skeleton from...

What is the geocoding?

What is the geocoding? A. Geocoding is the act of converting an address into its coordinates (latitude and longitude). B. Geocoding is the act of...

How to display a Toast?

How to display a Toast? A. Call .show() method B. Call .getText() method C. Call .display() method D. None of above Answer:...

How to add a scroll view?

How to add a scroll view? A. Use tag <ScrollView... B. Use code: ScrollView sv = new ScrollView(); setContentView(sv); C. All of above Answer:...

What is TRUE about sessionStorage?

What is TRUE about sessionStorage? A. It is available in only one session B. It is slower than localStorage C. It is never expired Answer:...

Android MapActivity is

Android MapActivity is A. Base class with code to manage the boring necessities of any activity that display a MapView B. A View which display a Map...

How do we get access to the preference?

How do we get access to the preference? A. Via getPreference() method B. Via getSharedPreference() method C. Via getDefaultSharedPreference() method D....

When ContentProvider would be actived?

When ContentProvider would be actived? A. Using Intent B. Using SQLite C. Using ContentResolver D. None of the above Answer:...

Which statements are correct about Category?

Which statements are correct about Category? A. A string containing additional information about the kind of component (activity, service, or broadcast...

Which is right xml-based way to load view layout?

Which is right xml-based way to load view layout? A. setContentView(new XmlLayout()) B. loadContentView(new LinearLayout()) C. setContentView(R.layout.some_layout) D....