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 general knowledge science & technology
  1. An action button that advances to the next slide

  2. An item on the slide that performs an action when clicked

  3. The name of a motion path

  4. All of above

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

In PowerPoint animations, a trigger is an object (like a picture or button) that you click to initiate an animation action. It's not an action button for navigation (those just advance slides), nor is it related to motion paths specifically.

Multiple choice general knowledge science & technology
  1. Slide sorter view

  2. Notes page view

  3. Slide view

  4. Outline view

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

Slide Sorter view is the best view for setting transitions because it displays all slides as thumbnails, allowing you to select multiple slides at once and apply transitions uniformly. This view is specifically designed for working with slide organization and effects across multiple slides.

Multiple choice general knowledge science & technology
  1. Slider Timings

  2. Slider Timer

  3. Rehearsal

  4. Slide Show Setup

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

The Rehearsal feature in PowerPoint allows you to practice your presentation and manually set custom timings for each slide. Unlike preset automated timings, Rehearsal gives you precise control over how long each slide displays based on your actual narration pace.

Multiple choice general knowledge
  1. header and footer toolbar

  2. print layout view

  3. page setup dialog box

  4. none of the above

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

Switching between portrait and landscape orientation is done through the Page Setup dialog box. This is not handled by the header/footer toolbar or by simply switching views - you need to access Page Setup to change the orientation setting.

Multiple choice general knowledge
  1. formatting toolbar

  2. picture toolbar

  3. drawing toolbar

  4. image toolbar

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

The Drawing toolbar (or Drawing tools in ribbon versions) contains the Order commands (Bring to Front, Send to Back, etc.) that control the layering and stacking order of objects like AutoShapes, pictures, and other graphical elements. The formatting and picture toolbars don't handle object layering.

Multiple choice general knowledge
  1. Changes the content of the slide

  2. Adds functionality to the slide

  3. Changes the look of the slide without changing the content

  4. None of the above

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

Design templates control the visual styling of slides including color schemes, fonts, and background elements. They do not modify the actual text, images, or other content you've added to your slides.

Multiple choice general knowledge
  1. Slider Timings

  2. Slider Timer

  3. Rehearsal

  4. Slide Show Setup

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

Rehearsal in PowerPoint allows you to practice your presentation and automatically records the time spent on each slide, setting custom timings. Slider Timings and Slider Timer are not standard PowerPoint features, while Slide Show Setup is for configuring presentation settings.

Multiple choice softskills communication
  1. You failed to download the language file. Re-install the software or call tech support.

  2. A required language file was not found on your system. Please re-install the software or contact tech support.

  3. Error: Language file. Re-install the software. If it does not get fixed, contact tech support.

  4. Not Applicable

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

In UI/UX writing, error messages should be polite, passive, and helpful rather than accusatory. Option 501662 uses professional language ('was not found') instead of blaming the user ('You failed'), making it the standard choice for technical documentation and software interfaces.

Multiple choice technology programming languages
  1. PreLoad

  2. Load

  3. InitComplete

  4. PreInit

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

In ASP.NET page lifecycle, PreInit is the first event that fires. This occurs before the page is initialized and is where properties like IsPostBack are set and personalization data is loaded. The sequence is PreInit → Init → InitComplete → LoadComplete, etc.

Multiple choice technology programming languages
  1. ControlToValidate property and Text property

  2. CompareTovalidate and ControlTovalidate

  3. CompareToValidate and Text Property

  4. CompareToValidate and ID property

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

All validation controls in ASP.NET Web Forms require the ControlToValidate property to specify which input control should be validated. The Text property is used to display the error message when validation fails, making these two properties fundamental to any validation control's functionality.

Multiple choice technology programming languages
  1. .NET Framework 1.1

  2. .NET Framework 2.0

  3. .NET Framework 3.0

  4. .NET Framework 3.5

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

Windows Workflow Foundation (WF) was introduced as part of .NET Framework 3.0, along with WPF (Windows Presentation Foundation) and WCF (Windows Communication Foundation). This was a major release that introduced several new technologies for building workflow-driven applications and rich client experiences.

Multiple choice technology programming languages
  1. AddJavaScript

  2. RegisterClientScript

  3. AddClientScript

  4. RegisterJavascript

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

The RegisterClientScript method (or ClientScript.RegisterStartupScript/RegisterClientScriptBlock) is used to dynamically add JavaScript code to the rendered HTML page from server-side C# code. This allows developers to inject client-side functionality conditionally based on server-side logic or user actions.