Computer Knowledge

Internet and Web

1,617 Questions

The Internet and Web encompass global networks, web portals, browsers, and online communication tools. This hub provides questions on basic internet concepts, email structures, and web terminology. Strong knowledge here is vital for scoring well in computer awareness sections.

Web browsersEmail conceptsWorld Wide WebWeb portalsInternet terminology

Internet and Web Questions

Multiple choice technology enterprise content management
  1. A Text Object by Name:- MyHello and text value:- MyHello gets created in the database.

  2. A Text Object by Name:- MyHello and text value:- Hello gets created in the database.

  3. A Text Object by Name:- Hello and text value:- MyHello gets created in the database.

  4. Nothing is created, as one 'key/important statement' is missing in the code.

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

In this specific object manager API, the first parameter of createTextObject represents the text content ("Hello") and the second represents the name ("MyHello"). The subsequent assignments swap these values, setting the name to "Hello" and text to "MyHello".

Multiple choice technology enterprise content management
  1. true, true

  2. true. false

  3. false, true

  4. true, undefined

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

This question relies on a proprietary API (likely Livelink/OpenText WCM). In this API, instantiating a WebObject with a type parameter activates it, whereas the default constructor leaves it inactive, resulting in true, false.

Multiple choice technology enterprise content management
  1. A cookie by Name cookie-myCookie is created.

  2. The cookie will expire exactly 15 days from the time it is created.

  3. The cookie will expire exactly 30 days from the time it is created.

  4. A cookie by Name myCookie is created.

  5. Since the setTime function will fail, the cookie will never expire.

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

The code calculates milliseconds for 30 days (1000 * 3600 * 24 * 30) and adds it to the current time, setting the cookie to expire in 30 days. The setCookie call creates a cookie named "myCookie".

Multiple choice technology enterprise content management
  1. String representation of current date, in US format.

  2. String representation of current date, in UK format.

  3. String representation of the current date, formatted according to the runtime's (browser/system) locale settings.

  4. Will return an empty string.

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

The toLocaleDateString() method returns a string representation of the date formatted according to the locale settings of the runtime environment (browser or operating system). This means the format varies based on the user's regional settings (e.g., MM/DD/YYYY for US, DD/MM/YYYY for UK, etc.), not a fixed US or UK format.

Multiple choice technology enterprise content management
  1. 11, 10, 12

  2. 10, 11, 12

  3. 11, 10, 0

  4. compile time error. Wrong Date signature

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

In JavaScript, months are 0-indexed (0 is January, 11 is December). Thus, new Date(2009, 11, 10) represents December 10, 2009. getMonth() returns 11, getDate() returns 10, and since no time is specified, getHours() defaults to 0.

Multiple choice technology web technology
  1. NNav

  2. Mosaic

  3. Mozilla

  4. MSIE

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

Netscape Navigator 1.0 used 'Mozilla' as its user agent string, which was a portmanteau of 'Mosaic Killer' (Mosaic + Godzilla). This naming convention continues in browsers today, which often include 'Mozilla' in their user agent strings for compatibility.

Multiple choice technology web technology
  1. When the Web server specifically requests it via an HTTP header

  2. For all URLs beginning with an https: scheme identifier

  3. Only when the user has enabled support in the advanced configuration options

  4. When the user has identified the Web server as a trusted host

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

Firefox 3.x disabled SSL 2.0 by default due to security vulnerabilities; it only supports SSL 2.0 when users explicitly enable it in about:config advanced settings. Modern browsers use SSL 3.0 and TLS instead.

Multiple choice technology web technology
  1. To make it possible to view Web content on a wider variety of devices and software

  2. To make it possible for computers to parse and analyze the meaning and context of Web data

  3. To reduce the amount of network traffic needed to conduct simple Web transactions

  4. To enable a bi-directional, read/write Web

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

The semantic Web aims to make web data machine-readable by adding metadata and structure, enabling computers to understand meaning and context rather than just display content for humans. This facilitates intelligent data processing and integration.

Multiple choice technology web technology
  1. It was the first browser designed to render XHTML pages

  2. It was the first Microsoft browser to offer strict compliance with W3C standards

  3. It was the first browser to be extensible via ActiveX controls

  4. It made possible the AJAX Web application model

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

Internet Explorer 5.0 introduced the XMLHttpRequest object (originally an ActiveX control), which enabled asynchronous background data requests. This innovation laid the foundation for AJAX (Asynchronous JavaScript and XML), revolutionizing web application development.

Multiple choice technology web technology
  1. Gopher

  2. FTP

  3. IRC

  4. NNTP

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

Gopher was an early application-layer protocol designed for distributing, searching, and retrieving documents over the Internet. It organized content in hierarchical menus, making it easier to navigate than FTP, but was eventually replaced by the more flexible and multimedia-capable World Wide Web.

Multiple choice technology operating systems
  1. Spyglass Mosaic

  2. Netscape Navigator

  3. Google Chrome

  4. Mozilla Firefox

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

Spyglass Mosaic was the original browser from which Microsoft licensed the source code to build Internet Explorer 1. Since it served as the direct foundation for IE, it was never a competitor. Netscape, Chrome, and Firefox were all direct competitors.

Multiple choice technology usability
  1. True

  2. False

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

Accessibility and usability are different concepts. A site can be technically accessible (screen readers can parse it) but unusable (poor navigation, confusing workflow). Usability requires good UX design beyond just accessibility compliance.