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 web 2.0
  1. ReadOnly Mode

  2. Edit Mode

  3. Insert Mode

  4. all the above

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

The DetailsView control in ASP.NET Web Forms supports multiple display modes for different purposes. ReadOnly mode displays data without modification capability. Edit mode allows users to modify existing records. Insert mode enables adding new records. The control can operate in any of these modes based on the user's needs and application logic.

Multiple choice technology web 2.0
  1. Set EnableClientScript=true

  2. Set EnableClientScript=false

  3. Can’t do

  4. none of above

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

Setting the EnableClientScript property to false disables client-side validation in ASP.NET validator controls, forcing evaluation to occur only on the server. Setting it to true keeps client-side validation active, which is the default behavior.

Multiple choice technology web 2.0
  1. Unload

  2. Rendering

  3. Postback event handling

  4. Load

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

Unload is the final stage of the ASP.NET page life cycle, where clean-up is performed and resources are released. Rendering occurs before Unload to write output to the response stream, while Load and Postback event handling occur earlier in the lifecycle.

Multiple choice technology web technology
  1. true

  2. false

  3. selected

  4. enabled

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

In HTML, boolean attributes like selected can be specified by setting their value to the attribute's name (e.g., selected="selected"). Modern HTML5 also permits the minimized form where the value is omitted entirely.

Multiple choice technology platforms and products
  1. Enhanced support for inclusion of barcodes and table of contents

  2. Dialogue line module

  3. Support for inclusion of components

  4. Support for inclusion of images

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

HP Exstream 7.0 introduced enhanced support for barcodes and table of contents (Option A) and added the Dialogue line module (Option B), which improved interactive document capabilities. These were significant feature additions in version 7.0. Options C and D ('Support for inclusion of components/images') are too generic - basic support for these existed in earlier versions and is not the distinguishing feature of 7.0. The question tests specific knowledge of version 7.0 enhancements.

Multiple choice technology web technology
  1. RMT

  2. CLR

  3. RCT

  4. RC

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

The .NET Framework provides the Common Language Runtime (CLR) as its runtime environment. The CLR manages code execution, provides memory management, thread management, and handles security and exception handling. It is the core component that enables .NET applications to run across different platforms.

Multiple choice technology platforms and products
  1. Used multiple times in a mapping.

  2. A set of transformations that is reusable

  3. Used only in a single mapping

  4. created using mapplet designer

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

Reusable transformations are designed to be used multiple times within a single mapping or across multiple mappings, promoting code reuse and consistency. They are single transformations (not a set), created in Transformation Developer, and not limited to single mapping use.

Multiple choice technology platforms and products
  1. Server Layer

  2. Cloud Layer

  3. Application Layer

  4. Content/Data Layer

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

xAdmin and xDashboard are administrative user interface components that belong to the xPression Application Layer, which handles user interactions and business logic presentation. The Server Layer handles backend processing, Cloud Layer deals with cloud infrastructure, and Content/Data Layer manages data storage and retrieval.

Multiple choice technology web technology
  1. xFramework

  2. xResponse and xRevise

  3. xPression Controller

  4. xAssemble

  5. xBatch

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

xResponse and xRevise are not components of the xPression Server Layer. The Server Layer includes xFramework, xPression Controller, xAssemble, and xBatch. xResponse and xRevise belong to other layers in the xPression architecture (likely related to output handling and revision management).

Multiple choice technology web technology
  1. Gridview

  2. Webrowser

  3. Datagrid

  4. Masked Textbox

Reveal answer Fill a bubble to check yourself
A,B,D Correct answer
Explanation

Windows Forms 2.0 introduced DataGridView (replacing the old DataGrid), WebBrowser (for embedding web content), and MaskedTextBox (for formatted input like phone numbers). The DataGrid control existed in 1.x and was replaced by DataGridView, not introduced in 2.0.

Multiple choice technology web technology
  1. Detailsview

  2. Listview

  3. Formview

  4. TableView

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

ASP.NET 2.0 introduced DetailsView and FormView as new data-bound controls for displaying data. DetailsView displays one record at a time in a table layout, while FormView provides more customizable templated rendering. ListView was introduced in ASP.NET 3.5.