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 technology web technology
  1. ActionEvent

  2. ActionListener

  3. ApplicationInstance

  4. None of the above

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

ActionListener is the standard interface used for event handling in Echo2 (a web framework). ActionEvent is typically an event class, not the listener interface. ApplicationInstance is a different component entirely.

Multiple choice technology enterprise content management
  1. ~masterurl/default.master

  2. ~masterurl/custom.master

  3. ~masterurl/myDefault.master

  4. ~site/myDefault.master

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

The dynamic token ~masterurl/custom.master is used in SharePoint page layouts and site definitions to reference the custom master page of a site. Setting the MasterPageFile to this token allows the page to dynamically inherit the custom master page configured for the site.

Multiple choice technology enterprise content management
  1. Onet.xml

  2. Schema.xml

  3. VWStyles.xml

  4. WebTemp.xml

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

Onet.xml defines the basic structure, lists, and document templates for a site definition, including custom navigation configurations. Schema.xml defines list schemas, VWStyles.xml defines view styles, and WebTemp.xml registers site templates with the system.

Multiple choice technology programming languages
  1. Object Navigator

  2. Layout editor

  3. Data model Editor

  4. Format Editor

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

The Object Navigator provides a hierarchical tree view of all report objects (data model, layout, parameters, program units) enabling quick access and modification. Layout Editor only handles visual elements, Data Model Editor focuses on queries and groups, while Format Editor handles specific object formatting. Object Navigator is the central management hub.

Multiple choice technology programming languages
  1. System.Web.UI

  2. System.Web.Data.Usercontrol

  3. System.Web.UI.Data

  4. System.Web.UI.Usercontrol

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

User controls in ASP.NET are derived from System.Web.UI.UserControl, which provides the base functionality for creating reusable custom controls. The other namespaces are either incorrect or don't contain the UserControl class.

Multiple choice technology
  1. .ROD

  2. .BAS

  3. .ROX

  4. .AXF

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

The Actuate executable file with .ROX extension is generated after compiling design files and is deployed on the Actuate server. ROX stands for 'Report Object eXecutable' and contains the compiled report definition.

Multiple choice technology
  1. EditHistoryItems

  2. AddFutureItems

  3. InteractiveMode

  4. GetHistoryItems

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

Standard Component Interface properties include InteractiveMode, GetHistoryItems, and EditHistoryItems. AddFutureItems is not a standard CI property - this appears to be a made-up name. The correct pattern is future item handling is done through other methods.

Multiple choice technology
  1. Simple page list

  2. Subpage page list

  3. Title/body page list

  4. Left/right page list

Reveal answer Fill a bubble to check yourself
A,C,D Correct answer
Explanation

The PageList component offers Simple page list, Title/body page list, and Left/right page list types. Subpage page list is not a standard type available in the PageList component selection window.

Multiple choice technology
  1. True

  2. False

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

In Livelink (an enterprise content management system), Style is indeed classified as an Object Type. Object types in Livelink define the category and behavior of items within the system, determining available properties, permissions, and functionality.

Multiple choice technology
  1. Go to "View Menu" & check the "Show Advanced Parameters" menu item

  2. Go to "View Menu" & check the "Show Additional Parameters" menu item

  3. Go to "Edit Menu" & check the "Show Additional Parameters" menu item

  4. Go to "View Menu->Navigation Parameters" & check the "Meta Text" menu item

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

In Livelink SiteAdmin's Navigation Manager, advanced settings like ViewTree Id are hidden by default. Accessing the View menu and enabling 'Show Advanced Parameters' reveals these additional technical details, while 'Show Additional Parameters' is not the correct menu item name.

Multiple choice technology
  1. True, as IE is the default browser that Livelink supports

  2. True, as Livelink supports both, but SiteAdmin only supports IE

  3. False, Setting in SiteAdmin exist, by which this can be customized

  4. Both I AND II

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

SiteAdmin does not force IE usage - it respects the system's default browser settings. Users can configure which browser opens when viewing pages from SiteAdmin (F6). This customization exists within SiteAdmin settings, making the statement that it 'will always Open in IE' false.

Multiple choice technology enterprise content management
  1. Only A and B

  2. Only B and C

  3. only A and C

  4. Only A and D

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

A TCODE (transaction code) serves to call a SAP screen and acts as a direct shortcut to that screen, bypassing menu navigation. It does not directly enter order details, call menu paths, or serve no purpose.

Multiple choice technology
  1. Enable Advanced Menus under View menu

  2. Replace design under Application submenu

  3. Raise a ticket in Global Helpdesk

  4. Search for R8 Upgrade in Help topics

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

The upgrade process for Lotus Notes Release 8 involves enabling Advanced Menus through the View menu to access additional options, then using the Replace Design function under the Application submenu. Raising helpdesk tickets or searching Help topics are not part of the actual upgrade procedure.

Multiple choice technology web technology
  1. Model

  2. View

  3. Controller

  4. None of the above

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

From an MVC perspective, Struts framework primarily provides the Controller layer through ActionServlet, RequestProcessor, and Action classes that handle request routing and workflow. The Model is represented by ActionForms and business logic, and the View is JSP pages - Struts ties them together but doesn't implement Model or View directly.