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 architecture
  1. Model View Controller

  2. Business Delegate

  3. Composite View

  4. Service Locator

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

MVC (Model-View-Controller) separates data representation (Model), application behavior (Controller), and presentation (View) into three distinct components. This separation allows independent development, testing, and maintenance of each aspect. The Model handles data, View handles display, Controller handles user input and coordination.

Multiple choice technology databases
  1. Class object

  2. Schema object

  3. Both

  4. None of the above

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

An inline view is a subquery in the FROM clause with an alias. It's not a persistent database object (no DDL), not a class or schema object - it's a temporary, query-scoped result set.

Multiple choice technology programming languages
  1. User Control

  2. Custom Control

  3. Control

  4. Activex Control

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

In both Windows Forms (System.Windows.Forms.Control) and Web Forms (System.Web.UI.Control), the Control class serves as the base class for all built-in UI components. UserControl and CustomControl derive from Control rather than acting as the base.

Multiple choice technology
  1. They are reusable by nature

  2. They encapsulate part of the functionality of a Workflow/Mapping

  3. They have their own Designer tool

  4. They can be nested

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

Worklets can be nested within other worklets (hierarchical workflow organization), but Mapplets cannot be nested within other mapplets. Both are reusable, both encapsulate functionality, but only worklets support nesting. This is the key distinguishing feature.

Multiple choice technology testing
  1. Analysis Engine, JProbe Connection Manager, JProbe Console

  2. Jprobe Editor, JProbe Profiler, Jprobe Engine

  3. Jprobe Analysis Engine, probe Thread analyzer

  4. Jprobe Analyzer, Jprobe Console

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

JProbe's architecture consists of three main components: the Analysis Engine (which does the profiling work), the JProbe Connection Manager (handles communication between profiler and JVM), and the JProbe Console (the UI for viewing results). Options B and C invent non-existent components, and D is incomplete.

Multiple choice technology platforms and products
  1. .NET Framework 3.5

  2. .NET Framework 4.0

  3. .NET Framework 4.5

  4. .NET Framework 2.0

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

Microsoft Visual Studio 2010 was released alongside .NET Framework 4.0, which was the default framework version for that edition. .NET Framework 3.5 was used with VS 2008, while 4.5 came later with VS 2012. Version 2.0 is much older.

Multiple choice technology platforms and products
  1. Folder Diff

  2. Merging

  3. Branch Visualization

  4. Annotate

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

Branch Visualization was the major new feature introduced in TFS 2010, providing a graphical view of branch hierarchy and relationships. Folder Diff, Merging, and Annotate (blame) all existed in previous TFS versions, so they were not new features in 2010.

Multiple choice technology platforms and products
  1. .NET Framework 3.5 SP1

  2. .NET Framework 3.0

  3. .NET Framework 2.0

  4. All of the Above

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

ASP.NET MVC 1.0 was released in 2009 as an add-on for .NET Framework 3.5 SP1. It was not included with .NET 3.0 or 2.0. Later versions of MVC were built into .NET 4.0 and beyond, but the initial MVC release required 3.5 SP1.

Multiple choice technology platforms and products
  1. .NET Framework 3.5

  2. .NET Framework 2.0

  3. .NET Framework 3.0

  4. All of the Above

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

Visual Studio 2010 was designed to maintain backward compatibility with applications built on earlier .NET Framework versions. It can target and run applications built for .NET 2.0, 3.0, and 3.5, allowing organizations to upgrade their development tools while preserving investments in existing codebases. This compatibility is achieved through multi-targeting support and side-by-side framework installation.

Multiple choice technology testing
  1. Action Settings

  2. Action properties

  3. Action Run Settings

  4. Action Call properties

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

In QTP, you mark an action as reusable through the Action Properties dialog (right-click the action → Action Properties). This is not done through Action Settings (which handles iteration), Action Run Settings (for action call parameters), or Action Call properties (which configures how an action is called, not its reusability). Option B correctly identifies the location.

Multiple choice technology platforms and products
  1. Flow

  2. Declare Constraint

  3. Declare Decision Tree

  4. Activity Steps

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

In the Pega Tracer, 'Event Types To Trace' includes Flow, Declare Constraint, and Declare Decision Tree. Activity Steps are not listed as a separate event type to trace - you trace Activities as a whole, not individual steps. This is why Activity Steps is the correct answer.

Multiple choice technology platforms and products
  1. Class Structure, Properties, User Interface, Activities

  2. Class Structure, Properties, Activities,User Interface

  3. Properties, Class Structure, User Interface, Activities

  4. Class Structure, Activities,Properties, User Interface

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

SmartBuild in PEGA follows a logical development sequence starting with Class Structure (defining data model), then Properties (individual attributes), User Interface (forms and screens for user interaction), and finally Activities (business logic and processing). This sequence ensures foundational elements are established before building dependent components.

Multiple choice technology platforms and products
  1. Show List HTML property

  2. Prompt Select HTML Property

  3. Display Select HTML Property

  4. Any of the above

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

Prompt Select HTML Property is the correct PEGA property for displaying values in a dropdown (combo box) format. It renders a selectable list of options for user input. The other options are not valid property types in PEGA for this purpose - this is the standard built-in property for dropdown selection.