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 testing
  1. Add the specific property to the list

  2. Use the Default property

  3. Use some other property to identify your object

  4. NONE

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

When a property needed for object identification is not in the default properties list, most testing tools allow you to manually add that property to the identification properties list so it can be used for recognition.

Multiple choice technology databases
  1. OPEN AREANAME USAGE-MODE IS UPDATE

  2. OPEN AREANAME USAGE MODE IS UPDATE

  3. OPEN AREANAME USAGE-MODE IS MODIFY

  4. OPEN AREANAME USAGE MODE IS MODIFY

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

In IDMS COBOL, the correct syntax to open an area in update mode uses the USAGE-MODE clause (with a hyphen). The syntax is 'OPEN AREANAME USAGE-MODE IS UPDATE'. Option B is incorrect because it lacks the hyphen in USAGE-MODE, and options C and D use MODIFY (which is not the correct keyword for update mode).

Multiple choice technology testing
  1. Resources > Object Repository

  2. Help > Object Repository

  3. Tools > Object Repository

  4. File > Object Repository

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

In QTP, the Resources menu contains the Object Repository option for accessing repositories associated with specific components. This is the standard navigation path within the QTP interface. The other menu options (Help, Tools, File) don't contain the Object Repository option.

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.