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
  1. Each form runs in its own application window.

  2. A container form called Parent Form contains one or more Child Forms.

  3. Each form can have its own menus and toolbars.

  4. It has a main form called a Startup form.

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

This statement is false with respect to SDI because there is no parent - child form present in SDI. This statement can be true in case of MDI (Multiple Document Interface).

Multiple choice
  1. CLR

  2. CTS

  3. MSIL

  4. Assembly Manifest

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

CTS ensures type compatibility between various .NET components as CTS stands for Common Type Safety. For e.g. int x = TextBox1.text; // considering the scenario that we have some value in the textbox1 which is of text type and we are receiving the value in int type. So, CTS would not allow you this type of conversion in .NET and this could be done by:

int x = Convert.ToInt32(TextBox1.Text);  // As we have done the typecasting of text type to int type. So, CTS would allow us to get the text type value to the int type variable.

Multiple choice
  1. CLR and Class Library

  2. CTS and CLR

  3. MSIL and CLR

  4. Class Library and CTS

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

CLR is Common Language Runtime, which distinguishes .NET framework from other frameworks as this makes .NET framework language independent and Class Library provides the collection of useful and reusable types that are designed to integrate with CLR.

Multiple choice
  1. It provides data binding.

  2. It is used to route events to its child controls.

  3. INamingContainer interface is used to create controls in the specified condition.

  4. It provides the data management.

  5. It provides the data control in a specific format.

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

Naming interface does not provide any data management.

Multiple choice
  1. This interface is used to transfer the events that are generated from the client side to the server.

  2. It is used to update its state or raise events on the server after examining the postback data.

  3. IPostBackEventHandler interface can transfer the postback events.

  4. This interface can control the postback event.

  5. This interface controls the procedures.

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

It does not control the procedures.

Multiple choice
  1. The control properties are set using the view state and control state values.

  2. The request is postback and the related event handler is called.

  3. The view state for the page and all the controls are saved.

  4. The view state for the page and all the controls are deleted.

  5. This is the stage, in which all the page events are synchronised.

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

This is page rendering and the page calls the Render method for each control and the output of rendering is written to the OutputStream class of the Page's Response property.