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 testing
  1. MSHTML

  2. DOM

  3. UIA

  4. MAUI

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

UI Automation (UIA) is the Microsoft accessibility framework specifically designed to interact with Silverlight controls. Silverlight exposes its UI elements through UIA, enabling automation tools to identify and manipulate controls programmatically. MSHTML is used for HTML rendering in IE, DOM is for web document structure, and MAUI is a modern cross-platform framework unrelated to Silverlight.

Multiple choice technology testing
  1. By using a different property instead of Automation ID

  2. By using a combination of properties with which a control can be found uniquely

  3. Test Automation tools cannot tackle such situations

  4. Automation does not help in such situations

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

When automation IDs are duplicated across controls, automation tools use property combinations like name, class name, parent hierarchy, or XPath to uniquely identify each control. A single property might not be sufficient, so tools use multiple attributes together to create a unique selector. Modern automation frameworks can handle this common scenario through composite identification strategies rather than failing when IDs are not unique.

Multiple choice technology testing
  1. Data Driven Testing

  2. Keyword Driven Testing

  3. Functionality Driven

  4. All the above

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

Data Driven Testing is an automation framework where test data is stored externally in spreadsheets, flat files, or XML files, and the test scripts read this data to drive the UI. This separates test logic from test data, allowing the same script to run with multiple data sets.

Multiple choice technology operating systems
  1. True

  2. False

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

XAML has an optimization where child elements of a collection-type property are automatically added to that collection. You don't need explicit collection syntax - the parser understands that child elements belong to the parent collection property.

Multiple choice technology platforms and products
  1. Intellitrace

  2. Multi-Monitor Support

  3. Architecture Explorer

  4. Test Impact Analysis

  5. None of the above

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

All listed features (Intellitrace, Multi-Monitor Support, Architecture Explorer, Test Impact Analysis) were indeed new capabilities in Visual Studio 2010. Since the question asks which is NOT new, and all are new, the correct answer is 'None of the above' - meaning all of them are new features.

Multiple choice technology platforms and products
  1. Multi-Monitor Support

  2. Call Hierarchy

  3. Parallel Tasks Window

  4. Zoom

  5. All of the above

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

Visual Studio 2010 introduced multiple IDE enhancements: Multi-Monitor Support allowed spreading the IDE across screens, Call Hierarchy navigation showed method call chains, Parallel Tasks Window helped debug parallel code, and Zoom capability allowed better text editor readability. All were new in VS 2010.

Multiple choice technology platforms and products
  1. Backward compatibility

  2. Multi-Targetting

  3. Forward Compatibility

  4. None of the above

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

Multi-Targeting is the Visual Studio feature that allows developers to build and run programs targeting older .NET framework versions without changing code. You can use VS 2010 to build for .NET 2.0, 3.0, 3.5, or 4.0, maintaining backward compatibility without upgrading framework requirements.

Multiple choice technology platforms and products
  1. Supported

  2. Not Supported

  3. Partially Supported

  4. None of the above

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

Visual Basic 10.0 (released alongside Visual Studio 2010) introduced full support for multiline lambda expressions (statement lambdas) and auto-implemented properties, removing the need for explicit line continuation characters in many scenarios. Therefore, these language features are fully supported.

Multiple choice technology platforms and products
  1. Visual Studio Gallery

  2. Power Tools

  3. Extension Manager

  4. None of the above

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

In Visual Studio (specifically VS 2010/2012), the Extension Manager is the built-in IDE interface used to browse, install, and manage extensions. Visual Studio Gallery is the online repository that hosts these extensions, rather than the built-in tool itself.