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
-
WebStation link
-
Quick Links dropdown
-
Search option
-
None of the Above
-
Source Tab
-
Data Item Tab
-
Toolbox Tab
-
Properties Tab
A,B,C
Correct answer
Explanation
In Cognos Report Studio, the Insertable Objects pane contains three tabs: Source (for data sources), Data Items (for available query items), and Toolbox (for report elements). The Properties tab is part of a different pane.
C
Correct answer
Explanation
Report Studio supports creating List, Map, and Repeater reports. A 'View' is not a type of report in Report Studio - it is a database object or a different concept altogether, making it the correct answer for what is NOT a report type.
-
Silverlight
-
jQuery
-
Javascript
-
HTML
B
Correct answer
Explanation
jQuery is famously marketed with the slogan 'Write Less, Do More' because it simplifies JavaScript programming with its concise syntax and powerful methods. Silverlight is a Microsoft framework for rich internet applications, JavaScript is the programming language itself, and HTML is the markup language.
-
Dynamic Linked Library
-
Dynamic Library Loader
-
Dynamic Linked Listener
-
Dynamic Library Language
A
Correct answer
Explanation
DLL stands for Dynamic Link Library, which is the correct expansion. In Rogers IVR architecture, DLLs are modular code libraries that can be loaded and linked at runtime by applications. This allows for efficient memory usage and easier updates since multiple programs can share the same library code. The other options (Loader, Listener, Language) are not correct expansions of the acronym.
-
PCMN.LOAD.BATCH.UNIT01
-
PCMN.LOAD.BATCH.UNIT81
-
PCMN.LOAD.BATCH
-
PCMN.LOAD.BATCH.UNIT02
A
Correct answer
Explanation
During component promotion in the dev region, the load module gets copied to PCMN.LOAD.BATCH.UNIT01. This is the standard target dataset for development promotion processes. UNIT81 and UNIT02 are not used for this purpose.
-
Source tab
-
Properties tab
-
Tool box tab
-
Data item tab
A,C,D
Correct answer
Explanation
The Insertable Objects pane in IBM Cognos Report Studio has multiple tabs. The Source tab provides access to available data sources. The Toolbox tab contains report objects like lists, crosstabs, and charts. The Data Items tab shows available data items from the query. The Properties tab (B) is a separate floating window, not a tab within the Insertable Objects pane.
-
Query
-
Page
-
Native Sql
-
Lists,crosstabs,prompts
D
Correct answer
Explanation
Lists, crosstabs, and prompts support conditional rendering in BI reporting tools. Conditional rendering allows objects to appear/disappear or change format based on conditions like user selections or data values. Queries, pages, and native SQL do not support this feature.
-
mkelem
-
mvelem
-
mkview
-
ctelem
A
Correct answer
Explanation
In ClearCase version control, 'mkelem' is the command used to create a new version-controlled element. 'mkview' creates a view, 'ctelem' is not a standard ClearCase command, and 'mvelem' would be for moving or renaming elements.
-
a.Validate and Upgrade
-
b.Development and Validate
-
c.Standard and Validate
-
d.Development and Upgrade
-
e.Development and Properties
D
Correct answer
Explanation
Application Designer's Project Workspace has two main view modes. Development mode is for designing and modifying objects. Validate mode is for checking object definitions against standards. Upgrade mode is for managing upgrades, and Properties shows object properties - but the two primary workspace views are Development and Upgrade.
-
a.Validate and Upgrade
-
b.Development and Validate
-
c.Standard and Validate
-
d.Development and Upgrade
-
e.Development and Properties
D
Correct answer
Explanation
Application Designer's Project Workspace provides two main view modes: Development and Upgrade. Development view is used for building and customizing PeopleSoft objects during normal development work. Upgrade view helps developers compare their customizations with standard PeopleSoft updates and apply changes during upgrade processes.
-
/WEB-INF/classes
-
/WEB-INF/flex/libs
-
/WEB-INF/flex/user-classes
-
/WEB-INF/flex/themes
C
Correct answer
Explanation
In LiveCycle Data Services (formerly Flex Data Services), custom ActionScript classes, MXML components, and SWC libraries belong in /WEB-INF/flex/user-classes. This directory is the designated location for user-defined classes that need to be accessible to the Flex application. The /classes folder is for compiled Java classes, /libs for standard libraries, and /themes for styling resources.
-
nativeDragOver
-
nativeDragEnter
-
nativeDragDrop
-
nativeDragStart
B
Correct answer
Explanation
The nativeDragEnter event fires when a dragged object enters the drop target's boundaries, allowing the target to visually indicate whether it can accept the drop. nativeDragOver tracks movement within the target, nativeDragDrop completes the action, and nativeDragStart initiates dragging.
-
Inline Selector
-
Class Selector
-
Type Selector
-
None of the above
C
Correct answer
Explanation
Type selectors apply styles to all instances of a component type (e.g., all Button components). Class selectors use dot notation for specific classes (.myClass), inline styles apply to single instances, and ID selectors target specific component IDs.