Mobile Application Development - Android

Descripción

ThirdYear Third Year Test sobre Mobile Application Development - Android, creado por Faheem Ahmed el 18/08/2016.
Faheem Ahmed
Test por Faheem Ahmed, actualizado hace más de 1 año
Faheem Ahmed
Creado por Faheem Ahmed hace más de 7 años
1473
0

Resumen del Recurso

Pregunta 1

Pregunta
What is the name of the views that allow to organize the position of the graphical components on the active screen?
Respuesta
  • frames
  • containers
  • layouts
  • grids

Pregunta 2

Pregunta
What is a view?
Respuesta
  • It is the layout of the screen displayed to the user and which serves as an interface for your application.
  • It is a graphical element which can be used in the user interface of your application.
  • It is a structure which organizes the position of the different buttons, texts and images of the graphical user interface of your application.

Pregunta 3

Pregunta
Is it possible to use multiple views on a single screen of the graphical user interface of your application?
Respuesta
  • Yes
  • No

Pregunta 4

Pregunta
Is it possible to nest a layout within another one?
Respuesta
  • Yes
  • No

Pregunta 5

Pregunta
Android buttons have a predefined style. The size and color of a button and its text cannot be changed.
Respuesta
  • True
  • False

Pregunta 6

Pregunta
Associating a name (unique id) to a view is mandatory when using what kind of layout?
Respuesta
  • a horizontal linear layout
  • a relative layout
  • a vertical linear layout

Pregunta 7

Pregunta
Which actions can be triggered by a button click? (check all that apply)
Respuesta
  • start a different activity
  • change appearance of other views of the same activity
  • change appearance of the button

Pregunta 8

Pregunta
When an activity A starts an activity B (check all that apply):
Respuesta
  • the activity B is not displayed immediately: it will come to the foreground only when the user presses the back button of the phone
  • the activity B comes to the foreground
  • the activity A is paused or stopped
  • the activity A is destroyed

Pregunta 9

Pregunta
Activities are completely independent from one another, they cannot share data.
Respuesta
  • True
  • False

Pregunta 10

Pregunta
What should you try to keep to a minimum when designing a mobile app?
Respuesta
  • The number of buttons which call a given method.
  • The amount of data to be typed in by the user using the soft keyboard.
  • The amount of information passed from one activity to another.
  • The number of activities.

Pregunta 11

Pregunta
Android Studio is:
Respuesta
  • A tool that allows to copy large files on a smartphone.
  • A tool that allows to build and test Android applications.
  • A tool that allows to dump the memory of a smartphone.

Pregunta 12

Pregunta
The AndroidManifest.xml file is a file that contains:
Respuesta
  • The resources of the application
  • The variable and the methods of an activity
  • The properties of the application

Pregunta 13

Pregunta
What is the purpose of the Android Virtual Device (AVD)?
Respuesta
  • Modify the user interface of an application
  • Edit and compile Android applications
  • Run and test Android application on an emulator

Pregunta 14

Pregunta
Before running an Android application on a Virtual device, you must connect your smartphone to your PC.
Respuesta
  • True
  • False

Pregunta 15

Pregunta
The reason for selecting an older SDK release is that this ensures that the finished application will be able to run on the widest possible range of Android devices.
Respuesta
  • True
  • False

Pregunta 16

Pregunta
Give the name of the 2 most basic activity templates we use in general to build a basic Android application.
Respuesta
  • Scrolling Activity
  • Empty Activity
  • Blank Activity
  • Fullscreen Activity
  • Login Activity
  • Google Maps Activity

Pregunta 17

Pregunta
In the source code of an application, what function does it used to get a reference to a component of the user interface ?
Respuesta
  • findViewById()
  • setOnClickListener()
  • OnClick()
  • findByID()

Pregunta 18

Pregunta
When an application is compiled a class named R is created. What does it contains ?
Respuesta
  • It contains references to the application resources
  • It contains references to the user interface resources
  • It contains a reference to the component properties of the user interface

Pregunta 19

Pregunta
The id property of a component can't be modified ?
Respuesta
  • True
  • False

Pregunta 20

Pregunta
Which folder of your Android project holds the XML files that describe the graphical interfaces of the application?
Respuesta
  • res/layout
  • values
  • res/drawable
  • manifests
  • gui

Pregunta 21

Pregunta
You have defined a graphical user interface in an XML layout file named myUI. You create a new activity in a file name MyActivity.java. How to you specify that MyActivity displays myUI?
Respuesta
  • It's impossible. Since the activity is named MyActivity, the system will try to load a layout named "activity_my.xml".
  • n the onCreate method of MyActivity.java I call the setContentView method and I provide "R.layout.myUI" as parameter.
  • In the onCreate method of MyActivity.java I use "myUI.display();"
  • In the onCreate method of MyActivity.java I use ""R.id.myUI.display();"

Pregunta 22

Pregunta
The visual structure of the user interface can be defined...
Respuesta
  • exclusively in the Java code, by creating objects extending View or ViewGroup.
  • exclusively in an XML file listing the different Views and ViewGroups
  • either in the Java code or in an XML file but not in both at the same time for a single "screen".
  • in the Java code and/or in an XML file

Pregunta 23

Pregunta
What could be the interest of creating a button (or any other widget) from the Java code of an activity rather than from the associated XML layout file?
Respuesta
  • It makes it possible to associate with the button a text which changes according to the language settings of the device.
  • It requires fewer lines of code.
  • It makes it possible to create the button only if a given condition is fulfilled at runtime.

Pregunta 24

Pregunta
What could be the interest of creating a button (or any other widget) from an XML layout file rather than from the Java code of an activity?
Respuesta
  • It separates the visual design and presentation aspects of the application from its control. Each aspect can even be taking care of by specialized persons.
  • The design view allows for a preview of the result without the need to deploy the app on a (real or emulated) device.
  • It makes the display of the application faster.

Pregunta 25

Pregunta
Name the class [blank_start]-----------------[blank_end] which represents pop-up messages.
Respuesta
  • Toast

Pregunta 26

Pregunta
In addition to the activity or application context, and the message to display, which parameter does the makeText method from the Toast class take?
Respuesta
  • the priority of the message (Toast.URGENT or Toast.NON_URGENT)
  • the background color of the pop-up (Color.BLUE, Color.BLACK...)
  • the duration of the pop-up (Toast.LENGTH_SHORT or Toast.LENGTH_LONG)
  • the position of the pop-up (Toast.TOP, Toast.CENTER, or Toast.BOTTOM)

Pregunta 27

Pregunta
Which method from the Toast class allows you to display a pop-up message you've prepared?
Respuesta
  • bringToForeground()
  • display()
  • sendToFront()
  • show()

Pregunta 28

Pregunta
In an XML layout file you specify that "onClick" a button must call the "doSomething" method. In the activity Java file you create a method "public void doSomething(View v)". What does the 'v' parameter refer to?
Respuesta
  • It refers to the graphical preferences set by the user.
  • It points to the layout onto which the button is positioned.
  • It indicates the view which triggered the method call.

Pregunta 29

Pregunta
The following code displays a pop-up message reading "hello" for a short duration: Toast.makeText(getApplicationContext(), "hello", Toast.LENGTH_SHORT);
Respuesta
  • True
  • False

Pregunta 30

Pregunta
For how long (in second) does a Toast displayed for a duration "Toast.LENGTH_SHORT" stays on the screen?
Respuesta
  • 2
  • 3
  • 3.5
  • 4

Pregunta 31

Pregunta
Button myButton = (Button)findViewById(R.id.myBbutton); myButton.[blank_start]-------------[blank_end](Color.BLUE); Which method must be called at the location indicated with "-----" to turn the background of the button to blue.?
Respuesta
  • setBackgroundColor

Pregunta 32

Pregunta
Which layout allows you to specify the position of a view using other views as references?
Respuesta
  • GridLayout
  • LinearLayout
  • RelativeLayout

Pregunta 33

Pregunta
Which among these is NOT a part of Android's native libraries
Respuesta
  • WebKit
  • Dallvik
  • OpenGL
  • SqLite

Pregunta 34

Pregunta
Select a component which is NOT part of Android architecture.
Respuesta
  • Android Framework
  • Libraries
  • Linux Kernel
  • Android Document

Pregunta 35

Pregunta
Required folder when Android project is created.
Respuesta
  • build/
  • build
  • bin
  • bin/

Pregunta 36

Pregunta
Adb stands for
Respuesta
  • Android Drive Bridge.
  • Android Debug Bridge.
  • Android Destroy Bridge.
  • Android Delete Bridge

Pregunta 37

Pregunta
A fragment is a part or portion of
Respuesta
  • an information
  • a time
  • an activity
  • a thing

Pregunta 38

Pregunta
Which of these are not one of the three main components of the APK?
Respuesta
  • Dalvik Executables
  • Resources
  • Native Libraries
  • WebKit

Pregunta 39

Pregunta
An activity can be thought of as corresponding to what ?
Respuesta
  • A Java Project
  • A Java Class
  • A method Call
  • An Object field

Pregunta 40

Pregunta
What runs in the background and doesnot have any UI components ?
Respuesta
  • Intents
  • Content Providers
  • Services
  • Applications

Pregunta 41

Pregunta
What built-in database is Android shipped with ?
Respuesta
  • SQLite
  • Apache
  • MySQL
  • Oracle

Pregunta 42

Pregunta
You can shut down an activity by calling the method?
Respuesta
  • onDestory()
  • finishActivity()
  • finish()
  • None of the above

Pregunta 43

Pregunta
What does the .apk extension stand for?
Respuesta
  • Application Package
  • Application Program Kit
  • Android Proprietary Kit
  • Android Package

Pregunta 44

Pregunta
What is DDMS in android?
Respuesta
  • Dalvik Device Memory Server
  • Device Dalvik Memory Services
  • Dalvik Device Monitoring Services
  • Dalvik Debug Monitor Services

Pregunta 45

Pregunta
Immediate base class for activity and services
Respuesta
  • CONTEXT
  • APPLICATIONCONTEXT
  • CONTEXTAPP
  • ONCREATE

Pregunta 46

Pregunta
What is the name of the class used by Intent to store additional information?
Respuesta
  • Bundle
  • DataStore
  • Extra
  • Parcelable

Pregunta 47

Pregunta
Which of the following is true about object arrayAdapter declared in the code below? String[] items = {"Item 1","Item 2","Item 3"); ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, items); listView.setAdapter(arrayAdapter);
Respuesta
  • It creates four views for listView.
  • It creates Buttons for each String in array items.
  • It replaces the layout of the activity with three consecutive TextView items.
  • It creates a TextView for each String in array items.

Pregunta 48

Pregunta
Which of the following add a click listener to items in a listView?
Respuesta
  • onItemClicked
  • onItemClickListener
  • onListItemClickListener
  • onClickListener

Pregunta 49

Pregunta
Consider the following the code: public boolean onCreateOptionsMenu(Menu menu) { MenuInflater inflater = getMenuInflater(); inflater.inflate(R.menu.game_menu, menu); return true; } Which of the following is true about the code above? ( More than ONE may be Correct).
Respuesta
  • This method handles clicks and assign actions to menu items.
  • This function inflates an XML file in the res/menu folder into menu items.
  • The code is auto generated and should not be edited.
  • This method inflates an XML file in the res/layout folder into layout.

Pregunta 50

Pregunta
What is the name of the folder that contains the R.java file?
Respuesta
  • src
  • res
  • bin
  • gen
Mostrar resumen completo Ocultar resumen completo

Similar

BMSC335 Lecture 3 Week 1
Maddie McIntyre
Peptic Ulcer
Miar Abdelhamid
Immunology
El Prs
Insurance Quiz
crabbette
Modelo de Examen de Inglés - Selectividad
juanmadj
La Segunda República: Parte 1
Diego Santos
Guerra Civil Española: Fechas Clave
maya velasquez
Linea del tiempo Ciencia
erick romero
Diferencias entre el latín culto y el latín vulgar
Carlos' Badillo Hdez
MAPA LITERATURA PRECOLOMBINA
Sharit Romero Bolaño
OPERACIONES CON POLINOMIOS
Leticia Pérez Nicolás