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 platforms and products
  1. Extensible Application Markup Language - XAML can be used to define workflow declaratively

  2. Sequential Workflow and State Machine Workflow are two basic workflow type

  3. Workflow can be persisted into SQL server using built in persistence provider

  4. Workflow Runtime cannot be hosted in Windows application

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

The question asks for the INCORRECT statement. Option D is wrong because Workflow Runtime CAN be hosted in Windows applications - it's designed to be hostable in various application types including Windows apps, console apps, and services. Options A, B, and C are all correct statements about WF.

Multiple choice technology platforms and products
  1. It is a subset of the full .NET Framework 3.5 SP1 that targets client applications

  2. It includes only client-specific assemblies (i.e. Win Forms, WPF, WCF, ClickOnce) and doesn’t contain any of the server-specific assemblies (i.e. LINQ To SQL, Windows Workflow Foundation)

  3. The size of the .NET Framework Client Profile is 26 MB

  4. A client machine that has the .NET Framework Client Profile cannot later upgrade to the full version of the .NET Framework if needed

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

The question asks for the INCORRECT statement. Option D is wrong because a client machine with .NET Framework Client Profile CAN be upgraded to the full .NET Framework 3.5 SP1 - the Client Profile is specifically designed as an installable subset that can later be expanded to the full version. Options A, B, and C are all correct statements about the Client Profile.

Multiple choice technology web 2.0
  1. Acts as a bridge between Flash and Action Script

  2. Acts as a bridge between Flex and Struts Action Class

  3. Communicates between Flex and Ajax

  4. Communicates between Flash and Java

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

The FABridge (Flex Ajax Bridge) is a library that enables easy communication between Flex/Flash applications and JavaScript/Ajax applications running in the hosting web browser.

Multiple choice technology web 2.0
  1. No, Flex doesn't support lazy loading

  2. Yes, by lazyModuleLoader class

  3. Yes, by moduleLoader class

  4. Yes, but need to connect to database first

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

Apache Flex supports lazy loading through the ModuleLoader class, which loads Flex modules (.swf files) on demand at runtime. This enables applications to initialize faster by deferring non-critical module loading until needed.

Multiple choice technology enterprise content management
  1. ~masterurl/default.master

  2. ~masterurl/custom.master

  3. ~masterurl/myDefault.master

  4. ~site/myDefault.master

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

The dynamic token ~masterurl/custom.master is used in SharePoint page layouts and site definitions to reference the custom master page of a site. Setting the MasterPageFile to this token allows the page to dynamically inherit the custom master page configured for the site.

Multiple choice technology enterprise content management
  1. Onet.xml

  2. Schema.xml

  3. VWStyles.xml

  4. WebTemp.xml

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

Onet.xml defines the basic structure, lists, and document templates for a site definition, including custom navigation configurations. Schema.xml defines list schemas, VWStyles.xml defines view styles, and WebTemp.xml registers site templates with the system.

Multiple choice technology programming languages
  1. Object Navigator

  2. Layout editor

  3. Data model Editor

  4. Format Editor

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

The Object Navigator provides a hierarchical tree view of all report objects (data model, layout, parameters, program units) enabling quick access and modification. Layout Editor only handles visual elements, Data Model Editor focuses on queries and groups, while Format Editor handles specific object formatting. Object Navigator is the central management hub.

Multiple choice technology programming languages
  1. System.Web.UI

  2. System.Web.Data.Usercontrol

  3. System.Web.UI.Data

  4. System.Web.UI.Usercontrol

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

User controls in ASP.NET are derived from System.Web.UI.UserControl, which provides the base functionality for creating reusable custom controls. The other namespaces are either incorrect or don't contain the UserControl class.

Multiple choice technology
  1. .ROD

  2. .BAS

  3. .ROX

  4. .AXF

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

The Actuate executable file with .ROX extension is generated after compiling design files and is deployed on the Actuate server. ROX stands for 'Report Object eXecutable' and contains the compiled report definition.

Multiple choice technology
  1. EditHistoryItems

  2. AddFutureItems

  3. InteractiveMode

  4. GetHistoryItems

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

Standard Component Interface properties include InteractiveMode, GetHistoryItems, and EditHistoryItems. AddFutureItems is not a standard CI property - this appears to be a made-up name. The correct pattern is future item handling is done through other methods.