Computer Knowledge

GUI and Web Frameworks

1,711 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 technology
  1. ) Home page in your web application

  2. A web page to create a consistent layout for the pages in your application.

  3. Menu page in your web application

  4. All of the above

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

Master Pages in ASP.NET 2.0 provide a template for creating consistent layout across multiple pages, defining shared elements like headers, footers, and navigation. They're not specific pages like home or menu pages, but rather layout templates that content pages can reference.

Multiple choice technology web technology
  1. adding, creating, deleting, and modifying user account information

  2. Creating and deleting roles

  3. Caching user information

  4. b) Themes can’t include auxiliary files (e.g. graphics) but CSS can include it.

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

Membership and Role Management provides comprehensive user account management (create, modify, delete users) and role administration (create, delete roles). Option C is incorrect because caching user information is handled by separate caching features, not the membership system. Option D is unrelated content about themes.

Multiple choice technology web technology
  1. Hyperlink

  2. TreeView,

  3. Menu

  4. Tools

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

ASP.NET 2.0 introduced TreeView and Menu as new navigation controls for structured site navigation. TreeView displays hierarchical data, while Menu provides dropdown/flyout navigation. Hyperlink existed in earlier versions, and Tools is not a navigation control.

Multiple choice technology web technology
  1. Appsettings

  2. ConnectionStrings

  3. System.Data

  4. Compilation

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

Web.config contains standard configuration sections including appSettings (application settings), connectionStrings (database connections), and compilation (build settings). System.Data is not a valid top-level configuration section - database providers are registered differently.

Multiple choice technology web technology
  1. Membership

  2. Webservice

  3. Role

  4. SiteMap

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

ASP.NET 2.0 introduced built-in providers for Membership (user management), Role (role-based security), and SiteMap (site navigation). These providers offer a consistent API for common tasks without requiring developers to build from scratch. Webservice is not a provider - it's a communication technology.

Multiple choice technology web technology
  1. Bin,

  2. Debug

  3. App_Code,

  4. App_Data

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

Bin (compiled assemblies), App_Code (shared class files), and App_Data (database files, XML files) are special ASP.NET folders with specific runtime behaviors. Debug is not a special ASP.NET folder - it's typically used in development but doesn't have reserved status in ASP.NET.

Multiple choice technology architecture
  1. Model View Controller

  2. Business Delegate

  3. Composite View

  4. Service Locator

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

MVC (Model-View-Controller) separates data representation (Model), application behavior (Controller), and presentation (View) into three distinct components. This separation allows independent development, testing, and maintenance of each aspect. The Model handles data, View handles display, Controller handles user input and coordination.

Multiple choice technology databases
  1. Class object

  2. Schema object

  3. Both

  4. None of the above

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

An inline view is a subquery in the FROM clause with an alias. It's not a persistent database object (no DDL), not a class or schema object - it's a temporary, query-scoped result set.

Multiple choice technology programming languages
  1. User Control

  2. Custom Control

  3. Control

  4. Activex Control

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

In both Windows Forms (System.Windows.Forms.Control) and Web Forms (System.Web.UI.Control), the Control class serves as the base class for all built-in UI components. UserControl and CustomControl derive from Control rather than acting as the base.

Multiple choice technology platforms and products
  1. .NET Framework 3.5

  2. .NET Framework 4.0

  3. .NET Framework 4.5

  4. .NET Framework 2.0

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

Microsoft Visual Studio 2010 was released alongside .NET Framework 4.0, which was the default framework version for that edition. .NET Framework 3.5 was used with VS 2008, while 4.5 came later with VS 2012. Version 2.0 is much older.

Multiple choice technology platforms and products
  1. Folder Diff

  2. Merging

  3. Branch Visualization

  4. Annotate

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

Branch Visualization was the major new feature introduced in TFS 2010, providing a graphical view of branch hierarchy and relationships. Folder Diff, Merging, and Annotate (blame) all existed in previous TFS versions, so they were not new features in 2010.

Multiple choice technology platforms and products
  1. .NET Framework 3.5 SP1

  2. .NET Framework 3.0

  3. .NET Framework 2.0

  4. All of the Above

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

ASP.NET MVC 1.0 was released in 2009 as an add-on for .NET Framework 3.5 SP1. It was not included with .NET 3.0 or 2.0. Later versions of MVC were built into .NET 4.0 and beyond, but the initial MVC release required 3.5 SP1.

Multiple choice technology platforms and products
  1. .NET Framework 3.5

  2. .NET Framework 2.0

  3. .NET Framework 3.0

  4. All of the Above

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

Visual Studio 2010 was designed to maintain backward compatibility with applications built on earlier .NET Framework versions. It can target and run applications built for .NET 2.0, 3.0, and 3.5, allowing organizations to upgrade their development tools while preserving investments in existing codebases. This compatibility is achieved through multi-targeting support and side-by-side framework installation.