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
-
map.addOverlay(new GMarker(point, markerOptions));
-
map.placeMarker(new Overlay(GMarker(point,markerOptions)))
-
map.placeMarker(GMarker(myLatitude,myLongitude))
-
map.addOverlay(new GMarker(point, markerOptions){position:top});
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.
-
A Version Control Tool for elevating components into production
-
a Source Control tool that always ensures we modify the latest version of the code
-
a Tool that allows you to automate & control the movement of code during the SDLC
-
Only Choice 1 & Choice 2
-
All the above
-
None of the above
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.
-
A Version Control Tool for elevating components into production
-
a Source Control tool that always ensures we modify the latest version of the code
-
a Tool that allows you to automate & control the movement of code during the SDLC
-
Only Choice 1 & Choice 2
-
All the above
-
None of the above
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.
-
The component is edited in Endevor
-
The component is copied to a Temporary dataset and edited
-
Signs out the element to your ID
-
a & c only
-
b & c only
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.
-
Component can be edited after it is cast in a Package
-
Component cannot be edited after it is cast in a Package
-
To edit a component the package should be reset
-
b & c only
-
a & c only
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.
-
Saveprechange
-
Fieldchange
-
SaveEdit
-
Rowinit
-
Searchinit
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.
-
To View the Pre-WIP Data
-
To Apply the WC3 Components
-
To View the details of old processed records
-
All of the Above
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.
-
Content Editor Web Part
-
Content Query Web Part
-
Page Viewer Web Part
-
External Applications Web Part
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.
-
Sharepoint UI
-
Sharepoint Object Model API
-
With Features
-
Sharepoint Designer
-
Sharepoint Designer
-
Visual Studio 2005
-
WSS 3.0
-
All of the above
-
Content Editor Web Part
-
Content Query Web Part
-
Page Viewer Web Part
-
External Application Web Part
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.
-
Applet
-
Business Component
-
Application
-
Integration Object
-
Workflows
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.
-
Interactive
-
Long Running
-
Navigate
-
Service
-
7.0
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.
-
HtmlPanelGroup
-
HtmlTable
-
UITable
-
HtmlPanelGrid
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.
-
Command events
-
Submit events
-
Action events
-
Click events
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.