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 technology
  1. TreeView Server Control

  2. SiteMapPath Server Control

  3. Menu Server Control

  4. All of the above

  5. None of the above

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

ASP.NET 2.0 provides three main site navigation controls: TreeView (hierarchical display), SiteMapPath (breadcrumb trail showing current location), and Menu (dropdown/cascading menu structure). All three work together to provide comprehensive navigation solutions.

Multiple choice technology web technology
  1. \App_Code

  2. \App_Theme

  3. Solution Explorer

  4. Server Explorer

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

In ASP.NET, the \App_Code directory is specifically designed to store raw source code files (such as .cs or .vb classes) which are automatically compiled at runtime. \App_Theme is used for styling, while Solution Explorer and Server Explorer are IDE tool windows, not directories.

Multiple choice technology web technology
  1. Design and HTML

  2. Design and Source

  3. HTML and Source

  4. Form and Html

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

Visual Studio 2005 provides two primary viewing modes for web pages: Design view (visual editor) and Source view (code editor). These tabs allow developers to switch between visual layout and HTML source code perspectives of the same page.

Multiple choice technology web technology
  1. Page Tabs

  2. Smart tags

  3. Tab Navigator

  4. Task bar

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

Tab Navigator refers to the navigation elements that appear at the bottom of ASP.NET pages, providing users with a way to switch between different sections or views. Smart tags serve different purposes in Visual Studio, while Page Tabs and Task bar are not standard ASP.NET navigation terminology.

Multiple choice technology web technology
  1. Code Change status Notifications

  2. Smart tags

  3. Page tabs

  4. Error Notifiaction and Assistance

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

The underline in Visual Studio 2005 code indicates Error Notification and Assistance - it marks syntax errors, compile errors, or warnings and provides assistance through smart tags or error lists. Smart tags appear as a small arrow glyph, not an underline. Code change notifications appear in different UI elements.

Multiple choice technology web technology
  1. Validation

  2. Navigation

  3. Login

  4. Standard

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

The Navigation control section in the Toolbox includes TreeView and Menu controls, which are designed for site navigation and hierarchical data display. Validation controls check input, Login controls handle authentication, and Standard controls contain basic UI elements like buttons and textboxes.

Multiple choice technology web technology
  1. Webparts

  2. HTML

  3. Data

  4. General

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

Web Parts controls in the Toolbox handle personalization features - they allow users to customize page layout, content, and appearance by adding, moving, or removing configurable parts. HTML contains basic markup controls, Data handles data source connectivity, and General contains miscellaneous controls.

Multiple choice technology web technology
  1. Snippets

  2. Smart tags

  3. Tasks

  4. Tag Navigator

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

Smart tags appear as a small arrow in the right-hand corner of server controls in Design view and provide quick access to common tasks like configuring data sources, formatting templates, or setting properties. Snippets are reusable code blocks, Tasks is not a feature, and Tag Navigator is unrelated.

Multiple choice technology web technology
  1. Snippets

  2. Smart tags

  3. Tasks

  4. Puppets

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

Code snippets in Visual Studio 2005 are small, reusable code fragments that perform specific tasks (like creating properties, try-catch blocks, or for loops) and can be inserted freely into your code. Smart tags are context menus, Tasks are not snippets, and Puppets is not a Visual Studio feature.

Multiple choice technology web technology
  1. True

  2. False

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

Visual Studio 2005 can save settings including customizations like window layouts, keyboard shortcuts, toolbars, and other modifications to the development environment through the Import/Export Settings feature. This allows users to backup, share, or transfer their personalized IDE configuration.

Multiple choice technology web technology
  1. Internet explorer 6.0

  2. Internet explorer 3.2/ Netscape navigator 3.0

  3. HTML 4.01

  4. XHTML 1.0 Frameset

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

Visual Studio 2005 targets Internet Explorer 6.0 as its default validation browser for ASP.NET pages. The other options represent either outdated browsers (IE 3.2/Netscape 3.0) or document type standards (HTML 4.01, XHTML 1.0) rather than the browser compatibility target.

Multiple choice technology programming languages
  1. java.lang

  2. java.util

  3. java.awt

  4. java.graphics

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

The java.awt package contains all classes for creating user interfaces and for painting graphics and images. AWT stands for Abstract Window Toolkit and is Java's original platform-independent GUI framework. The java.lang package contains core language classes, java.util contains collections and utilities, and java.graphics is not a standard package.