Mobile Application Development - Android

Description

ThirdYear Third Year Quiz on Mobile Application Development - Android, created by Faheem Ahmed on 18/08/2016.
Faheem Ahmed
Quiz by Faheem Ahmed, updated more than 1 year ago
Faheem Ahmed
Created by Faheem Ahmed over 7 years ago
1473
0

Resource summary

Question 1

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

Question 2

Question
What is a view?
Answer
  • 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.

Question 3

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

Question 4

Question
Is it possible to nest a layout within another one?
Answer
  • Yes
  • No

Question 5

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

Question 6

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

Question 7

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

Question 8

Question
When an activity A starts an activity B (check all that apply):
Answer
  • 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

Question 9

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

Question 10

Question
What should you try to keep to a minimum when designing a mobile app?
Answer
  • 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.

Question 11

Question
Android Studio is:
Answer
  • 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.

Question 12

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

Question 13

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

Question 14

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

Question 15

Question
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.
Answer
  • True
  • False

Question 16

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

Question 17

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

Question 18

Question
When an application is compiled a class named R is created. What does it contains ?
Answer
  • 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

Question 19

Question
The id property of a component can't be modified ?
Answer
  • True
  • False

Question 20

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

Question 21

Question
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?
Answer
  • 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();"

Question 22

Question
The visual structure of the user interface can be defined...
Answer
  • 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

Question 23

Question
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?
Answer
  • 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.

Question 24

Question
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?
Answer
  • 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.

Question 25

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

Question 26

Question
In addition to the activity or application context, and the message to display, which parameter does the makeText method from the Toast class take?
Answer
  • 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)

Question 27

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

Question 28

Question
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?
Answer
  • 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.

Question 29

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

Question 30

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

Question 31

Question
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.?
Answer
  • setBackgroundColor

Question 32

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

Question 33

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

Question 34

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

Question 35

Question
Required folder when Android project is created.
Answer
  • build/
  • build
  • bin
  • bin/

Question 36

Question
Adb stands for
Answer
  • Android Drive Bridge.
  • Android Debug Bridge.
  • Android Destroy Bridge.
  • Android Delete Bridge

Question 37

Question
A fragment is a part or portion of
Answer
  • an information
  • a time
  • an activity
  • a thing

Question 38

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

Question 39

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

Question 40

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

Question 41

Question
What built-in database is Android shipped with ?
Answer
  • SQLite
  • Apache
  • MySQL
  • Oracle

Question 42

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

Question 43

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

Question 44

Question
What is DDMS in android?
Answer
  • Dalvik Device Memory Server
  • Device Dalvik Memory Services
  • Dalvik Device Monitoring Services
  • Dalvik Debug Monitor Services

Question 45

Question
Immediate base class for activity and services
Answer
  • CONTEXT
  • APPLICATIONCONTEXT
  • CONTEXTAPP
  • ONCREATE

Question 46

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

Question 47

Question
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);
Answer
  • 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.

Question 48

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

Question 49

Question
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).
Answer
  • 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.

Question 50

Question
What is the name of the folder that contains the R.java file?
Answer
  • src
  • res
  • bin
  • gen
Show full summary Hide full summary

Similar

BMSC335 Lecture 3 Week 1
Maddie McIntyre
Peptic Ulcer
Miar Abdelhamid
Immunology
El Prs
Insurance Quiz
crabbette
Constitutional Law
jesusreyes88
enzymes and the organ system
Nour
All Edexcel GCSE PE key terms
Millie Berrett
French diet and health vocab
caitlindavies8
Chemistry (C3)
Amy Lashkari
Business Management & Strategy PHR Study Guide
Cari Hawthorne
2PR101 1.test - 3. část
Nikola Truong