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
-
Themes
-
Site Navigation
-
Gird View
-
Master Pages
D
Correct answer
Explanation
Master Pages in ASP.NET 2.0 provide visual inheritance by allowing developers to create a consistent layout template that child pages can inherit. This enables centralized control over page structure, navigation, and common elements across an entire site.
-
GridView
-
DataGrid
-
DataSet
-
DataBinder
A
Correct answer
Explanation
GridView is the new data-bound server control introduced in ASP.NET 2.0, replacing the older DataGrid control from ASP.NET 1.x. GridView provides enhanced features like built-in paging, sorting, and editing capabilities with less code required.
-
IIS Manager
-
Microsoft Management Console
-
web.config file
-
Integrated Development Environment
-
TreeView Server Control
-
SiteMapPath Server Control
-
Menu Server Control
-
All of the above
-
None of the above
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.
-
\App_Code
-
\App_Theme
-
Solution Explorer
-
Server Explorer
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.
-
Design and HTML
-
Design and Source
-
HTML and Source
-
Form and Html
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.
-
Page Tabs
-
Smart tags
-
Tab Navigator
-
Task bar
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.
-
Code Change status Notifications
-
Smart tags
-
Page tabs
-
Error Notifiaction and Assistance
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.
-
Validation
-
Navigation
-
Login
-
Standard
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.
-
Webparts
-
HTML
-
Data
-
General
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.
-
Snippets
-
Smart tags
-
Tasks
-
Tag Navigator
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.
-
Snippets
-
Smart tags
-
Tasks
-
Puppets
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.
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.
-
Internet explorer 6.0
-
Internet explorer 3.2/ Netscape navigator 3.0
-
HTML 4.01
-
XHTML 1.0 Frameset
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.
-
java.lang
-
java.util
-
java.awt
-
java.graphics
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.