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
  1. The Library Panel

  2. The Edit Panel

  3. The Property Panel

  4. The Variable Panel

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

The Property Panel in Dialogue Design Manager is specifically designed for viewing and modifying properties of any created object. When you select an object, its configurable attributes appear in the Property Panel where you can edit them. Other panels serve different purposes - the Library Panel is for reusable components and the Edit Panel is for structural changes.

Multiple choice technology
  1. Select Page ->Drag to property panel ->Deselect the option Simplex

  2. Select Page ->Drag to edit panel ->Select the option Duplex

  3. Select Page ->Drag to property panel ->Select the option Duplex

  4. Select Page ->Drag to property panel ->Select the paper type as A4

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

To create a duplex page in Dialogue, you select the page object and drag it to the Property Panel, then select the Duplex option. The Property Panel is where you configure page properties including simplex/duplex settings. The other options incorrectly reference the Edit Panel or irrelevant settings like paper type.

Multiple choice technology web technology
  1. a. BAIXXX_Client

  2. b. BAIXXX_Interfaces

  3. c.BAIXXX_mplementation

  4. d. BSIXXX_Client

  5. e. BSIXXX_Interfaces

  6. f. BSIXXX_Implementation

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

To resolve compile-time errors in the BAIXXX_WEB project, you need to add BAIXXX_Client and BAIXXX_Interfaces as dependencies. The Client component provides necessary client-side functionality, while Interfaces defines the contracts and APIs. The Implementation component is not typically required at compile-time for the web layer. BSIXXX components are unrelated and would introduce incorrect dependencies.

Multiple choice technology
  1. Content View

  2. Stacked View

  3. Both

  4. None

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

Oracle Forms supports multiple canvas views, including Content canvases and Stacked canvases. Both types allow developers to design different parts of the user interface, with Content view acting as the base layer and Stacked view displayed on top of it. Thus, both options are valid canvas-views.

Multiple choice technology programming languages
  1. acts as an interface between view and model

  2. does not interact with view

  3. does not interact with controller

  4. nothing but view

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

In the Model-View-Controller (MVC) architectural pattern, the Controller acts as an interface that mediates between the View (presentation layer) and the Model (data/business logic). It processes user input, coordinates interactions between the View and Model, and manages the application's response flow.

Multiple choice technology programming languages
  1. acts as an interface between view and model

  2. does not interact with view

  3. does not interact with controller

  4. nothing but view

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

In MVC architecture, the controller acts as the intermediary between the view (presentation layer) and model (business logic/data). It processes user input, interacts with the model, and selects the appropriate view for rendering. The controller is the glue that coordinates view and model interactions.

Multiple choice technology web technology
  1. Model

  2. View

  3. Controller

  4. ALL of the above

  5. None of the above

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

Struts 1.3 follows the MVC (Model-View-Controller) architecture pattern. The Model represents business logic and data, the View handles presentation (JSP pages), and the Controller manages application flow (ActionServlet). All three components are essential parts of the Struts framework.

Multiple choice technology web technology
  1. DAO Class

  2. HTML

  3. VO Class

  4. JSP

  5. Action Class

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

In Struts MVC architecture, the View layer consists of presentation components. HTML provides the structure and JSP (JavaServer Pages) enables dynamic content generation. DAO and VO classes belong to the Model layer (data access and transfer objects), while Action classes are part of the Controller layer.

Multiple choice technology testing
  1. Testing toolbar

  2. None of the above

  3. Action toolbar

  4. Test Pane

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

In HP/Micro Focus UFT, the Action toolbar provides options to view the details of a single action or navigate through the entire test flow. Other panels like the Test Pane show the hierarchy, but the Action toolbar specifically controls these view actions.

Multiple choice technology web technology
  1. public should not be there in codes

  2. Error in action.

  3. Displays showSuccess.php

  4. None of above

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

In Symfony 1.x, action methods must return a value (typically a view name or response). An empty executeshow method with no return statement will cause an error because Symfony expects the action to return something. Option C is wrong because there's no return to render the template.