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
  1. Source Tab

  2. Data Item Tab

  3. Toolbox Tab

  4. Properties Tab

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology web technology
  1. Silverlight

  2. jQuery

  3. Javascript

  4. HTML

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology testing
  1. Dynamic Linked Library

  2. Dynamic Library Loader

  3. Dynamic Linked Listener

  4. Dynamic Library Language

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology mainframe
  1. PCMN.LOAD.BATCH.UNIT01

  2. PCMN.LOAD.BATCH.UNIT81

  3. PCMN.LOAD.BATCH

  4. PCMN.LOAD.BATCH.UNIT02

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology
  1. Source tab

  2. Properties tab

  3. Tool box tab

  4. Data item tab

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology
  1. Query

  2. Page

  3. Native Sql

  4. Lists,crosstabs,prompts

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology platforms and products
  1. a.Validate and Upgrade

  2. b.Development and Validate

  3. c.Standard and Validate

  4. d.Development and Upgrade

  5. e.Development and Properties

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology platforms and products
  1. a.Validate and Upgrade

  2. b.Development and Validate

  3. c.Standard and Validate

  4. d.Development and Upgrade

  5. e.Development and Properties

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology programming languages
  1. /WEB-INF/classes

  2. /WEB-INF/flex/libs

  3. /WEB-INF/flex/user-classes

  4. /WEB-INF/flex/themes

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology programming languages
  1. nativeDragOver

  2. nativeDragEnter

  3. nativeDragDrop

  4. nativeDragStart

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology programming languages
  1. Inline Selector

  2. Class Selector

  3. Type Selector

  4. None of the above

Reveal answer Fill a bubble to check yourself
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.