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 web 2.0
  1. Java Script & xml

  2. xml & Action Script

  3. mxml & Action Script

  4. mxml & Java Script

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

Flex applications consist of two primary file types: MXML files for defining the user interface layout and components, and ActionScript files for application logic and event handling. MXML is XML-based markup, while ActionScript is the programming language (based on ECMAScript).

Multiple choice technology web 2.0
  1. Java

  2. Eclipse

  3. EditPlus

  4. TextPad

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

Flex Builder 3 was built on the Eclipse platform. Adobe chose Eclipse as the foundation for its IDE, leveraging its extensible architecture and plugin ecosystem to provide a familiar development environment for Flex applications.

Multiple choice technology web 2.0
  1. Datasets

  2. HashTable

  3. StackGroup

  4. Accordian

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

Among the options, Accordion is a built-in Flex component. The Accordion navigator container displays a series of child containers where only one is visible at a time, with headers that users can click to navigate between panels. Datasets, HashTable, and StackGroup are not standard Flex components.

Multiple choice technology programming languages
  1. @MasterType

  2. @MasterPage

  3. @Master

  4. @MasterPath

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

The @MasterType directive specifies the virtual path or strong type of the master page, enabling strongly-typed access to the master page from content pages. This allows code like Master.PropertyName instead of having to cast Master.Page to the specific type.

Multiple choice technology web 2.0
  1. Including Java script file in the same package

  2. Using Internal Interface

  3. Using External Interface

  4. Directly calling the Java Script Functions

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

ActionScript communicates with JavaScript through the ExternalInterface API, which provides a bridge for bidirectional communication. Options A and D are incorrect because you cannot include JavaScript files or call functions directly. Option B is incorrect because 'Internal Interface' is not a valid communication mechanism.

Multiple choice technology databases
  1. It is a dynamic view.

  2. It is a rule determine which versions of an element are visible in the new view

  3. None of the above.

  4. All of the above.

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

A Configuration Specification is a rule that determines which versions of elements are visible in a view. It is used in configuration management to control what version of files or components developers see and work with. It is not a dynamic view itself, nor is it "all of the above" or "none of the above."

Multiple choice technology databases
  1. Dynamic

  2. Snapshot

  3. Both a & b

  4. None

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

Dynamic views use the Multi-Version File System (MVFS) to provide transparent access to versioned files without creating local copies. MVFS makes versioned files appear as regular files in the filesystem. Snapshot views store actual file copies and don't require MVFS.

Multiple choice technology databases
  1. It specifies which versions of the element should appear in the view

  2. It specifies what type of branching logic used.

  3. All the above

  4. None of the above

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

A view configuration spec (config spec) is a set of rules that determines which versions of elements appear in a ClearCase view. It selects specific versions based on branch, label, date, or other criteria. Option B is incorrect as branching logic is separate from config specs.