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. By namespace

  2. By class

  3. By Assembly

  4. All of the above

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

The Dependency Graph feature in Visual Studio's Architecture Explorer can generate graphs organized by multiple dimensions. You can group and visualize dependencies by namespace to see relationships between code modules, by class to examine class-level interactions, and by Assembly to understand dependencies between compiled assemblies. Since all three organization methods are supported, 'All of the above' is the correct answer.

Multiple choice technology platforms and products
  1. Extension Manager

  2. External Tools

  3. Visual Studio Gallery

  4. None of the above

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

Visual Studio Gallery is the official marketplace that provides quick access to a vast collection of tools, controls, templates, and extensions to enhance Visual Studio functionality. The Extension Manager is used to manage installed extensions, while External Tools refers to custom external applications you can launch from Visual Studio. Visual Studio Gallery is the comprehensive platform for discovering and obtaining new assets.

Multiple choice technology platforms and products
  1. Service Model

  2. Workflow

  3. Data Binding

  4. Initialization

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

The question asks which event category is NOT specified in IntelliTrace. Service Model, Workflow, and Data Binding are all valid, predefined IntelliTrace event categories that you can select when configuring IntelliTrace. 'Initialization' is not a standard IntelliTrace event category - IntelliTrace categories include things like Access Threaded Data, ASP.NET, Console, Debugger, File, Registry, and the three mentioned above, but not Initialization.

Multiple choice technology platforms and products
  1. Tools -> Options -> Intellitrace -> Intelltrace events -> Enable Intellitrace

  2. Tools -> Options -> Intellitrace -> Enable Intellitrace

  3. Tools -> Options -> Intellitrace -> Enable Intellitrace and Intellitrace Events Only

  4. Tools -> Options -> Intellitrace -> Enable Intellitrace and Intellitrace Events and Call information

  5. a, c, d

  6. b, c, d

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

To enable IntelliTrace in Visual Studio, you navigate to Tools -> Options -> IntelliTrace. Option B provides the basic 'Enable IntelliTrace' setting. Options C and D add specific configurations - option C enables 'IntelliTrace Events Only' mode, while option D enables full IntelliTrace including 'Events and Call information'. Option A incorrectly references 'Intelltrace events' (typo) and is not the correct path. Option F (b, c, d) is correct because B is the basic enable option, and C and D are the specific configurations you can choose within that setting.

Multiple choice technology platforms and products
  1. Navigate To

  2. Search

  3. Call Hierarchy

  4. None of the above

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

The 'Navigate To' feature (Ctrl+,) in Visual Studio 2010 provides search-as-you-type functionality for quickly finding files, types, and members in your codebase. As you type, it incrementally filters and shows matching results. The regular 'Search' feature is for finding text in files, 'Call Hierarchy' is for viewing call relationships, and neither provides this specific search-as-you-type capability for code elements.

Multiple choice technology platforms and products
  1. Team Agent

  2. TFS Client

  3. Team Explorer

  4. TFS Agent

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

Team Explorer is the Visual Studio tool/window used to connect to and work with Team Foundation Server (TFS). It provides access to version control, work items, builds, and other TFS features. Team Agent and TFS Agent are not the correct tool names, and TFS Client is not the official name of this component.

Multiple choice technology programming languages
  1. MsgboxStyle Enumeration

  2. MsgboxResult Enumeration

  3. CompareMethod Enumeration

  4. None of the above

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

MsgBoxResult enumeration contains return values like VbOk, VbCancel, and VbAbort that indicate which button the user clicked. MsgBoxStyle enumeration (option A) specifies which buttons and icons to display, not which was clicked. CompareMethod is for string comparison.

Multiple choice technology programming languages
  1. MsgboxStyle Enumeration

  2. MsgboxResult Enumeration

  3. CompareMethod Enumeration

  4. None of the above

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

MsgBoxResult enumeration contains return values like VbOk, VbCancel, and VbAbort that indicate which button the user clicked. MsgBoxStyle enumeration (option A) specifies which buttons and icons to display, not which was clicked. CompareMethod is for string comparison.

Multiple choice technology web technology
  1. <jsp:include ….>

  2. <%include …%>

  3. All of the above

  4. None of the above

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

Both and <%@ include %> (directive) are used for implementing the Composite View pattern, which allows composing complex views from smaller reusable components. The question uses <%include...%> (likely meaning the include directive). Both mechanisms support composite views, making 'All of the above' the correct answer.

Multiple choice technology databases
  1. Source Analyzer

  2. Target Designer

  3. Workflow Monitor

  4. Mapplet Designer

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

Workflow Monitor is part of the Workflow Manager tool, not the Designer tool. The Designer interface includes Source Analyzer, Target Designer, Transformation Developer, Mapplet Designer, and Mapping Designer. Workflow Monitor is used for runtime monitoring and troubleshooting workflow executions.

Multiple choice technology
  1. Recent Netscape and Internet Explorer browsers which include JavaScript

  2. The Java compiler from Sun's Java Development Kit

  3. Borland's C++ compiler

  4. Microsoft's Visual J++

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

Sun's Java compiler (javac) produces pure Java bytecode. Some other tools like Microsoft's Visual J++ introduced platform-specific extensions that violated Java's portability principle.

Multiple choice technology mainframe
  1. An SCA binding will be assumed.

  2. A Web Service binding will be assumed.

  3. A Stand-alone Reference will be generated.

  4. The developer will not be able to access the module.

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

When an SCA export has no binding explicitly defined during deployment, the SCA container automatically defaults to an SCA binding. This allows the module to be deployed and accessed for testing within the same SCA domain. Web Service bindings require explicit configuration, and the module remains accessible.

Multiple choice technology mainframe
  1. No action needs to be taken.

  2. Change the SCA binding in the second SCA module.

  3. Add a Stand-alone Reference to the first SCA module.

  4. Add a Web Service export binding to the first SCA module.

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

When SCA modules are deployed in different clusters within the same cell, the SCA binding automatically handles the remote communication through the cell's SCA domain. No changes to bindings or additional references are needed because SCA provides location transparency. The second module can continue calling the first's SCA export seamlessly.