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 platforms and products
  1. Contextual reference relative to the current peoplecode

  2. Scroll path syntax

  3. Both

  4. None

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

In PeopleSoft, data in component buffer can be referenced using both contextual references relative to the current PeopleCode and scroll path syntax. Contextual references use implicit relationships, while scroll path syntax explicitly navigates the buffer hierarchy.

Multiple choice technology platforms and products
  1. Menu items

  2. Application engine

  3. Components

  4. Record fields

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

Application Engine is not part of the component processor. The component processor manages the interaction between the user interface and the database for online components. Application Engine is a batch processing tool that runs separate from the component processor architecture.

Multiple choice technology programming languages
  1. Components are not allowed in deployment diagrams

  2. A rounded rectangle, just like a state in a state diagram

  3. A 3-dimensional rectangular solid (like a box)

  4. A rectangle with tabs on its left side

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

In UML, a component is represented by a rectangle with two smaller rectangles (tabs) protruding from its left side. This symbol can be placed inside nodes within a deployment diagram to show physical allocation.

Multiple choice technology web 2.0
  1. System.user

  2. System.web

  3. System.Drawing

  4. System.Web.UI.Page.Culture

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

To solve this question, the user needs to know about the different .NET Framework namespaces and classes that are used to store information about the user locale.

Option A (System.user) is not a valid .NET Framework namespace or class. This option is incorrect.

Option B (System.web) is a valid .NET Framework namespace that provides classes for creating web-based applications. However, it is not the correct namespace for storing user locale information. This option is incorrect.

Option C (System.Drawing) is a valid .NET Framework namespace that provides classes for working with graphics and images. However, it is not the correct namespace for storing user locale information. This option is incorrect.

Option D (System.Web.UI.Page.Culture) is the correct answer. The Culture property of the Page class in the System.Web.UI namespace is used to store information about the user locale. This property can be used to set the language and culture for a particular page or application.

Therefore, the answer is:

The Answer is: D

Multiple choice technology web 2.0
  1. The Prerender

  2. Render

  3. Page_Load

  4. Display

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

The Render method is responsible for generating the HTML output that displays a custom control to the browser. This method is called during the control lifecycle after all processing is complete. Prerender prepares the control, Page_Load handles initialization, and Display is not a standard control method.

Multiple choice technology
  1. Call someone who knows how to do it!

  2. Click Tools/Customize/Commands and drag the features you want onto a toolbar and rename it to a new name.

  3. Click Tools/Customize/Toolbars/New to create a new toolbar, then drag items onto it

  4. Click View/Toolbars/New to create a new toolbar.

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

Creating a new toolbar requires Tools/Customize/Toolbars/New first, then dragging commands onto it. Option B skips the toolbar creation step. View/Toolbars is for showing existing toolbars, not creating new ones.

Multiple choice technology testing
  1. Keyword

  2. Parameter

  3. Active screen

  4. Data table

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

QTP has two main views: Keyword View (tabular, icon-based) and Expert View (VBScript code). Parameter, Active Screen, and Data Table are panes/features, not views. Keyword View is the correct answer.

Multiple choice technology programming languages
  1. 1)Page_Init 2)Page_Load.3)Control events 4)Page_Unload event.

  2. 1)Page_Init 2)Page_Unload event..3)Control events 4)Page_Load

  3. 1)Page_Load 2)Page_Init 3)Control events 4)Page_Unload event.

  4. None

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

The standard lifecycle events of an ASP.NET page are executed in the sequence: Page_Init (initialization), Page_Load (loading state), Control events (handling postback events like button clicks), and finally Page_Unload (cleanup).

Multiple choice technology mainframe
  1. True

  2. False

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

ISPF allows viewing and editing the clipboard contents through the CUT and PASTE commands. The clipboard can be accessed using special ISPF commands or panel options.

Multiple choice technology
  1. Model

  2. View

  3. Services

  4. Controller

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

Struts implements the Controller role in MVC architecture. It handles user requests, coordinates interaction between Model (data/business logic) and View (presentation), and manages the flow of the application.