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 platforms and products
  1. map.addOverlay(new GMarker(point, markerOptions));

  2. map.placeMarker(new Overlay(GMarker(point,markerOptions)))

  3. map.placeMarker(GMarker(myLatitude,myLongitude))

  4. map.addOverlay(new GMarker(point, markerOptions){position:top});

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

The addOverlay method is used to place markers and other overlays onto a Google Map. The correct syntax is to create a GMarker object with a point and optional markerOptions, then pass it to map.addOverlay. Options B and C use non-existent methods.

Multiple choice technology mainframe
  1. A Version Control Tool for elevating components into production

  2. a Source Control tool that always ensures we modify the latest version of the code

  3. a Tool that allows you to automate & control the movement of code during the SDLC

  4. Only Choice 1 & Choice 2

  5. All the above

  6. None of the above

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

Endevor is an IBM mainframe-based Software Change Management tool that combines version control, source control, and automated deployment capabilities. It manages code movement through SDLC stages while ensuring integrity. All the listed functions (version control, source control, automation of code movement) are core features of Endevor, making all the above the correct answer.

Multiple choice technology mainframe
  1. A Version Control Tool for elevating components into production

  2. a Source Control tool that always ensures we modify the latest version of the code

  3. a Tool that allows you to automate & control the movement of code during the SDLC

  4. Only Choice 1 & Choice 2

  5. All the above

  6. None of the above

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

Endevor is an IBM mainframe tool that combines version control, source control, and automated deployment capabilities for managing software throughout the SDLC. It controls the movement of code from development through testing to production, ensuring proper approval processes and maintaining version history. All the listed descriptions accurately capture aspects of Endevor's functionality.

Multiple choice technology mainframe
  1. The component is edited in Endevor

  2. The component is copied to a Temporary dataset and edited

  3. Signs out the element to your ID

  4. a & c only

  5. b & c only

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

Quick-Edit both copies the component to a temporary dataset for editing AND signs out the element to your ID. The signing out is necessary to prevent other users from editing simultaneously.

Multiple choice technology mainframe
  1. Component can be edited after it is cast in a Package

  2. Component cannot be edited after it is cast in a Package

  3. To edit a component the package should be reset

  4. b & c only

  5. a & c only

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

In Endevor, once a component is cast in a package, it cannot be directly edited. To make changes, the package must first be reset (removing the cast), then the component can be edited and re-cast. This ensures version control integrity.

Multiple choice technology packaged enterprise solutions
  1. Saveprechange

  2. Fieldchange

  3. SaveEdit

  4. Rowinit

  5. Searchinit

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

The SavePreChange event should not use WinMessage because it fires during the save process before database commits, and user interaction at this critical point can cause save failures, timeouts, or inconsistent database state. WinMessage is appropriate in FieldChange, SaveEdit, RowInit, and SearchInit where user interaction is safe.

Multiple choice technology programming languages
  1. To View the Pre-WIP Data

  2. To Apply the WC3 Components

  3. To View the details of old processed records

  4. All of the Above

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

The WC3 Online interface is a comprehensive tool allowing users to perform multiple operations. It enables viewing Pre-WIP data, applying WC3 components, and viewing historical details of previously processed records, making 'All of the Above' the correct choice.

Multiple choice technology web technology
  1. Content Editor Web Part

  2. Content Query Web Part

  3. Page Viewer Web Part

  4. External Applications Web Part

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

Page Viewer Web Part displays external content in an iframe, making it ideal for showing external applications on SharePoint pages. Content Editor is for static HTML, Content Query queries SharePoint content, and External Applications Web Part is not a standard SharePoint 2007 web part.

Multiple choice technology web technology
  1. Content Editor Web Part

  2. Content Query Web Part

  3. Page Viewer Web Part

  4. External Application Web Part

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

The Page Viewer Web Part is specifically designed to embed external web content within a SharePoint page using an iframe. Content Editor Web Part is for HTML/JavaScript snippets, Content Query Web Part queries and displays SharePoint content, and there is no standard 'External Application Web Part' in SharePoint's web part collection.

Multiple choice technology packaged enterprise solutions
  1. Applet

  2. Business Component

  3. Application

  4. Integration Object

  5. Workflows

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

The Field Read Only Field user property is configured at the Business Component level in Siebel to dynamically control the read-only status of a field based on the value of another field. Applets and Applications do not support this specific field-level user property directly.

Multiple choice technology packaged enterprise solutions
  1. Interactive

  2. Long Running

  3. Navigate

  4. Service

  5. 7.0

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

In Siebel CRM, an Interactive workflow mode supports UI navigation and guides users through a sequence of views by reacting to user actions. Service flows run in the background without UI interaction, and long-running flows persist across long time frames.

Multiple choice technology web technology
  1. HtmlPanelGroup

  2. HtmlTable

  3. UITable

  4. HtmlPanelGrid

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

HtmlPanelGrid is the JSF component used to create table-like layouts. It renders an HTML table element and arranges its children in a grid format with a specified number of columns. While the name contains 'Panel' rather than 'Table', this is the standard JSF component for tabular layout. HtmlPanelGroup groups components without creating table structure, and there is no HtmlTable or UITable component in standard JSF.

Multiple choice technology web technology
  1. Command events

  2. Submit events

  3. Action events

  4. Click events

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

The HtmlCommandButton component generates Action events when clicked. These are queued on the UI component and can be processed by action listeners or action methods in backing beans. The term 'Action event' is the correct JSF terminology. JSF does not use 'Submit events' (that's HTML terminology), 'Command events', or 'Click events' for this component type.