Computer Knowledge

GUI and Web Frameworks

1,711 Questions

Graphical user interface and web frameworks involve layout management, directives, and application design across platforms like Android and Angular. These concepts are tested in computer science and IT officer competitive exams. Review these questions to understand UI components and coding standards.

Android layout attributesAngular structural directivesVB.Net web methodsJava Swing componentsSiebel application framework

GUI and Web Frameworks Questions

Multiple choice
  1. storing application resources

  2. storing raw asset files

  3. all Java files

  4. Java files generated by ADT

  5. android manifest for your project

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

You can use it to store raw asset files.

Multiple choice
  1. 1, 2, 3, 4, 5, 6

  2. 3, 4, 6, 5, 1, 2

  3. 3, 4, 5, 6, 2, 1

  4. 3, 6, 4, 5, 2, 1

  5. 6, 5, 4, 3, 2, 1

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Correct option is 4.

Multiple choice
  1. Only XI

  2. Only XI, XIV and XV

  3. Only XIV and XV

  4. Only I and II

  5. Only III and IV

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Android provides number of UI controls that help to build the graphical user interface for any app. TimezonePicker and MenuBar are not the android supported UI controls.

Multiple choice
  1. <application android.theme=”@style/CustomTheme”><application android.theme="”@style/CustomTheme”"></application>

  2. <application android:theme=”@style/CustomTheme”><application android:theme="”@style/CustomTheme”"></application>

  3. <activity android.theme=”@style/CustomTheme”><activity android.theme="”@style/CustomTheme”"></activity>

  4. <activity android:theme=”@style/CustomTheme”>

  5. -

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

To set the theme to all the activities in an android application, <application> tag has to be used.

Multiple choice
  1. Intents

  2. Broadcast receiver

  3. Notifications

  4. Services

  5. Activities

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

It starts the application to respond to an incoming intent and makes it ideal for event-driven applications.