(Pre-Finals) Mobile Systems and Technologies Mocktest BSIT 604

(Pre-Finals) Mobile Systems and Technologies Mocktest BSIT 604
7回閲覧 • 62問 • 1ヶ月前
  • Xai Alexandrei Delos Reyes
  • 通報

    問題一覧

  • 1

    Which are examples of User Interaction?

    Talking, Gestures, Tapping, Typing

  • 2

    Which is NOT CONSIDERED when designing an interactive app:

    Maximize steps

  • 3

    It is usually a rectangle or rounded rectangle with a descriptive caption or icon in its center. This can have text or icon or both.

    Button

  • 4

    Which is the correct syntax for creating a button with text?

    <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/button_text" />

  • 5

    Which is the correct syntax for creating a button with a icon?

    <ImageButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/button_icon" />

  • 6

    Each button has three (3) states. What are they?

    normal, disabled, and pressed

  • 7

    Which is NOT a state of a button?

    Double-Tapped

  • 8

    This button appears lifted from the screen—the shading around it indicates that it is possible to tap or click it.

    Raised button

  • 9

    Also known as borderless button is a text-only button that looks flat and doesn't have a shadow.

    Flat button

  • 10

    It is used to display image resources. It can be turned into a button by adding the android:onClick attribute in the XML layout.

    ImageView

  • 11

    The image for the ImageView must already be stored in what directory of the project?

    app > src > main > res > drawable folder

  • 12

    <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="drawable/icecream_circle" android:onClick="orderIcecream"/> Where is the error in this program?

    android:src='drawable/icecream_circle'

  • 13

    It is a circular button that appears to float above the layout.

    Floating action button (FAB)

  • 14

    It occurs when a user places one or more fingers on the touchscreen, and the app interprets that pattern of touches as a gesture, such as a tap, touch & hold, double-tap, fling, or scroll.

    Touch Gesture

  • 15

    These are interactive elements in the app's UI that accept data input.

    Input controls

  • 16

    It is used for entering and modifying text.

    EditText

  • 17

    Which syntax is correct in creating a EditText?

    <EditText android:id="@+id/plain_text_input" android:layout_height="wrap_content" android:layout_width="match_parent" android:inputType="text"/>

  • 18

    It is used for selecting one or more options.

    Check Box

  • 19

    Which is the CORRECT syntax in creating a checkbox?

    <CheckBox android:id="@+id/checkbox1_chocolate" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/chocolate_syrup" />

  • 20

    It restricts the user to select only one (1) option from a set.

    Radio Button

  • 21

    <RadioGroupComponent android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <RadioButton android:id="@+id/radio_pirates" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/pirates" android:onClick="onRadioButtonClicked"/> <RadioButton android:id="@+id/radio_ninjas" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/ninjas" android:onClick="onRadioButtonClicked"/> </RadioGroupComponent> Which is the error in this RadioButton?

    <RadioGroupComponent />

  • 22

    This is a drop-down menu for selecting only one (1) option.

    Spinner

  • 23

    Which is the correct syntax for creating a string array in an xml file?

    <resources> <string-array name="language_array"> <item>English</item> <item>Filipino</item> <item>Spanish</item> <item>Others</item> </string-array> </resources>

  • 24

    Which is the correct syntax in creating a spinner layout?

    <Spinner android:id="@+id/language_spinner" android:layout_width="fill_parent" android:layout_height="wrap_content" android:entries="@array/language_array" />

  • 25

    Where's the error in this statement? String text = mySpinner.getSelecteditem().toString();

    getSelecteditem()

  • 26

    It lets the user change a setting between two (2) states.

    Toggle Button

  • 27

    Which is the correct syntax in creating a toggle button

    <ToggleButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/my_toggle" androd:text="@string/turn_on_or_off" android:onClick="onToggleClick" />

  • 28

    A type of toggle button for Android 4.0+ that provides a slider for selection.

    Switch

  • 29

    Which is the correct syntax for creating a switch?

    <Switch android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/my_switch" android:text="@string/turn_on_or_off" android:onClick="onSwitchClick"/>

  • 30

    It is dragged to the left or right to indicate a current progress level.

    SeekBar

  • 31

    Which is the correct syntax for creating a SeekBar?

    <SeekBar android:id="@+id/seekBar1" android:layout_width="300dp" android:layout_height="wrap_content" android:max="100" android:progress="50" />

  • 32

    Which is the correct syntax that stores the progress of the SeekBar in an int variable?

    int status = mySeekBar.getProgress();

  • 33

    It occurs when the user interacts with an input control or item in the user interface.

    Event

  • 34

    It is an interface in the View class that contains a single callback method. These methods will be called when the View to which the listener has been registered is triggered by user interaction with the item in the UI

    Event Listener

  • 35

    "When the user either touches or focuses upon the item" What callback method is being described?

    onClick()

  • 36

    "When the user either touches or focuses upon the item for a second" What callback method is being described?

    onLongClick()

  • 37

    "When the user is focused on the item and presses or releases a hardware key on the device" What callback method is being described?

    onKey()

  • 38

    "When the user performs an action qualified as a touch event (a press, a release, or any movement gesture on the screen)" What callback method is being described?

    onTouch()

  • 39

    public void onCheckBoxClicked(View view) { boolean checked = ((CheckBox) view).checked(); switch(view.getId()) { case R.id.checkbox1: if (checked) // Actions here else // Actions here break; case R.id.checkbox2: if (checked) // Actions here else // Actions here break; } } Which is incorrect in this code?

    boolean checked = ((CheckBox) view).checked();

  • 40

    It is a graphic that can be drawn to the screen.

    Drawable

  • 41

    This class is used for adding rich images in an app with a minimal impact on its performance.

    Drawable Class

  • 42

    It is a modern image format developed by Google that provides superior lossless and lossy compression for images on the web

    WebP

  • 43

    SELECT ALL image formats that Android Supports

    WebP, JPG/JPEG, GIF, PNG, BMP

  • 44

    Which of the following is NOT part of the recommended image formats?

    GIF

  • 45

    Images should be saved in what directory?

    app/src/main/res/drawable

  • 46

    Which is the correct syntax to display a drawable in XML

    <ImageView android:id="@+id/ic" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/ice_cream" />

  • 47

    Which is the correct syntax to use an image in Java?

    ImageView img = new ImageView(this); img.setImageResource(R.drawable.ice_cream);

  • 48

    Which is the correct syntax to match the bounds of the image with the dimension of the drawable?

    img.setAdjustViewBounds(true); img.setLayoutParams(new ViewGroup.LayoutParams( ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));

  • 49

    Which is the correct syntax to add the image to the layout and set the layout as the content view:

    ConstraintLayout cl = new ConstraintLayout(this); cl.addView(img); setContentView(cl);

  • 50

    It is a collection of attributes that define the look and format of a view

    Style

  • 51

    It refers to the styles that Android provides.

    Platform Styles

  • 52

    To create a style, add a <style> element inside a <resources> element in any XML file located in what folder?

    values folder inside the project's res folder.

  • 53

    Which is NOT included in a <style> element?

    Layout

  • 54

    Which is the correct syntax for creating a style?

    <resources> <style name="MyFont"> <item name="android:typeface">monospace</item> <item name="android:textColor">#D7D6D7</item> </style> </resources>

  • 55

    Which is the correct syntax to apply the style to a component?

    <TextView style="@style/MyFont" android:text="@string/code_string" />

  • 56

    It allows a style to inherit the properties of an existing style.

    Inheritance

  • 57

    Which statement BEST DESCRIBES how to inherit a custom style?

    To inherit a custom style, use the name of the style you want to inherit as the first part of the new style's name and separate the parts with a period. Syntax: name="StyletoInherit.NewStyle"

  • 58

    Which is the correct syntax to inherit a platform style?

    <style name="Text1" parent="@android:style/TextAppearance"> <item name="android:textColor">#00FF00</item> </style>

  • 59

    Which is the correct syntax in creating a custom style, where the inherited style is named "MyFont"?

    <style name="MyFont.BlueLarge"> <item name="android:textColor">#0000FF</item> <item name="android:textSize">36sp</item> </style>

  • 60

    It is a collection of attributes that define the look and format of an activity or an entire app. Any style can be used as a theme.

    Theme

  • 61

    <!-- Base application theme. --> <style name="AppTheme" parent="Theme.Light.DarkActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> </style> where is the error in this theme xml file?

    <style name="AppTheme" parent="Theme.Light.DarkActionBar">

  • 62

    What is the correct syntax to apply a theme to an activity which is declared inside an <activity> element in the manifest file.

    <activity android:theme="@android:style/Theme.Dialog">

  • The Contemporary World Mock test (Prelims)

    The Contemporary World Mock test (Prelims)

    Xai Alexandrei Delos Reyes · 3回閲覧 · 58問 · 2年前

    The Contemporary World Mock test (Prelims)

    The Contemporary World Mock test (Prelims)

    3回閲覧 • 58問 • 2年前
    Xai Alexandrei Delos Reyes

    Computing Mock test (Prelims)

    Computing Mock test (Prelims)

    Xai Alexandrei Delos Reyes · 67問 · 2年前

    Computing Mock test (Prelims)

    Computing Mock test (Prelims)

    67問 • 2年前
    Xai Alexandrei Delos Reyes

    Programming Mock Test (Prelims)

    Programming Mock Test (Prelims)

    Xai Alexandrei Delos Reyes · 64問 · 2年前

    Programming Mock Test (Prelims)

    Programming Mock Test (Prelims)

    64問 • 2年前
    Xai Alexandrei Delos Reyes

    Entrepreneurship Mock Test (Prelims)

    Entrepreneurship Mock Test (Prelims)

    Xai Alexandrei Delos Reyes · 23問 · 2年前

    Entrepreneurship Mock Test (Prelims)

    Entrepreneurship Mock Test (Prelims)

    23問 • 2年前
    Xai Alexandrei Delos Reyes

    Computing Mock Test (Midterms) BSIT 107

    Computing Mock Test (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 76問 · 2年前

    Computing Mock Test (Midterms) BSIT 107

    Computing Mock Test (Midterms) BSIT 107

    76問 • 2年前
    Xai Alexandrei Delos Reyes

    Math Mock Test (Prelims)

    Math Mock Test (Prelims)

    Xai Alexandrei Delos Reyes · 48問 · 2年前

    Math Mock Test (Prelims)

    Math Mock Test (Prelims)

    48問 • 2年前
    Xai Alexandrei Delos Reyes

    Programming Mock Test (Midterms) BSIT 107

    Programming Mock Test (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 52問 · 2年前

    Programming Mock Test (Midterms) BSIT 107

    Programming Mock Test (Midterms) BSIT 107

    52問 • 2年前
    Xai Alexandrei Delos Reyes

    UTS Mock Test (Midterms) BSIT107

    UTS Mock Test (Midterms) BSIT107

    Xai Alexandrei Delos Reyes · 40問 · 2年前

    UTS Mock Test (Midterms) BSIT107

    UTS Mock Test (Midterms) BSIT107

    40問 • 2年前
    Xai Alexandrei Delos Reyes

    Entrepreneurship Mock Test (Midterms) BSIT 107

    Entrepreneurship Mock Test (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 38問 · 2年前

    Entrepreneurship Mock Test (Midterms) BSIT 107

    Entrepreneurship Mock Test (Midterms) BSIT 107

    38問 • 2年前
    Xai Alexandrei Delos Reyes

    Contemporary World Mock Test (Midterms) BSIT 107

    Contemporary World Mock Test (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 28問 · 2年前

    Contemporary World Mock Test (Midterms) BSIT 107

    Contemporary World Mock Test (Midterms) BSIT 107

    28問 • 2年前
    Xai Alexandrei Delos Reyes

    Math Mocktest (Midterms) BSIT 107

    Math Mocktest (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 24問 · 2年前

    Math Mocktest (Midterms) BSIT 107

    Math Mocktest (Midterms) BSIT 107

    24問 • 2年前
    Xai Alexandrei Delos Reyes

    Computer Programming Mocktest (Pre-finals)

    Computer Programming Mocktest (Pre-finals)

    Xai Alexandrei Delos Reyes · 26問 · 2年前

    Computer Programming Mocktest (Pre-finals)

    Computer Programming Mocktest (Pre-finals)

    26問 • 2年前
    Xai Alexandrei Delos Reyes

    Math Mocktest (Pre-Finals)

    Math Mocktest (Pre-Finals)

    Xai Alexandrei Delos Reyes · 19問 · 2年前

    Math Mocktest (Pre-Finals)

    Math Mocktest (Pre-Finals)

    19問 • 2年前
    Xai Alexandrei Delos Reyes

    Computing Mock Test (Pre-finals)

    Computing Mock Test (Pre-finals)

    Xai Alexandrei Delos Reyes · 36問 · 2年前

    Computing Mock Test (Pre-finals)

    Computing Mock Test (Pre-finals)

    36問 • 2年前
    Xai Alexandrei Delos Reyes

    Computing Mock Test Finals

    Computing Mock Test Finals

    Xai Alexandrei Delos Reyes · 26問 · 2年前

    Computing Mock Test Finals

    Computing Mock Test Finals

    26問 • 2年前
    Xai Alexandrei Delos Reyes

    Comprog 2nd sem (prelims) BSIT 205

    Comprog 2nd sem (prelims) BSIT 205

    Xai Alexandrei Delos Reyes · 63問 · 2年前

    Comprog 2nd sem (prelims) BSIT 205

    Comprog 2nd sem (prelims) BSIT 205

    63問 • 2年前
    Xai Alexandrei Delos Reyes

    Discrete Math 2nd sem (prelims) BSIT 205

    Discrete Math 2nd sem (prelims) BSIT 205

    Xai Alexandrei Delos Reyes · 36問 · 2年前

    Discrete Math 2nd sem (prelims) BSIT 205

    Discrete Math 2nd sem (prelims) BSIT 205

    36問 • 2年前
    Xai Alexandrei Delos Reyes

    Art Appreciation (Prelim) BSIT 205

    Art Appreciation (Prelim) BSIT 205

    Xai Alexandrei Delos Reyes · 56問 · 2年前

    Art Appreciation (Prelim) BSIT 205

    Art Appreciation (Prelim) BSIT 205

    56問 • 2年前
    Xai Alexandrei Delos Reyes

    Ethics 2nd sem (Prelims) BSIT 205

    Ethics 2nd sem (Prelims) BSIT 205

    Xai Alexandrei Delos Reyes · 45問 · 2年前

    Ethics 2nd sem (Prelims) BSIT 205

    Ethics 2nd sem (Prelims) BSIT 205

    45問 • 2年前
    Xai Alexandrei Delos Reyes

    STS 2nd Sem (Prelim) BSIT 205

    STS 2nd Sem (Prelim) BSIT 205

    Xai Alexandrei Delos Reyes · 40問 · 2年前

    STS 2nd Sem (Prelim) BSIT 205

    STS 2nd Sem (Prelim) BSIT 205

    40問 • 2年前
    Xai Alexandrei Delos Reyes

    Systems Administration 2nd sem (Prelims) BSIT 205

    Systems Administration 2nd sem (Prelims) BSIT 205

    Xai Alexandrei Delos Reyes · 72問 · 2年前

    Systems Administration 2nd sem (Prelims) BSIT 205

    Systems Administration 2nd sem (Prelims) BSIT 205

    72問 • 2年前
    Xai Alexandrei Delos Reyes

    Discrete Mathematics (Midterms) BSIT 205

    Discrete Mathematics (Midterms) BSIT 205

    Xai Alexandrei Delos Reyes · 52問 · 2年前

    Discrete Mathematics (Midterms) BSIT 205

    Discrete Mathematics (Midterms) BSIT 205

    52問 • 2年前
    Xai Alexandrei Delos Reyes

    Art Appreciation (Midterm) BSIT 205

    Art Appreciation (Midterm) BSIT 205

    Xai Alexandrei Delos Reyes · 56問 · 2年前

    Art Appreciation (Midterm) BSIT 205

    Art Appreciation (Midterm) BSIT 205

    56問 • 2年前
    Xai Alexandrei Delos Reyes

    Ethics Mocktest (Midterms) BSIT205

    Ethics Mocktest (Midterms) BSIT205

    Xai Alexandrei Delos Reyes · 29問 · 2年前

    Ethics Mocktest (Midterms) BSIT205

    Ethics Mocktest (Midterms) BSIT205

    29問 • 2年前
    Xai Alexandrei Delos Reyes

    Comprog Mocktest (Midterm) BSIT 205

    Comprog Mocktest (Midterm) BSIT 205

    Xai Alexandrei Delos Reyes · 61問 · 2年前

    Comprog Mocktest (Midterm) BSIT 205

    Comprog Mocktest (Midterm) BSIT 205

    61問 • 2年前
    Xai Alexandrei Delos Reyes

    System Administration Mocktest (Midterms) BSIT 205

    System Administration Mocktest (Midterms) BSIT 205

    Xai Alexandrei Delos Reyes · 65問 · 2年前

    System Administration Mocktest (Midterms) BSIT 205

    System Administration Mocktest (Midterms) BSIT 205

    65問 • 2年前
    Xai Alexandrei Delos Reyes

    Math Mocktest (Pre-finals) BSIT 205

    Math Mocktest (Pre-finals) BSIT 205

    Xai Alexandrei Delos Reyes · 49問 · 2年前

    Math Mocktest (Pre-finals) BSIT 205

    Math Mocktest (Pre-finals) BSIT 205

    49問 • 2年前
    Xai Alexandrei Delos Reyes

    Art Appreciation Mocktest (Pre-finals) BSIT 205

    Art Appreciation Mocktest (Pre-finals) BSIT 205

    Xai Alexandrei Delos Reyes · 66問 · 2年前

    Art Appreciation Mocktest (Pre-finals) BSIT 205

    Art Appreciation Mocktest (Pre-finals) BSIT 205

    66問 • 2年前
    Xai Alexandrei Delos Reyes

    Ethics Mocktest (Pre-finals) BSIT 205

    Ethics Mocktest (Pre-finals) BSIT 205

    Xai Alexandrei Delos Reyes · 50問 · 2年前

    Ethics Mocktest (Pre-finals) BSIT 205

    Ethics Mocktest (Pre-finals) BSIT 205

    50問 • 2年前
    Xai Alexandrei Delos Reyes

    Computer Programming Mocktest (Pre-finals) BSIT 205

    Computer Programming Mocktest (Pre-finals) BSIT 205

    Xai Alexandrei Delos Reyes · 33問 · 2年前

    Computer Programming Mocktest (Pre-finals) BSIT 205

    Computer Programming Mocktest (Pre-finals) BSIT 205

    33問 • 2年前
    Xai Alexandrei Delos Reyes

    System Administration (Pre-finals) BSIT 205

    System Administration (Pre-finals) BSIT 205

    Xai Alexandrei Delos Reyes · 52問 · 2年前

    System Administration (Pre-finals) BSIT 205

    System Administration (Pre-finals) BSIT 205

    52問 • 2年前
    Xai Alexandrei Delos Reyes

    Art Appreciation Finals BSIT 205

    Art Appreciation Finals BSIT 205

    Xai Alexandrei Delos Reyes · 35問 · 1年前

    Art Appreciation Finals BSIT 205

    Art Appreciation Finals BSIT 205

    35問 • 1年前
    Xai Alexandrei Delos Reyes

    Data Structures and Algorithms (Mocktest) BSIT 307

    Data Structures and Algorithms (Mocktest) BSIT 307

    Xai Alexandrei Delos Reyes · 52問 · 1年前

    Data Structures and Algorithms (Mocktest) BSIT 307

    Data Structures and Algorithms (Mocktest) BSIT 307

    52問 • 1年前
    Xai Alexandrei Delos Reyes

    Object Oriented Programming Mock Test (Mocktest) BSIT 307

    Object Oriented Programming Mock Test (Mocktest) BSIT 307

    Xai Alexandrei Delos Reyes · 23問 · 1年前

    Object Oriented Programming Mock Test (Mocktest) BSIT 307

    Object Oriented Programming Mock Test (Mocktest) BSIT 307

    23問 • 1年前
    Xai Alexandrei Delos Reyes

    Human Computer Interactions Mocktest (Prelims) BSIT 307

    Human Computer Interactions Mocktest (Prelims) BSIT 307

    Xai Alexandrei Delos Reyes · 58問 · 1年前

    Human Computer Interactions Mocktest (Prelims) BSIT 307

    Human Computer Interactions Mocktest (Prelims) BSIT 307

    58問 • 1年前
    Xai Alexandrei Delos Reyes

    Principles of Communication Mocktest (Prelims) BSIT 307

    Principles of Communication Mocktest (Prelims) BSIT 307

    Xai Alexandrei Delos Reyes · 37問 · 1年前

    Principles of Communication Mocktest (Prelims) BSIT 307

    Principles of Communication Mocktest (Prelims) BSIT 307

    37問 • 1年前
    Xai Alexandrei Delos Reyes

    Principles of Communication Mocktest (Midterms) BSIT 307

    Principles of Communication Mocktest (Midterms) BSIT 307

    Xai Alexandrei Delos Reyes · 29問 · 1年前

    Principles of Communication Mocktest (Midterms) BSIT 307

    Principles of Communication Mocktest (Midterms) BSIT 307

    29問 • 1年前
    Xai Alexandrei Delos Reyes

    Data Structures and Algorithms Mocktest (Midterm) BSIT 307

    Data Structures and Algorithms Mocktest (Midterm) BSIT 307

    Xai Alexandrei Delos Reyes · 50問 · 1年前

    Data Structures and Algorithms Mocktest (Midterm) BSIT 307

    Data Structures and Algorithms Mocktest (Midterm) BSIT 307

    50問 • 1年前
    Xai Alexandrei Delos Reyes

    Object Oriented Programming Mock Test (Midterm) BSIT 307

    Object Oriented Programming Mock Test (Midterm) BSIT 307

    Xai Alexandrei Delos Reyes · 13問 · 1年前

    Object Oriented Programming Mock Test (Midterm) BSIT 307

    Object Oriented Programming Mock Test (Midterm) BSIT 307

    13問 • 1年前
    Xai Alexandrei Delos Reyes

    Human Computer Interactions Mocktest (Midterms) BSIT 307

    Human Computer Interactions Mocktest (Midterms) BSIT 307

    Xai Alexandrei Delos Reyes · 35問 · 1年前

    Human Computer Interactions Mocktest (Midterms) BSIT 307

    Human Computer Interactions Mocktest (Midterms) BSIT 307

    35問 • 1年前
    Xai Alexandrei Delos Reyes

    Readings In Philippine History (Midterms) Mocktest

    Readings In Philippine History (Midterms) Mocktest

    Xai Alexandrei Delos Reyes · 16問 · 1年前

    Readings In Philippine History (Midterms) Mocktest

    Readings In Philippine History (Midterms) Mocktest

    16問 • 1年前
    Xai Alexandrei Delos Reyes

    Discrete Structures and Algorithms (Midterms) Mocktest

    Discrete Structures and Algorithms (Midterms) Mocktest

    Xai Alexandrei Delos Reyes · 10問 · 1年前

    Discrete Structures and Algorithms (Midterms) Mocktest

    Discrete Structures and Algorithms (Midterms) Mocktest

    10問 • 1年前
    Xai Alexandrei Delos Reyes

    Principles of Communication (Midterm) Mocktest

    Principles of Communication (Midterm) Mocktest

    Xai Alexandrei Delos Reyes · 29問 · 1年前

    Principles of Communication (Midterm) Mocktest

    Principles of Communication (Midterm) Mocktest

    29問 • 1年前
    Xai Alexandrei Delos Reyes

    TECHNOPRENEURSHIP PRELIMS BSIT 402

    TECHNOPRENEURSHIP PRELIMS BSIT 402

    Xai Alexandrei Delos Reyes · 74問 · 1年前

    TECHNOPRENEURSHIP PRELIMS BSIT 402

    TECHNOPRENEURSHIP PRELIMS BSIT 402

    74問 • 1年前
    Xai Alexandrei Delos Reyes

    (Prelim) PH Popular Culture Mocktest BSIT 402

    (Prelim) PH Popular Culture Mocktest BSIT 402

    Xai Alexandrei Delos Reyes · 19問 · 1年前

    (Prelim) PH Popular Culture Mocktest BSIT 402

    (Prelim) PH Popular Culture Mocktest BSIT 402

    19問 • 1年前
    Xai Alexandrei Delos Reyes

    (Prelim) Integrative Programming BSIT 402

    (Prelim) Integrative Programming BSIT 402

    Xai Alexandrei Delos Reyes · 46問 · 1年前

    (Prelim) Integrative Programming BSIT 402

    (Prelim) Integrative Programming BSIT 402

    46問 • 1年前
    Xai Alexandrei Delos Reyes

    (Prelim) Quantitive Methods Mocktest BSIT 402

    (Prelim) Quantitive Methods Mocktest BSIT 402

    Xai Alexandrei Delos Reyes · 39問 · 1年前

    (Prelim) Quantitive Methods Mocktest BSIT 402

    (Prelim) Quantitive Methods Mocktest BSIT 402

    39問 • 1年前
    Xai Alexandrei Delos Reyes

    (Prelim) System Integration and Architecture BSIT 402

    (Prelim) System Integration and Architecture BSIT 402

    Xai Alexandrei Delos Reyes · 29問 · 1年前

    (Prelim) System Integration and Architecture BSIT 402

    (Prelim) System Integration and Architecture BSIT 402

    29問 • 1年前
    Xai Alexandrei Delos Reyes

    (Prelim) Network Technology Mocktest BSIT 402

    (Prelim) Network Technology Mocktest BSIT 402

    Xai Alexandrei Delos Reyes · 68問 · 1年前

    (Prelim) Network Technology Mocktest BSIT 402

    (Prelim) Network Technology Mocktest BSIT 402

    68問 • 1年前
    Xai Alexandrei Delos Reyes

    (Prelim) Information Management Mocktest BSIT 402

    (Prelim) Information Management Mocktest BSIT 402

    Xai Alexandrei Delos Reyes · 45問 · 1年前

    (Prelim) Information Management Mocktest BSIT 402

    (Prelim) Information Management Mocktest BSIT 402

    45問 • 1年前
    Xai Alexandrei Delos Reyes

    (Pre-Finals) Quantitative Research Mocktest BSIT 402

    (Pre-Finals) Quantitative Research Mocktest BSIT 402

    Xai Alexandrei Delos Reyes · 28問 · 1年前

    (Pre-Finals) Quantitative Research Mocktest BSIT 402

    (Pre-Finals) Quantitative Research Mocktest BSIT 402

    28問 • 1年前
    Xai Alexandrei Delos Reyes

    (Finals) Information Management Mocktest

    (Finals) Information Management Mocktest

    Xai Alexandrei Delos Reyes · 64問 · 1年前

    (Finals) Information Management Mocktest

    (Finals) Information Management Mocktest

    64問 • 1年前
    Xai Alexandrei Delos Reyes

    (Finals) Philippine Popular Culture Mocktest

    (Finals) Philippine Popular Culture Mocktest

    Xai Alexandrei Delos Reyes · 46問 · 1年前

    (Finals) Philippine Popular Culture Mocktest

    (Finals) Philippine Popular Culture Mocktest

    46問 • 1年前
    Xai Alexandrei Delos Reyes

    (Finals) Integrative Programming Mocktest BSIT 402

    (Finals) Integrative Programming Mocktest BSIT 402

    Xai Alexandrei Delos Reyes · 24問 · 1年前

    (Finals) Integrative Programming Mocktest BSIT 402

    (Finals) Integrative Programming Mocktest BSIT 402

    24問 • 1年前
    Xai Alexandrei Delos Reyes

    (Finals) Network Technology Mocktest BSIT 402

    (Finals) Network Technology Mocktest BSIT 402

    Xai Alexandrei Delos Reyes · 37問 · 1年前

    (Finals) Network Technology Mocktest BSIT 402

    (Finals) Network Technology Mocktest BSIT 402

    37問 • 1年前
    Xai Alexandrei Delos Reyes

    (Finals) Quantitative Methods Mocktest BSIT 402

    (Finals) Quantitative Methods Mocktest BSIT 402

    Xai Alexandrei Delos Reyes · 18問 · 1年前

    (Finals) Quantitative Methods Mocktest BSIT 402

    (Finals) Quantitative Methods Mocktest BSIT 402

    18問 • 1年前
    Xai Alexandrei Delos Reyes

    Application Development Mocktest (Prelim) BSIT 505

    Application Development Mocktest (Prelim) BSIT 505

    Xai Alexandrei Delos Reyes · 72問 · 9ヶ月前

    Application Development Mocktest (Prelim) BSIT 505

    Application Development Mocktest (Prelim) BSIT 505

    72問 • 9ヶ月前
    Xai Alexandrei Delos Reyes

    Data and Digital Communication Mocktest (Prelim) BSIT 505

    Data and Digital Communication Mocktest (Prelim) BSIT 505

    Xai Alexandrei Delos Reyes · 60問 · 9ヶ月前

    Data and Digital Communication Mocktest (Prelim) BSIT 505

    Data and Digital Communication Mocktest (Prelim) BSIT 505

    60問 • 9ヶ月前
    Xai Alexandrei Delos Reyes

    (Handout 1 Only!) Advanced Systems Integration and Architecture Mocktest (Prelim) BSIT 505

    (Handout 1 Only!) Advanced Systems Integration and Architecture Mocktest (Prelim) BSIT 505

    Xai Alexandrei Delos Reyes · 38問 · 9ヶ月前

    (Handout 1 Only!) Advanced Systems Integration and Architecture Mocktest (Prelim) BSIT 505

    (Handout 1 Only!) Advanced Systems Integration and Architecture Mocktest (Prelim) BSIT 505

    38問 • 9ヶ月前
    Xai Alexandrei Delos Reyes

    Enterprise Architecture Mocktest (Prelims) BSIT 505

    Enterprise Architecture Mocktest (Prelims) BSIT 505

    Xai Alexandrei Delos Reyes · 42問 · 9ヶ月前

    Enterprise Architecture Mocktest (Prelims) BSIT 505

    Enterprise Architecture Mocktest (Prelims) BSIT 505

    42問 • 9ヶ月前
    Xai Alexandrei Delos Reyes

    Professional Issues in Information Technology Mocktest (Prelims) BSIT 505

    Professional Issues in Information Technology Mocktest (Prelims) BSIT 505

    Xai Alexandrei Delos Reyes · 44問 · 9ヶ月前

    Professional Issues in Information Technology Mocktest (Prelims) BSIT 505

    Professional Issues in Information Technology Mocktest (Prelims) BSIT 505

    44問 • 9ヶ月前
    Xai Alexandrei Delos Reyes

    Application Development Mocktest (Midterm) BSIT 505

    Application Development Mocktest (Midterm) BSIT 505

    Xai Alexandrei Delos Reyes · 42問 · 8ヶ月前

    Application Development Mocktest (Midterm) BSIT 505

    Application Development Mocktest (Midterm) BSIT 505

    42問 • 8ヶ月前
    Xai Alexandrei Delos Reyes

    Event-Driven Programming Mocktest (Midterm) BSIT - 505

    Event-Driven Programming Mocktest (Midterm) BSIT - 505

    Xai Alexandrei Delos Reyes · 61問 · 8ヶ月前

    Event-Driven Programming Mocktest (Midterm) BSIT - 505

    Event-Driven Programming Mocktest (Midterm) BSIT - 505

    61問 • 8ヶ月前
    Xai Alexandrei Delos Reyes

    Data and Digital Communication Mocktest (Midterm) BSIT - 505

    Data and Digital Communication Mocktest (Midterm) BSIT - 505

    Xai Alexandrei Delos Reyes · 80問 · 8ヶ月前

    Data and Digital Communication Mocktest (Midterm) BSIT - 505

    Data and Digital Communication Mocktest (Midterm) BSIT - 505

    80問 • 8ヶ月前
    Xai Alexandrei Delos Reyes

    (Midterm) Advanced Systems and Integration Architecture BSIT - 505

    (Midterm) Advanced Systems and Integration Architecture BSIT - 505

    Xai Alexandrei Delos Reyes · 68問 · 8ヶ月前

    (Midterm) Advanced Systems and Integration Architecture BSIT - 505

    (Midterm) Advanced Systems and Integration Architecture BSIT - 505

    68問 • 8ヶ月前
    Xai Alexandrei Delos Reyes

    (Midterm) Advanced Database Systems Mocktest BSIT - 505

    (Midterm) Advanced Database Systems Mocktest BSIT - 505

    Xai Alexandrei Delos Reyes · 82問 · 8ヶ月前

    (Midterm) Advanced Database Systems Mocktest BSIT - 505

    (Midterm) Advanced Database Systems Mocktest BSIT - 505

    82問 • 8ヶ月前
    Xai Alexandrei Delos Reyes

    (Midterms) Enterprise Architecture Mocktest BSIT 505

    (Midterms) Enterprise Architecture Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 69問 · 8ヶ月前

    (Midterms) Enterprise Architecture Mocktest BSIT 505

    (Midterms) Enterprise Architecture Mocktest BSIT 505

    69問 • 8ヶ月前
    Xai Alexandrei Delos Reyes

    (Midterm) Professional Issues in Information Technology BSIT 505

    (Midterm) Professional Issues in Information Technology BSIT 505

    Xai Alexandrei Delos Reyes · 38問 · 8ヶ月前

    (Midterm) Professional Issues in Information Technology BSIT 505

    (Midterm) Professional Issues in Information Technology BSIT 505

    38問 • 8ヶ月前
    Xai Alexandrei Delos Reyes

    (Pre-Finals)Event-Driven Programming Mocktest BSIT 505

    (Pre-Finals)Event-Driven Programming Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 59問 · 7ヶ月前

    (Pre-Finals)Event-Driven Programming Mocktest BSIT 505

    (Pre-Finals)Event-Driven Programming Mocktest BSIT 505

    59問 • 7ヶ月前
    Xai Alexandrei Delos Reyes

    (Pre-finals) Application Development Mocktest BSIT 505

    (Pre-finals) Application Development Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 41問 · 7ヶ月前

    (Pre-finals) Application Development Mocktest BSIT 505

    (Pre-finals) Application Development Mocktest BSIT 505

    41問 • 7ヶ月前
    Xai Alexandrei Delos Reyes

    (Pre-Finals) Data and Digital Communication Mocktest BSIT 505

    (Pre-Finals) Data and Digital Communication Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 57問 · 7ヶ月前

    (Pre-Finals) Data and Digital Communication Mocktest BSIT 505

    (Pre-Finals) Data and Digital Communication Mocktest BSIT 505

    57問 • 7ヶ月前
    Xai Alexandrei Delos Reyes

    (Pre-Finals) ASIA Mocktest BSIT 505

    (Pre-Finals) ASIA Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 44問 · 7ヶ月前

    (Pre-Finals) ASIA Mocktest BSIT 505

    (Pre-Finals) ASIA Mocktest BSIT 505

    44問 • 7ヶ月前
    Xai Alexandrei Delos Reyes

    (Pre-Finals) Advanced Database Systems Mocktest BSIT 505

    (Pre-Finals) Advanced Database Systems Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 72問 · 7ヶ月前

    (Pre-Finals) Advanced Database Systems Mocktest BSIT 505

    (Pre-Finals) Advanced Database Systems Mocktest BSIT 505

    72問 • 7ヶ月前
    Xai Alexandrei Delos Reyes

    (Pre-Finals) Enterprise Architecture Mocktest BSIT 505

    (Pre-Finals) Enterprise Architecture Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 42問 · 7ヶ月前

    (Pre-Finals) Enterprise Architecture Mocktest BSIT 505

    (Pre-Finals) Enterprise Architecture Mocktest BSIT 505

    42問 • 7ヶ月前
    Xai Alexandrei Delos Reyes

    (Pre-Finals) Professional Issues In Information Technolog Mocktest BSIT 505

    (Pre-Finals) Professional Issues In Information Technolog Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 62問 · 7ヶ月前

    (Pre-Finals) Professional Issues In Information Technolog Mocktest BSIT 505

    (Pre-Finals) Professional Issues In Information Technolog Mocktest BSIT 505

    62問 • 7ヶ月前
    Xai Alexandrei Delos Reyes

    (Finals) Application Development Mocktest BSIT 505

    (Finals) Application Development Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 62問 · 6ヶ月前

    (Finals) Application Development Mocktest BSIT 505

    (Finals) Application Development Mocktest BSIT 505

    62問 • 6ヶ月前
    Xai Alexandrei Delos Reyes

    (Finals) Data and Digital Communication Mocktest BSIT - 505

    (Finals) Data and Digital Communication Mocktest BSIT - 505

    Xai Alexandrei Delos Reyes · 61問 · 6ヶ月前

    (Finals) Data and Digital Communication Mocktest BSIT - 505

    (Finals) Data and Digital Communication Mocktest BSIT - 505

    61問 • 6ヶ月前
    Xai Alexandrei Delos Reyes

    (Finals) Advanced Database Systems Mocktest BSIT 505

    (Finals) Advanced Database Systems Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 62問 · 6ヶ月前

    (Finals) Advanced Database Systems Mocktest BSIT 505

    (Finals) Advanced Database Systems Mocktest BSIT 505

    62問 • 6ヶ月前
    Xai Alexandrei Delos Reyes

    (Finals) Enterprise Architecture Mocktest BSIT 505

    (Finals) Enterprise Architecture Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 60問 · 6ヶ月前

    (Finals) Enterprise Architecture Mocktest BSIT 505

    (Finals) Enterprise Architecture Mocktest BSIT 505

    60問 • 6ヶ月前
    Xai Alexandrei Delos Reyes

    (Finals) Professional issues in Information Technology Mocktest BSIT 505

    (Finals) Professional issues in Information Technology Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 27問 · 6ヶ月前

    (Finals) Professional issues in Information Technology Mocktest BSIT 505

    (Finals) Professional issues in Information Technology Mocktest BSIT 505

    27問 • 6ヶ月前
    Xai Alexandrei Delos Reyes

    (Finals) Event-Driven Programming Mocktest BSIT 505

    (Finals) Event-Driven Programming Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 65問 · 6ヶ月前

    (Finals) Event-Driven Programming Mocktest BSIT 505

    (Finals) Event-Driven Programming Mocktest BSIT 505

    65問 • 6ヶ月前
    Xai Alexandrei Delos Reyes

    (Prelims) Management Information Systems Mocktest BSIT - 604

    (Prelims) Management Information Systems Mocktest BSIT - 604

    Xai Alexandrei Delos Reyes · 77回閲覧 · 94問 · 3ヶ月前

    (Prelims) Management Information Systems Mocktest BSIT - 604

    (Prelims) Management Information Systems Mocktest BSIT - 604

    77回閲覧 • 94問 • 3ヶ月前
    Xai Alexandrei Delos Reyes

    (Prelims) Great Books Mocktest BSIT 604

    (Prelims) Great Books Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 46回閲覧 · 75問 · 4ヶ月前

    (Prelims) Great Books Mocktest BSIT 604

    (Prelims) Great Books Mocktest BSIT 604

    46回閲覧 • 75問 • 4ヶ月前
    Xai Alexandrei Delos Reyes

    (Prelims) Programming Languages Mocktest BSIT 604

    (Prelims) Programming Languages Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 26回閲覧 · 79問 · 3ヶ月前

    (Prelims) Programming Languages Mocktest BSIT 604

    (Prelims) Programming Languages Mocktest BSIT 604

    26回閲覧 • 79問 • 3ヶ月前
    Xai Alexandrei Delos Reyes

    (Prelims) Web Systems and Technologies Mocktest BSIT 604

    (Prelims) Web Systems and Technologies Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 33回閲覧 · 99問 · 3ヶ月前

    (Prelims) Web Systems and Technologies Mocktest BSIT 604

    (Prelims) Web Systems and Technologies Mocktest BSIT 604

    33回閲覧 • 99問 • 3ヶ月前
    Xai Alexandrei Delos Reyes

    (Prelims) Mobile Systems and Technologies Mocktest BSIT 604

    (Prelims) Mobile Systems and Technologies Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 41回閲覧 · 42問 · 4ヶ月前

    (Prelims) Mobile Systems and Technologies Mocktest BSIT 604

    (Prelims) Mobile Systems and Technologies Mocktest BSIT 604

    41回閲覧 • 42問 • 4ヶ月前
    Xai Alexandrei Delos Reyes

    (Prelims) Information Assurance and Security Mocktest BSIT 604

    (Prelims) Information Assurance and Security Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 60回閲覧 · 92問 · 3ヶ月前

    (Prelims) Information Assurance and Security Mocktest BSIT 604

    (Prelims) Information Assurance and Security Mocktest BSIT 604

    60回閲覧 • 92問 • 3ヶ月前
    Xai Alexandrei Delos Reyes

    (Midterms) 04 to 05_Handout Management Information Systems Mocktest BSIT 604

    (Midterms) 04 to 05_Handout Management Information Systems Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 26回閲覧 · 69問 · 2ヶ月前

    (Midterms) 04 to 05_Handout Management Information Systems Mocktest BSIT 604

    (Midterms) 04 to 05_Handout Management Information Systems Mocktest BSIT 604

    26回閲覧 • 69問 • 2ヶ月前
    Xai Alexandrei Delos Reyes

    (Midterms) 06_Handout Management Information Systems Mocktest BSIT 604

    (Midterms) 06_Handout Management Information Systems Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 26回閲覧 · 36問 · 2ヶ月前

    (Midterms) 06_Handout Management Information Systems Mocktest BSIT 604

    (Midterms) 06_Handout Management Information Systems Mocktest BSIT 604

    26回閲覧 • 36問 • 2ヶ月前
    Xai Alexandrei Delos Reyes

    (Midterm) Great Books Mocktest BSIT 604

    (Midterm) Great Books Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 17回閲覧 · 74問 · 3ヶ月前

    (Midterm) Great Books Mocktest BSIT 604

    (Midterm) Great Books Mocktest BSIT 604

    17回閲覧 • 74問 • 3ヶ月前
    Xai Alexandrei Delos Reyes

    (Midterms) Programming Languages Mocktest BSIT 604

    (Midterms) Programming Languages Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 22回閲覧 · 82問 · 2ヶ月前

    (Midterms) Programming Languages Mocktest BSIT 604

    (Midterms) Programming Languages Mocktest BSIT 604

    22回閲覧 • 82問 • 2ヶ月前
    Xai Alexandrei Delos Reyes

    (Midterms) Web Systems an Technologies Mocktest BSIT 604

    (Midterms) Web Systems an Technologies Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 41回閲覧 · 85問 · 2ヶ月前

    (Midterms) Web Systems an Technologies Mocktest BSIT 604

    (Midterms) Web Systems an Technologies Mocktest BSIT 604

    41回閲覧 • 85問 • 2ヶ月前
    Xai Alexandrei Delos Reyes

    (Midterms) Mobile Systems and Technologies Mocktest BSIT 604

    (Midterms) Mobile Systems and Technologies Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 41回閲覧 · 56問 · 3ヶ月前

    (Midterms) Mobile Systems and Technologies Mocktest BSIT 604

    (Midterms) Mobile Systems and Technologies Mocktest BSIT 604

    41回閲覧 • 56問 • 3ヶ月前
    Xai Alexandrei Delos Reyes

    (Midterms) Information Assurance and Security Mocktest BSIT 604

    (Midterms) Information Assurance and Security Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 24回閲覧 · 90問 · 2ヶ月前

    (Midterms) Information Assurance and Security Mocktest BSIT 604

    (Midterms) Information Assurance and Security Mocktest BSIT 604

    24回閲覧 • 90問 • 2ヶ月前
    Xai Alexandrei Delos Reyes

    (Pre-Finals) Management Information Systems Mocktest BSIT 604

    (Pre-Finals) Management Information Systems Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 22回閲覧 · 33問 · 1ヶ月前

    (Pre-Finals) Management Information Systems Mocktest BSIT 604

    (Pre-Finals) Management Information Systems Mocktest BSIT 604

    22回閲覧 • 33問 • 1ヶ月前
    Xai Alexandrei Delos Reyes

    (Pre-Finals) Great Books Mocktest BSIT 604

    (Pre-Finals) Great Books Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 8回閲覧 · 62問 · 1ヶ月前

    (Pre-Finals) Great Books Mocktest BSIT 604

    (Pre-Finals) Great Books Mocktest BSIT 604

    8回閲覧 • 62問 • 1ヶ月前
    Xai Alexandrei Delos Reyes

    (Pre-Finals) Programming Languages Mocktest BSIT 604

    (Pre-Finals) Programming Languages Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 39回閲覧 · 39問 · 1ヶ月前

    (Pre-Finals) Programming Languages Mocktest BSIT 604

    (Pre-Finals) Programming Languages Mocktest BSIT 604

    39回閲覧 • 39問 • 1ヶ月前
    Xai Alexandrei Delos Reyes

    (Pre-Finals) Web Systems And Technologies Mocktest BSIT 604

    (Pre-Finals) Web Systems And Technologies Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 31回閲覧 · 36問 · 1ヶ月前

    (Pre-Finals) Web Systems And Technologies Mocktest BSIT 604

    (Pre-Finals) Web Systems And Technologies Mocktest BSIT 604

    31回閲覧 • 36問 • 1ヶ月前
    Xai Alexandrei Delos Reyes

    問題一覧

  • 1

    Which are examples of User Interaction?

    Talking, Gestures, Tapping, Typing

  • 2

    Which is NOT CONSIDERED when designing an interactive app:

    Maximize steps

  • 3

    It is usually a rectangle or rounded rectangle with a descriptive caption or icon in its center. This can have text or icon or both.

    Button

  • 4

    Which is the correct syntax for creating a button with text?

    <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/button_text" />

  • 5

    Which is the correct syntax for creating a button with a icon?

    <ImageButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/button_icon" />

  • 6

    Each button has three (3) states. What are they?

    normal, disabled, and pressed

  • 7

    Which is NOT a state of a button?

    Double-Tapped

  • 8

    This button appears lifted from the screen—the shading around it indicates that it is possible to tap or click it.

    Raised button

  • 9

    Also known as borderless button is a text-only button that looks flat and doesn't have a shadow.

    Flat button

  • 10

    It is used to display image resources. It can be turned into a button by adding the android:onClick attribute in the XML layout.

    ImageView

  • 11

    The image for the ImageView must already be stored in what directory of the project?

    app > src > main > res > drawable folder

  • 12

    <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="drawable/icecream_circle" android:onClick="orderIcecream"/> Where is the error in this program?

    android:src='drawable/icecream_circle'

  • 13

    It is a circular button that appears to float above the layout.

    Floating action button (FAB)

  • 14

    It occurs when a user places one or more fingers on the touchscreen, and the app interprets that pattern of touches as a gesture, such as a tap, touch & hold, double-tap, fling, or scroll.

    Touch Gesture

  • 15

    These are interactive elements in the app's UI that accept data input.

    Input controls

  • 16

    It is used for entering and modifying text.

    EditText

  • 17

    Which syntax is correct in creating a EditText?

    <EditText android:id="@+id/plain_text_input" android:layout_height="wrap_content" android:layout_width="match_parent" android:inputType="text"/>

  • 18

    It is used for selecting one or more options.

    Check Box

  • 19

    Which is the CORRECT syntax in creating a checkbox?

    <CheckBox android:id="@+id/checkbox1_chocolate" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/chocolate_syrup" />

  • 20

    It restricts the user to select only one (1) option from a set.

    Radio Button

  • 21

    <RadioGroupComponent android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <RadioButton android:id="@+id/radio_pirates" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/pirates" android:onClick="onRadioButtonClicked"/> <RadioButton android:id="@+id/radio_ninjas" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/ninjas" android:onClick="onRadioButtonClicked"/> </RadioGroupComponent> Which is the error in this RadioButton?

    <RadioGroupComponent />

  • 22

    This is a drop-down menu for selecting only one (1) option.

    Spinner

  • 23

    Which is the correct syntax for creating a string array in an xml file?

    <resources> <string-array name="language_array"> <item>English</item> <item>Filipino</item> <item>Spanish</item> <item>Others</item> </string-array> </resources>

  • 24

    Which is the correct syntax in creating a spinner layout?

    <Spinner android:id="@+id/language_spinner" android:layout_width="fill_parent" android:layout_height="wrap_content" android:entries="@array/language_array" />

  • 25

    Where's the error in this statement? String text = mySpinner.getSelecteditem().toString();

    getSelecteditem()

  • 26

    It lets the user change a setting between two (2) states.

    Toggle Button

  • 27

    Which is the correct syntax in creating a toggle button

    <ToggleButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/my_toggle" androd:text="@string/turn_on_or_off" android:onClick="onToggleClick" />

  • 28

    A type of toggle button for Android 4.0+ that provides a slider for selection.

    Switch

  • 29

    Which is the correct syntax for creating a switch?

    <Switch android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/my_switch" android:text="@string/turn_on_or_off" android:onClick="onSwitchClick"/>

  • 30

    It is dragged to the left or right to indicate a current progress level.

    SeekBar

  • 31

    Which is the correct syntax for creating a SeekBar?

    <SeekBar android:id="@+id/seekBar1" android:layout_width="300dp" android:layout_height="wrap_content" android:max="100" android:progress="50" />

  • 32

    Which is the correct syntax that stores the progress of the SeekBar in an int variable?

    int status = mySeekBar.getProgress();

  • 33

    It occurs when the user interacts with an input control or item in the user interface.

    Event

  • 34

    It is an interface in the View class that contains a single callback method. These methods will be called when the View to which the listener has been registered is triggered by user interaction with the item in the UI

    Event Listener

  • 35

    "When the user either touches or focuses upon the item" What callback method is being described?

    onClick()

  • 36

    "When the user either touches or focuses upon the item for a second" What callback method is being described?

    onLongClick()

  • 37

    "When the user is focused on the item and presses or releases a hardware key on the device" What callback method is being described?

    onKey()

  • 38

    "When the user performs an action qualified as a touch event (a press, a release, or any movement gesture on the screen)" What callback method is being described?

    onTouch()

  • 39

    public void onCheckBoxClicked(View view) { boolean checked = ((CheckBox) view).checked(); switch(view.getId()) { case R.id.checkbox1: if (checked) // Actions here else // Actions here break; case R.id.checkbox2: if (checked) // Actions here else // Actions here break; } } Which is incorrect in this code?

    boolean checked = ((CheckBox) view).checked();

  • 40

    It is a graphic that can be drawn to the screen.

    Drawable

  • 41

    This class is used for adding rich images in an app with a minimal impact on its performance.

    Drawable Class

  • 42

    It is a modern image format developed by Google that provides superior lossless and lossy compression for images on the web

    WebP

  • 43

    SELECT ALL image formats that Android Supports

    WebP, JPG/JPEG, GIF, PNG, BMP

  • 44

    Which of the following is NOT part of the recommended image formats?

    GIF

  • 45

    Images should be saved in what directory?

    app/src/main/res/drawable

  • 46

    Which is the correct syntax to display a drawable in XML

    <ImageView android:id="@+id/ic" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/ice_cream" />

  • 47

    Which is the correct syntax to use an image in Java?

    ImageView img = new ImageView(this); img.setImageResource(R.drawable.ice_cream);

  • 48

    Which is the correct syntax to match the bounds of the image with the dimension of the drawable?

    img.setAdjustViewBounds(true); img.setLayoutParams(new ViewGroup.LayoutParams( ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));

  • 49

    Which is the correct syntax to add the image to the layout and set the layout as the content view:

    ConstraintLayout cl = new ConstraintLayout(this); cl.addView(img); setContentView(cl);

  • 50

    It is a collection of attributes that define the look and format of a view

    Style

  • 51

    It refers to the styles that Android provides.

    Platform Styles

  • 52

    To create a style, add a <style> element inside a <resources> element in any XML file located in what folder?

    values folder inside the project's res folder.

  • 53

    Which is NOT included in a <style> element?

    Layout

  • 54

    Which is the correct syntax for creating a style?

    <resources> <style name="MyFont"> <item name="android:typeface">monospace</item> <item name="android:textColor">#D7D6D7</item> </style> </resources>

  • 55

    Which is the correct syntax to apply the style to a component?

    <TextView style="@style/MyFont" android:text="@string/code_string" />

  • 56

    It allows a style to inherit the properties of an existing style.

    Inheritance

  • 57

    Which statement BEST DESCRIBES how to inherit a custom style?

    To inherit a custom style, use the name of the style you want to inherit as the first part of the new style's name and separate the parts with a period. Syntax: name="StyletoInherit.NewStyle"

  • 58

    Which is the correct syntax to inherit a platform style?

    <style name="Text1" parent="@android:style/TextAppearance"> <item name="android:textColor">#00FF00</item> </style>

  • 59

    Which is the correct syntax in creating a custom style, where the inherited style is named "MyFont"?

    <style name="MyFont.BlueLarge"> <item name="android:textColor">#0000FF</item> <item name="android:textSize">36sp</item> </style>

  • 60

    It is a collection of attributes that define the look and format of an activity or an entire app. Any style can be used as a theme.

    Theme

  • 61

    <!-- Base application theme. --> <style name="AppTheme" parent="Theme.Light.DarkActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> </style> where is the error in this theme xml file?

    <style name="AppTheme" parent="Theme.Light.DarkActionBar">

  • 62

    What is the correct syntax to apply a theme to an activity which is declared inside an <activity> element in the manifest file.

    <activity android:theme="@android:style/Theme.Dialog">