Computer Knowledge

Internet and Web

1,557 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 platforms and products
  1. WebkitView

  2. MapView

  3. WebView

  4. SurfaceView

  5. None of above

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

WebView is the correct Android widget for displaying web content within your application. It uses the WebKit rendering engine and provides methods for navigation, JavaScript execution, and webpage loading. WebkitView is not a standard Android widget class.

Multiple choice technology
  1. Success

  2. Redirection

  3. Client Error

  4. None of Above

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

HTTP 404 errors fall under the 4xx series, which indicates client errors. Specifically, 404 means 'Not Found' - the client requested a resource that doesn't exist on the server. The question has an error - it says '404 bad request error' but 400 is 'Bad Request' while 404 is 'Not Found'. Despite this terminology issue, the core concept is correct: 404 indicates a client-side error (the client asked for something that isn't there), not a server failure, success response, or redirection.

Multiple choice technology platforms and products
  1. Webkit

  2. Safari

  3. Firefox

  4. Blazer

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

Android's integrated browser is built on the WebKit rendering engine. WebKit provides the core functionality for rendering web pages and running JavaScript within Android applications. Safari uses WebKit on iOS, while Firefox uses its own Gecko engine.

Multiple choice technology web technology
  1. Looslely coupled

  2. with User friendly URL

  3. Less complex

  4. All of the above

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

MVC's separation of concerns creates loose coupling between Model, View, and Controller. The routing engine generates clean, SEO-friendly URLs without file extensions. By organizing code into distinct layers, MVC applications are generally less complex to maintain than monolithic alternatives.

Multiple choice technology programming languages
  1. True

  2. False

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

XMLHttpRequest (XHR) requests are AJAX calls that fetch data asynchronously without reloading the page. These requests do not create new history entries - only page navigation through hyperlinks, window.location, or form submissions add to browser history. Therefore, the statement is false.

Multiple choice technology
  1. DATA

  2. GOSSIP

  3. RUMOR

  4. FONT

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

Information is processed, organized data that provides meaning and context. While gossip and rumors are informal and unverified information, and font is a typography style, data is the fundamental raw material that becomes information when structured and interpreted.

Multiple choice technology life sciences
  1. End Points

  2. Web Reference

  3. Directly referring the URL

  4. All of the above

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

WCF services are structurally exposed to external clients using endpoints, which consist of an Address, Binding, and Contract (ABC). Web references and direct URL references are client-side techniques for consuming services rather than exposing them.

Multiple choice technology web technology
  1. Dot net

  2. JSP

  3. Flex

  4. Silver Light

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

Flex (Adobe Flex) was a rich internet application framework used for building Flash-based web applications. In the context of the Answers.com portal (answersint), Flex was indeed used as the frontend technology. Dot Net (A) and JSP (B) are server-side technologies, while Silverlight (D) was a competing RIA framework from Microsoft.

Multiple choice technology
  1. drill up/down

  2. drill by

  3. drill through

  4. all the above

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

WebI provides drill up (navigate to higher hierarchy level) and drill down (navigate to more detailed level) as standard analysis features. Drill by allows drilling on a specific dimension or hierarchy. While drill through exists, it's not typically listed as a standard drill option in the same category.

Multiple choice technology security
  1. Access URL

  2. Authentication

  3. Authorization

  4. Accounting

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

In the AAA security framework (Authentication, Authorization, Accounting), a user session begins after successful authentication. Once authenticated, the user's identity is established and a session can be tracked. Authorization determines what the authenticated user can access.

Multiple choice technology security
  1. when the user logs off

  2. when the session expires

  3. when an administrator disables a user

  4. when user hits another URL

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

User sessions terminate through valid mechanisms: user logout (explicit termination), session expiration (timeout), or administrative action (disabling user account). Hitting another URL is just session activity, not termination. All three listed scenarios are correct.