Computer Knowledge

GUI and Web Frameworks

1,915 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. Shortcuts to perform a task

  2. one-click shortcuts for routine tasks

  3. Actions can be used on views, subforms and forms.

  4. @commands, lotusscript, javescript can be used in actions

  5. All of the above

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

Actions in FileMaker Pro are indeed shortcuts for tasks (A), specifically one-click shortcuts for routine operations (B), work on views/subforms/forms (C), and can use @commands/LotusScript/JavaScript (D). All four statements are correct.

Multiple choice technology
  1. True

  2. False

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

Form events do NOT speed up document display times relative to field recalculations. The statement is false because form events actually execute during document operations like save, open, or refresh - similar timing to field recalculations. Both form events and field recalculations occur during these document lifecycle events, so there's no performance advantage.

Multiple choice technology
  1. True

  2. False

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

Subforms are NOT the form-building shortcut described - that description actually refers to a different concept. Subforms are reusable form components, not specifically a mechanism for storing regularly used fields together. The shortcut described sounds more like a template or snippet feature. Subforms serve modularity and reusability, not field storage.

Multiple choice technology
  1. shared views.

  2. Personal View

  3. None

  4. Both

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

Users with Editor access in Lotus Notes can create personal views (private to their use) but cannot create shared views - that privilege requires Designer or Manager access. This access hierarchy makes option B the correct answer.

Multiple choice technology architecture
  1. InfoViewApp.war

  2. PlatformServices.war

  3. InfoViewAppActions.war

  4. OpenDocument.war

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

PlatformServices.war handles authentication and the login screen for InfoView in BOE. InfoViewApp.war contains the main application interface, InfoViewAppActions.war handles report actions, and OpenDocument.war is for opening documents directly. The login functionality is specifically in PlatformServices.

Multiple choice technology architecture
  1. Import Wizard

  2. Migration Management Tool

  3. Upgrade Management Tool

  4. Import Wizard Management Tool

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

In SAP BusinessObjects XI 4.0 (code-named Aurora), the Import Wizard was renamed to Upgrade Management Tool. This tool helps upgrade content and configurations from previous versions. Migration Management Tool is a different tool for specific migrations. The name change reflects its role in version upgrades.

Multiple choice technology packaged enterprise solutions
  1. HTML Fragments

  2. HTML Streams

  3. HTML Text Files

  4. Harnesses

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

Harnesses in Pega define the user interface structure as seen by end users and are specific to a single application. They contain the layout, sections, and controls that users interact with when working with cases. HTML Fragments are reusable UI components, HTML Streams are for dynamic content generation, and HTML Text Files are static content - none of these define the complete interface structure like harnesses do.

Multiple choice technology packaged enterprise solutions
  1. The Utility is not initialized

  2. The Utility is in the wrong class

  3. Your Activity is in the wrong class

  4. Your Activity is not set up as a Utility

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

When using a Utility shape in Pega flows, the Activity must be specifically configured as a Utility type to appear in the SmartPrompt list. If it's not showing up, the Activity likely isn't set up properly as a Utility - the class or initialization issues wouldn't prevent it from appearing in the list.

Multiple choice technology web technology
  1. True

  2. False

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

ASP.NET Mobile Controls were deprecated by Microsoft and are not recommended for ASP.NET 4.0 mobile web development. Instead, Microsoft recommends using modern approaches like responsive web design, ASP.NET MVC, or CSS media queries to create mobile-friendly applications.

Multiple choice technology web technology
  1. Page_PreInit handler

  2. Page_Load handler

  3. Page_Init handler

  4. Page_Unload handler

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

In ASP.NET, the master page must be set dynamically during or before the Page_PreInit event. Attempting to assign or modify the MasterPageFile property during Page_Init or Page_Load occurs too late in the page lifecycle and throws an InvalidOperationException.

Multiple choice technology web technology
  1. Use different master page for mobile devices

  2. Use different Cascading Style Sheet (CSS) to layout the web page in an optimal manner on mobile device

  3. Use different web pages for mobile devices.

  4. Combination of 1 & 3

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

CSS is a client-side technology that runs in the browser to control visual presentation. Using different CSS for mobile devices allows responsive adaptation without server-side changes. Master pages (A) are server-side constructs, and separate web pages (C) require server-side routing - neither are client-side solutions.