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 web technology
  1. create a new flow and check Creates a New Work Object

  2. create a new work class and clear the cache

  3. create a new work class and update the HTML containing the selection list

  4. create a new flow and update the value of pyFlowType in the work class model

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

To add a work type to the New selection list, create a new flow and check the 'Creates a New Work Object' setting. This automatically adds the flow's work type to the list. Creating just a work class won't add it to the list, and manually updating HTML is not the correct approach.

Multiple choice technology web technology
  1. Data-Admin-Operator-ID

  2. Rule-Obj-Operator

  3. Rule-Obj-ListView

  4. Rule-Access-Role-Name

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

When creating a ListView for operator information (Full Names and User Identifiers), the 'Applies To' class should be Data-Admin-Operator-ID. This class contains operator data. Rule-Obj-Operator is for operator rule instances, Rule-Obj-ListView is for ListView definitions themselves, and Rule-Access-Role-Name is for access control.

Multiple choice technology web technology
  1. (a) Class Structure, Properties, User Interface, Activities

  2. (b) Class Structure, Properties, Activities,User Interface

  3. (c) Properties, Class Structure, User Interface, Activities

  4. (d) Class Structure, Activities,Properties, User Interface

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

SmartBuild follows a logical top-down creation sequence: first, define the Class Structure, then define the Properties associated with the classes, followed by the User Interface to display or input these properties, and finally the Activities containing business logic.

Multiple choice technology web technology
  1. (a) Property set

  2. (b) Dynamic select

  3. (c) Dependency list

  4. (d) Obj-List

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

Dynamic select (B) is the feature where one field's value selection determines the available values in another field (e.g., Make determines Model). This cascading selection is implemented using Dynamic Class configuration (often referred to as Dynamic select). Property set (A) is for assignment. Dependency list (C) is for controlling rule availability. Obj-List (D) is for database queries.

Multiple choice technology web technology
  1. a) Property qualifier

  2. b) Property aliases

  3. c) Enumerated text values

  4. (d) none of these

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

A property qualifier is an optional feature that adds one or more facts to a property's value. Property aliases are alternative names, enumerated text values restrict input, but property qualifiers actually extend the property with additional contextual information.

Multiple choice technology testing
  1. a) ActiveX control

  2. b) Visual Basic

  3. c) Web Applications

  4. d) All of the above

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

QTP (QuickTest Professional) supports multiple Add-ins by default, including ActiveX controls, Visual Basic applications, and Web applications. Since all three individual options (a, b, c) are supported by default, option D (All of the above) is the correct answer.

Multiple choice technology web technology
  1. Flow

  2. Declare Constraint

  3. Declare Decision Tree

  4. Activity Steps

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

The Tracer tool in Pega has an 'Event Types To Trace' tab that includes various rule types like Flows, Declare Constraints, and Declare Decision Trees. However, 'Activity Steps' is not listed as a separate event type in this tab - you trace entire activities, not individual steps, making this the correct answer for what doesn't belong.

Multiple choice technology web technology
  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

In Pega, to display a property as a drop-down (combo box) in user interface, you use the 'Prompt Select' HTML property. This property type automatically generates a drop-down control populated with the specified values (from field values, a local list, or other sources). Options A and C are not valid Pega property types, and option D is incorrect because there is a specific correct answer.

Multiple choice technology web technology
  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 PRPC follows a specific development sequence: Class Structure first (define data model), then Properties (define attributes), then User Interface (build screens), and finally Activities (add automation). This sequence ensures data exists before UI references it, and UI exists before business logic manipulates it.

Multiple choice technology web technology
  1. pxFlowInsKey

  2. pxAssignmentKey

  3. pxUserIdentifier

  4. pyID

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

The pxRequestor page is a standard PEGA page that contains information about the current requestor (user or system). pxUserIdentifier is a property on this page that holds the user's identifier. Other properties like pxFlowInsKey and pxAssignmentKey are found on different pages (pyWorkPage and clipboard pages respectively), and pyID is the ID property for work objects.

Multiple choice technology web technology
  1. create a new flow and check Creates a New Work Object

  2. create a new work class and clear the cache

  3. create a new work class and update the HTML containing the selection list

  4. create a new flow and update the value of pyFlowType in the work class model

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

In PEGA, the 'New' selection list in the Process Work gadget is automatically populated with flows that have the 'Creates a New Work Object' setting enabled. When you create a new flow and check this option, it automatically appears in the New list. You do not need to manually update HTML or modify work classes for this.

Multiple choice technology web technology
  1. Data-Admin-Operator-ID

  2. Rule-Obj-Operator

  3. Rule-Obj-ListView

  4. Rule-Access-Role-Name

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

When creating a ListView to display operator information (Full Names and User Identifiers), the Data-Admin-Operator-ID class is the correct 'Applies To' class because it contains the operator ID records with these properties. Rule-Obj-Operator is an obsolete class, Rule-Obj-ListView is for defining list views themselves, and Rule-Access-Role-Name contains access roles not operator data.

Multiple choice technology web technology
  1. Property-Set

  2. They cannot be changed

  3. Property-Set-X

  4. Property-Set-Special

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

Pega properties prefixed with 'px' are system-managed and read-only. They cannot be modified using standard methods like Property-Set. The special method Property-Set-Special is designed specifically to modify these system-controlled px properties.

Multiple choice technology web technology
  1. a)Obj-Open

  2. b) Page-New

  3. c) New

  4. d) New-Page

  5. e) CreatePage activity

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

Page-New is the correct method for creating top-level pages on the clipboard in Pega. Obj-Open is used to retrieve existing pages from the database into the clipboard, not create new ones. The other options are not valid Pega methods.