Can PhoneGap framework support for playing audio?
Answer: tr...
Can PhoneGap work with Contacts data of mobile device?
Can PhoneGap work with Contacts data of mobile device?
Answer: tru...
PhoneGap uses HTML5, CSS, and __________ to write and deploy application.
PhoneGap uses HTML5, CSS, and __________ to write and deploy application.
Answer: JavaScrip...
Choose whether the statement is true or false Does PhoneGap support iOS, Android, Windows Phone, BlackBerry, webOS, Bada, Symbian at the same time?
Choose whether the statement is true or false Does PhoneGap support iOS, Android, Windows Phone, BlackBerry, webOS, Bada, Symbian at the same time?...
Given the following code AsyncHttpClient asynClient = new AsyncHttpClient()
Given the following code AsyncHttpClient asynClient = new AsyncHttpClient()
Answer: Yes, if it is not yet completed (success or failed...
There is a kind of animation that using an XML file to define a sequence of pictures using
There is a kind of animation that using an XML file to define a sequence of pictures using
Answer: Tween Animatio...
In Android, what is the meaning of the following code in MainActivity class?
In Android, what is the meaning of the following code in MainActivity class?
Answer: the main thread calls the UI thread
...
In Android, what is contained within the XML files in layout folder?
In Android, what is contained within the XML files in layout folder?
Answer: The layouts and direction of screen of the ap...
Which shortcut key we can use to change orientation in an AVD simulator?
Which shortcut key we can use to change orientation in an AVD simulator?
Answer: Ctrl+F1...
As discussed, there are 4 main components in Android application. And in AndroidManifest.xml file, you need to declare
As discussed, there are 4 main components in Android application. And in AndroidManifest.xml file, you need to declare
Answer: elements for ...
Choose right kind of layouts supported in Sencha Touch
Choose right kind of layouts supported in Sencha Touch
Answer: Justify Layou...
In Sencha Touch, app folder contains
In Sencha Touch, app folder contains
Answer: the Models, Views, Controllers and Stores for your ap...
What setListAdapter() function used for?
What setListAdapter() function used for?
Answer: A command that projects your data to the onscreen list on your device by connecting the lis...
What onListItemClick() function used for?
What onListItemClick() function used for?
Answer: A method called when an item in a list is selecte...
How many activities are in focus at any time?
How many activities are in focus at any time?
Answer: Just on...
Given the following statements using openFileOutput function to store data into a file in Android:
Given the following statements using openFileOutput function to store data into a file in Android:
Answer: The created file can be accessed by...
What happen if the latitude is less than -90 or greater than 90?
What happen if the latitude is less than -90 or greater than 90?
Answer: It returns an IllegalArgumentExceptio...
In Android, the process technical to convert an address into its latitude and longitude is called
In Android, the process technical to convert an address into its latitude and longitude is called
Answer: Geocodin...
In Android, which is two location providers that you can use to obtain your position data?
In Android, which is two location providers that you can use to obtain your position data?
Answer: LocationManager.GPS_PROVIDER and Location...
Which of the following is the based class for the main application class in an Android application that has a user interface?
Which of the following is the based class for the main application class in an Android application that has a user interface?
Answer: Activi...
When you have two or more activities with the same INTENT FILTER action name, the Android OS will display a
When you have two or more activities with the same INTENT FILTER action name, the Android OS will display a
Answer: Tru...
What is the android:versionCode attribute in the AndroidManifest.xml file?
What is the android:versionCode attribute in the AndroidManifest.xml file?
Answer: It is used to programmatically check if an application can...
Which of the following is NOT a right codename of Android version?
Which of the following is NOT a right codename of Android version?
Answer: Eclai...
When you need to use mp3 file in Android application, which folder you need to create and store mp3 file?
When you need to use mp3 file in Android application, which folder you need to create and store mp3 file?
Answer: raw folde...
In Android, can we change the GPS setting by write my own Java code?
In Android, can we change the GPS setting by write my own Java code?
Answer: Fals...
Assume that we have an Android object named stored in reader variable, and inside it has a child object named
Assume that we have an Android object named stored in reader variable, and inside it has a child object named
Answer: JSONObject mainObj = r...
What is the name of Android class do we need to use to build up an JSON object?
What is the name of Android class do we need to use to build up an JSON object?
Answer: JSONObjec...
How many kind of Android service do we have?
How many kind of Android service do we have?
Answer: ...
To get data from Webserver to Android application, which of the following class you need to use to establish connection?
To get data from Webserver to Android application, which of the following class you need to use to establish connection?
Answer: HttpURLConn...
To develop your own service in Android, which of the following step you need to do?
To develop your own service in Android, which of the following step you need to do?
Answer: Step 2 is: implements onStartCommand, onBind, onUnbind,...
Which is the method you need to use to post a notification to be shown in the status bar?
Which is the method you need to use to post a notification to be shown in the status bar?
Answer: notify(......
You need to process when user clicks on a notification on upper left of Android screen
You need to process when user clicks on a notification on upper left of Android screen
Answer: PendingInten...
To display a notification on upper left of Android screen, which of the following class you need to use?
To display a notification on upper left of Android screen, which of the following class you need to use?
Answer: NotificationManager + Notif...
In Android, does Service create new thread in background
In Android, does Service create new thread in background
Answer: Fals...
Given a table data (click to see the figure). And assume that this is on a device at 160 dpi
Given a table data (click to see the figure). And assume that this is on a device at 160 dpi
Answer: dp * scaler = p...
What is the permission you need to declare in AndroidManifes
What is the permission you need to declare in AndroidManifes
Answer: WRITE_EXTERNAL_STORAG...
In Android, which method you can use to obtain the path of the external storage
In Android, which method you can use to obtain the path of the external storage
Answer: getExternalStorageDirectory(...
In Android, what does dp unit stand for
In Android, what does dp unit stand for
Answer: density-independen...
Toast is a class to display a message in Android. How to set position of a Toast
Toast is a class to display a message in Android. How to set position of a Toast
Answer: Using setGravity(...
Read the following 2 URLs and answer the question
Read the following 2 URLs and answer the question
Answer: Tru...
How can you define the minimum version of Android required
How can you define the minimum version of Android required
Answer: Using the minSdkVersion attribute in the AndroidMa...
In Android, which manifest permission is needed when use GPS location
In Android, which manifest permission is needed when use GPS location
Answer: ACCESS_FINE_LOCATIO...
Statement A: android.telephony.SmsManager class can send SMS on both GSM and CDMA network
Statement A: android.telephony.SmsManager class can send SMS on both GSM and CDMA network
Answer: Statement A is True, and Statement B is Fa...
Does AsyncTask create new thread in background?
Does AsyncTask create new thread in background?
Answer: Tru...
Read the following content and answer the question
Read the following content and answer the question
Answer: SmsManager&l...
In Android, which layout mode defines the positions of each component relative to each other
In Android, which layout mode defines the positions of each component relative to each other
Answer: RelativeLayou...
In Android, which statement is NOT correct about AsyncTask
In Android, which statement is NOT correct about AsyncTask
Answer: none o...
In Android, which of the following statement is CORRECT to reload a layout
In Android, which of the following statement is CORRECT to reload a layout
Answer: setContentView(R.layout.some_layout...
How to set position of a Sencha Touch component?
How to set position of a Sencha Touch component?
Answer: all of abov...
How many css file can be included in a Sencha Touch project ?
How many css file can be included in a Sencha Touch project ?
Answer: man...
Which are location provider in Android ?
Which are location provider in Android ?
Answer: LB...
Which method to opena Http connection to an Uri?
Which method to opena Http connection to an Uri?
Answer: url.openConnection(...
Android Async Task create new thread in background
Android Async Task create new thread in background
Answer: tru...
If the action is ACTION_CALL, what the data field would be ?
If the action is ACTION_CALL, what the data field would be ?
Answer: URI with the number to cal...
How many main approaches to build GUI of Android app?
How many main approaches to build GUI of Android app?
Answer: ...
How to play a video in HTML5 ?
How to play a video in HTML5 ?
Answer: Insert<video> tag to HTML5 page only, the video is played automaticall...
Which statement is correct about web storage ?
Which statement is correct about web storage ?
Answer: It can be accessed by several web page running in the same domai...
Which of the following is best choice for simple animation for your website ?
Which of the following is best choice for simple animation for your website ?
Answer: JavaScrip...
Android is based on which language?
Android is based on which language?
Answer: Jav...
Which company developed android?
Which company developed android?
Answer: Android In...
Android: Which statement is NOT correct about Toasts?
Android: Which statement is NOT correct about Toasts?
Answer: None of abov...
Android: Which statement does not correct about Activity?
Android: Which statement does not correct about Activity?
Answer: None of abov...
Android: Is the main thread called the UI thread?
Android: Is the main thread called the UI thread?
Answer: Ye...
In class SQLiteOpenHelper class, there are 2 methods we should usually override. What are they?
In class SQLiteOpenHelper class, there are 2 methods we should usually override. What are they?
Answer: onCreate() and onUpgrade(...
You must declare all application components in Manifest file in this way:
You must declare all application components in Manifest file in this way:
Answer: <provider> elements for content provider...
How many CSS files can be included in a Sencha Touch project?
How many CSS files can be included in a Sencha Touch project?
Answer: Man...
Which are location providers in android
Which are location providers in android
Answer: GP...
Which statement is NOT correct about PhoneGap?
Which statement is NOT correct about PhoneGap?
Answer: It doesn't support for Java phon...
Which method to open a Hap connection to an Uri?
Which method to open a Hap connection to an Uri?
Answer: url.openConnection(...
How to listen to an event in Sencha Touch class?
How to listen to an event in Sencha Touch class?
Answer: Write event handler within listeners:{} bod...
What is TRUE about localStorage?
What is TRUE about localStorage?
Answer: It is never expire...
What is value on component's attribute layout_widtlf and layout_heighl to display the component big enough to
What is value on component's attribute layout_widtlf and layout_heighl to display the component big enough to
Answer: wrap_conten...
Intent myIntent = new Intent(this. ActivityTwo.class);
Intent myIntent = new Intent(this. ActivityTwo.class);
Answer: myIntent is explicit Inten...
What is not true about the Android application lifecycle
What is not true about the Android application lifecycle
Answer: Each activity of an app is run in its own proces...
Android AsyncTask create new thread in background
Android AsyncTask create new thread in background
Answer: Tru...
What are location providers in Android?
What are location providers in Android?
Answer: GPS & Networ...
There are five different methods to store persistent data. They are: Shared Preferences. Internal Storage. External Storage. Network and __?
There are five different methods to store persistent data. They are: Shared Preferences. Internal Storage. External Storage. Network and __?
Answer: SQLite...
Android MapActivity is
Android MapActivity is
Answer: Base class with code to manage the boring necessities of any activity that displays a MapVie...
If the action is ACTION_CALL. what the data field would be?
If the action is ACTION_CALL. what the data field would be?
Answer: URI with the number to cal...
How to define a new Sencha Touch class?
How to define a new Sencha Touch class?
Answer: Use Extdefine(...
What is NOT correct about Store in Sencha Touch?
What is NOT correct about Store in Sencha Touch?
Answer: Load data via a Prox...
How to make a TextView to be editable?
How to make a TextView to be editable?
Answer: Either set its attribute editable ='true' or Use EditText class instead of TextView clas...
Which class do we use for listening location update?
Which class do we use for listening location update?
Answer: LocationManager clas...
Do we need to register all of View classes in app.js with Sencha Touch?
Do we need to register all of View classes in app.js with Sencha Touch?
Answer: N...
Which statement is correct about web storage?
Which statement is correct about web storage?
Answer: It is key/value dat...
Which of the following is best choice for simple animations for your website?
Which of the following is best choice for simple animations for your website?
Answer: JavaScrip...
In android, normally SDCard is
In android, normally SDCard is
Answer: External storag...
Do we need to declare all of Controller in app.js with Sencha Touch?
Do we need to declare all of Controller in app.js with Sencha Touch?
Answer: Ye...
Android: When a dialog is requested for the first time, which method will Android call from your Activity?
Android: When a dialog is requested for the first time, which method will Android call from your Activity?
Answer: onCreateDialog(int...
How to show or hide a Sencha Touch component?
How to show or hide a Sencha Touch component?
Answer: Call .show() or .hide() method of component itsel...
What are 2 ways a Service can run?
What are 2 ways a Service can run?
Answer: Bounded and Unbounde...
Which activity class do you need to inherit to show Google map?
Which activity class do you need to inherit to show Google map?
Answer: MapActivity clas...
How to change the main color of Sencha Touch application?
How to change the main color of Sencha Touch application?
Answer: Change the $base-color variable in app.scs...
Which method to display a dialog?
Which method to display a dialog?
Answer: show(...
What is base of all Sencha Touch component?
What is base of all Sencha Touch component?
Answer: ExtComponen...
How to set layout's attribute programmatically in android?
How to set layout's attribute programmatically in android?
Answer: Use LayoutParams clas...
SQLite database save data in
SQLite database save data in
Answer: Internal storag...
By default UI components made in the UI editor should have text defined in file?
By default UI components made in the UI editor should have text defined in file?
Answer: string.xm...
Android: Where we can create tables and columns to them, create views or triggers?
Android: Where we can create tables and columns to them, create views or triggers?
Answer: onCreate(...
In android intent. The activity can be embedded inside of another activity that hosts gadgets is belonged to
In android intent. The activity can be embedded inside of another activity that hosts gadgets is belonged to
Answer: CATEGORY_GADGE...
Intent mylntent = new Intent(IntentACTION_VIEW Uri.pars("http://www.google.com")); startActivity(myIntent)
Intent mylntent = new Intent(IntentACTION_VIEW Uri.pars("http://www.google.com")); startActivity(myIntent)
Answer: myIntent is implicit Inte...
Is color a new HTML5 element of input type?
Is color a new HTML5 element of input type?
Answer: ye...
How to register a broadcast receiver?
How to register a broadcast receiver?
Answer: Via AndroidManifestxml fil...
Android: Do we need API key for displaying Google Maps in Android?
Android: Do we need API key for displaying Google Maps in Android?
Answer: ye...
On android services, onStart() and onBind() are the same?
On android services, onStart() and onBind() are the same?
Answer: Fals...
Which permission needed in order to use MapActivity?
Which permission needed in order to use MapActivity?
Answer: <uses-permission android:name="android.permission.INTERNET" />...
How to get the form data in Sencha Touch?
How to get the form data in Sencha Touch?
Answer: getFormInstance().getValues()...
How to apply stylesheet with HTML element by id?
How to apply stylesheet with HTML element by id?
Answer: #i...
How to check if browser supports web storage?
How to check if browser supports web storage?
Answer: Check if typeof(Storage) !== "undefined...
Does HTML5 native support for local storage?
Does HTML5 native support for local storage?
Answer: Tru...
Which Android File API to create a file?
Which Android File API to create a file?
Answer: openFileOutput(...
IntentFilters are typically defined via
IntentFilters are typically defined via
Answer: Both of abov...
In HTML5, onblur and onfocus are:
In HTML5, onblur and onfocus are:
Answer: Event attribute...
Graphics defined by SVG is in which format?
Graphics defined by SVG is in which format?
Answer: XM...
Which kind of application when creating with Sencha Touch?
Which kind of application when creating with Sencha Touch?
Answer: Hybrid ap...
Which doctype is correct for HTML5?
Which doctype is correct for HTML5?
Answer: <!DOCTYPE html>...
Which file is entry point for Sencha Touch app?
Which file is entry point for Sencha Touch app?
Answer: app.j...
What is NOT correct about Controller in Sencha Touch?
What is NOT correct about Controller in Sencha Touch?
Answer: Responsible for responding to events that occur within your ap...
Does CSS support to detecting device size and orientation?
Does CSS support to detecting device size and orientation?
Answer: Tru...
What is the correct HTML5 element for playing video files?
What is the correct HTML5 element for playing video files?
Answer: <video>...
What statement is NOT correct about Canvas?
What statement is NOT correct about Canvas?
Answer: None of abov...
How does Android system manage activity's life cycle
How does Android system manage activity's life cycle
Answer: Via system activity stac...
In auto-generated code of an Android app, what is R class?
In auto-generated code of an Android app, what is R class?
Answer: Contains IDs of the project resource...
Activity results handled by the onActivityResult() method are differentiated from one another using which
Activity results handled by the onActivityResult() method are differentiated from one another using which
Answer: Result Cod...
Which of the following are true about Intent.CALL_ACTION?
Which of the following are true about Intent.CALL_ACTION?
Answer: dial + dialle...
Subscribe to:
Posts (Atom)