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
-
ReadOnly Mode
-
Edit Mode
-
Insert Mode
-
all the above
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.
A
Correct answer
Explanation
When creating a new Master Page in Visual Studio, it contains exactly two ContentPlaceHolder controls by default: one in the head section (for scripts and styles) and one in the body section (for page content).
-
Set EnableClientScript=true
-
Set EnableClientScript=false
-
Can’t do
-
none of above
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.
-
Unload
-
Rendering
-
Postback event handling
-
Load
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.
-
true
-
false
-
selected
-
enabled
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.
-
Component
-
Sub Page
-
Secondary Page
-
All of the above
C
Correct answer
Explanation
Activate Event is specifically valid for Secondary Pages in PeopleSoft. It does not apply to Components or Sub Pages, making 'All of the above' incorrect.
-
Post Build
-
Save Post Change
-
Workflow
-
Save Edit
D
Correct answer
Explanation
Post Build, Save Post Change, and Workflow are all valid Component Events in PeopleSoft. Save Edit is not a standard Component Event type, making it the correct answer to the 'not' question.
-
Enhanced support for inclusion of barcodes and table of contents
-
Dialogue line module
-
Support for inclusion of components
-
Support for inclusion of images
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.
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.
-
Used multiple times in a mapping.
-
A set of transformations that is reusable
-
Used only in a single mapping
-
created using mapplet designer
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.
-
Server Layer
-
Cloud Layer
-
Application Layer
-
Content/Data Layer
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.
-
xFramework
-
xResponse and xRevise
-
xPression Controller
-
xAssemble
-
xBatch
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).
-
Gridview
-
Webrowser
-
Datagrid
-
Masked Textbox
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.
-
row level
-
column level
-
cell level
-
None of the above
C
Correct answer
Explanation
DataGridView control allows interaction at the individual cell level - you can click to select, edit, and format specific cells. While you can select entire rows or columns, the primary focus for interaction and presentation is the cell level.
-
Detailsview
-
Listview
-
Formview
-
TableView
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.