Computer Knowledge

GUI and Web Frameworks

1,915 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 mainframe
  1. Exchbar

  2. Swapbar

  3. Listbar

  4. Snapbar

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

The SWAPBAR command in ISPF/TSO displays a bar listing all active screens that a user can switch between. This allows quick navigation between multiple screens or sessions. Exchbar, Listbar, and Snapbar are not valid ISPF commands for this purpose.

Multiple choice technology enterprise content management
  1. To add an object to a virtual document, the object must be checked out

  2. An object can be a component of more than one virtual document simultaneously.

  3. When an object is added to a virtual document, the Content Server makes a new copy of the object

  4. Once an object becomes a component of a virtual document, it can never be removed from the virtual

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

In Documentum, virtual documents allow a single component object to belong to multiple virtual documents at the same time without creating duplicate physical copies of the content.

Multiple choice technology enterprise content management
  1. It is a default feature.

  2. The drag and drop plugin must be enabled.

  3. The feature must be enabled in Preferences.

  4. The feature is only available through the clipboard

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

In EMC Documentum Webtop, dragging and dropping objects between folders is a standard, built-in default feature that does not require additional plugins or preferences to be enabled.

Multiple choice technology programming languages
  1. SetRowFocusIcon

  2. SetRowFocusIndicator(RowFocusInd focusindicator {, integer xlocation {, integer ylocation } }

  3. ShowIcon

  4. ShowRowFocusIcon(RowFocusInd focusindicator {, integer xlocation {, integer ylocation } }

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

SetRowFocusIndicator is the DataWindow function that displays an icon to indicate the current row. The function accepts a RowFocusInd parameter to specify the indicator type (arrow, hand, focus rectangle, etc.) and optional x/y coordinates for positioning.

Multiple choice technology programming languages
  1. EditChanged

  2. ItemChanged

  3. Itemerror

  4. DataChanged

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

The EditChanged event fires when a user types in an edit control within a DataWindow. This event triggers for each keystroke or change in the edit control, unlike ItemChanged which fires after the user completes the edit and moves away from the field.

Multiple choice technology web technology
  1. Visual studio is a common IDE for all microsoft .NET languages

  2. share point portal server supports business to business integration

  3. CLI is an international standard [ ECMA ]

  4. The CLR is a foundation of .NET framework

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

Option B is the wrong statement. SharePoint Portal Server is a collaboration and document management platform, not a B2B integration tool. Options A, C, and D are all correct statements about .NET.

Multiple choice technology web technology
  1. windows services

  2. windows forms

  3. web services

  4. web forms

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

Web services are applications that expose programmatic interfaces through standard access methods like HTTP and SOAP, enabling cross-platform communication. Windows services are background applications, Windows Forms and Web Forms are UI frameworks.

Multiple choice technology web technology
  1. meta data

  2. IL

  3. manifest

  4. none of the above

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

A .NET assembly contains four key components: Manifest (assembly metadata), Metadata (type information), IL (Intermediate Language code), and optional resources. Since metadata (A), IL (B), and manifest (C) are all valid parts of an assembly, option D correctly states that none of these are excluded from the structure.

Multiple choice technology programming languages
  1. Run the Debugger, validate mappings and mapplets, import source definitions

  2. Run the debugger, create and delete folders, import source definitions

  3. Create and delete folders, view object dependencies, import source definitions

  4. Create and delete folders, create and edit mappings, create target tables

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

Designer in Informatica PowerCenter allows you to run the Debugger to validate mappings and mapplets, and import source definitions from various sources. Creating and deleting folders is a Repository Manager function, not Designer. Creating target tables is typically done in the Target Designer or Warehouse Builder tool, not the main Designer interface.

Multiple choice technology platforms and products
  1. Form->Function->User->Menu->Responsibility

  2. Form->Menu->Function->Responsibility->User

  3. Form->Function->Menu->Responsibilty->User

  4. Form->Function->User->Menu->Responsibilty

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

The correct Oracle Apps hierarchy is: Form → Function → Menu → Responsibility → User. Forms are attached to Functions, which are attached to Menus, which are assigned to Responsibilities, which are assigned to Users. Options A, B, and D have incorrect ordering of Function, Menu, User, and Responsibility.

Multiple choice technology web 2.0
  1. Public Assemblies & Private Assemblies

  2. Public Assemblies & Shared Assemblies

  3. Private Assemblies & Shared Assemblies

  4. Shared Assemblies and Global Assemblies

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

In .NET, assemblies are categorized into two primary types based on deployment: Private assemblies (local to the application) and Shared assemblies (stored in the GAC).