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 general knowledge
  1. Object signing

  2. Style sheets

  3. Netcaster channels

  4. Image rollovers

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

JAR (Java Archive) files are used for object signing in JavaScript, particularly for signing applets and scripts to verify their authenticity and security. This cryptographic signing ensures code comes from a trusted source. Style sheets, image rollovers, and Netcaster channels don't use JAR files.

Multiple choice general knowledge culture
  1. spanner setu

  2. setu

  3. spanner

  4. screw driver

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

In Chennai colloquial usage, 'toolbar' is humorously translated as 'spanner setu' - using a mechanic's tool (spanner) with 'setu' meaning line/row, representing the toolbar visually. This is a creative slang rather than literal translation, as the other options are incomplete.

Multiple choice general knowledge
  1. The Tool Box

  2. The Tool Bar

  3. The Menu Bar

  4. The form Wizard

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

In Microsoft Access design view, the Tool Box contains all the controls (text boxes, buttons, labels, etc.) that you can add to a form. You click on a control in the Tool Box, then click on the form to place it. The Tool Bar contains commands for actions, Menu Bar has menus, and Form Wizard is for step-by-step form creation.

Multiple choice general knowledge science & technology
  1. Liferay supports more than 32 Languages.

  2. Liferay provides more than 60 out-of-box portlets including wiki, blogs, forum, chat, document library, image gallery etc..

  3. PHP, Python, Ruby portlets can also be deployed on Liferay.

  4. None of the above

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

All statements about Liferay are true: it supports 32+ languages, provides 60+ portlets, and allows PHP/Python/Ruby portlets through scripting extensions. Therefore 'None of the above' (meaning none are incorrect) is right.

Multiple choice general knowledge science & technology
  1. Liferay supports more than 32 Languages.

  2. Liferay provides more than 60 out-of-box portlets including wiki, blogs, forum, chat, document library, image gallery etc..

  3. PHP, Python, Ruby portlets can also be deployed on Liferay.

  4. None of the above

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

All the listed options are actually correct features of Liferay: it supports over 30 languages, includes numerous out-of-the-box portlets like wikis and blogs, and allows for the deployment of portlets written in various scripting languages. Thus, 'None of the above' is the correct choice.

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 softskills communication
  1. In the Claims tab, select the Claim Type checkbox.

  2. In the Claims tab, check the Claim Type checkbox.

  3. In the Claims tab, click the Claim Type checkbox.

  4. None of the above

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

In UI documentation, 'select' is the standard verb for checkboxes because it covers both selecting and clearing (toggling). 'Check' implies only checking, not unchecking. 'Click' is technically true but less precise: it describes the physical action rather than the logical operation. Microsoft and Apple style guides both prefer 'select'.

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.