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
  1. Chat

  2. E-mail

  3. Instant Messaging

  4. IRC

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

Email is not live communication because it doesn't require simultaneous presence of sender and receiver. Chat, Instant Messaging, and IRC (Internet Relay Chat) are synchronous/live forms where participants communicate in real-time.

Multiple choice technology
  1. A small overheated area on a CPU

  2. A place served by public wireless access

  3. Jargon for an X-rated Web site

  4. A faulty area in the programming code

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

In technology terminology, a hot spot refers to a location that offers public wireless internet access, such as coffee shops, airports, or libraries. The term comes from the 'hot' in 'hotspot' meaning a zone of connectivity. Options A, C, and D describe other computing concepts but are not the standard definition of a technology hot spot.

Multiple choice technology testing
  1. the Internet for distribution

  2. Internet technology

  3. testing techniques

  4. provided physical media are produced in this type of release mechanism

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

Web releases use the internet for direct download and distribution, eliminating physical media. Option B is too vague, C is unrelated to delivery mechanisms, and D is incorrect - web releases avoid physical media entirely.

Multiple choice technology
  1. Browse the Internet

  2. Execute Queries and manage reports

  3. Build Queries and Reports

  4. all the above

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

BEx Browser is the Business Explorer Browser used for executing saved queries and managing reports in SAP BW. It does NOT browse the Internet (option A) nor build queries - that's done in BEx Analyzer or Query Designer.

Multiple choice technology web 2.0
  1. 1

  2. 10

  3. 20

  4. 30

  5. More than 30

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

Web browsers traditionally limit websites to 20 cookies per domain as a technical standard to prevent storage abuse and ensure efficient cookie management. This specification has been widely implemented across browsers, though some modern browsers may support higher limits. The restriction helps maintain performance and prevents potential issues.

Multiple choice technology platforms and products
  1. Infoview

  2. Universe

  3. CMC

  4. Publications

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

InfoView (BI Launch Pad) is the web-based portal in SAP BusinessObjects that allows users to access, view, and manage reports through a browser. Universe is the semantic layer, CMC/CCM are administrative tools, and Publications is for report distribution.

Multiple choice technology web technology
  1. Windows

  2. Networking

  3. .net

  4. ASP

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

SOAP was indeed a cornerstone of Microsoft's .NET architecture for building web services and distributed applications. The .NET framework provided extensive support for creating and consuming SOAP services, making it a key technology in Microsoft's Internet application development strategy.

Multiple choice technology programming languages
  1. The id attribute must be defined for <jsp:usebean>.

  2. The scope attribute must be defined for <jsp:usebean>.

  3. The class attribute must be defined for <jsp:usebean>.

  4. The <jsp:usebean> must include either type or class attribute or both.

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

For , the id attribute is mandatory as it provides the variable name for accessing the bean. The scope attribute is optional with 'page' as default. Either type or class attribute (or both) must be present, but not both class and beanName together.

Multiple choice technology web technology
  1. client.navName

  2. navigator.browser

  3. browser.name

  4. navigator.appName

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

The JavaScript navigator object contains information about the browser, and the appName property specifically returns the browser's name. Option D correctly accesses this property. Options A and C reference non-existent objects, while option B tries to access a 'browser' property that doesn't exist on the navigator object. Note that appName may return 'Netscape' for many browsers due to historical compatibility reasons.

Multiple choice technology web technology
  1. setTimeout('run()','50000');

  2. setTimer('run()','5');

  3. setTimeout('run()','500');

  4. setTimeout('run()','5000');

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

The setTimeout function schedules a function to execute after a specified delay in milliseconds. Option D correctly sets a 5-second delay (5000 milliseconds). Option A would wait 50 seconds, option C would wait only 0.5 seconds, and option B references a non-existent setTimer function. To convert seconds to milliseconds, multiply by 1000.

Multiple choice technology programming languages
  1. nocache=true

  2. cache=false

  3. nocachereuired=false

  4. None of the above

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

Setting nocache=true on the Struts controller or action disables browser caching by setting appropriate HTTP headers (Cache-Control, Pragma, Expires) to prevent client-side caching.

Multiple choice technology web technology
  1. (A)World Wide Web Consortium

  2. (B)World Wide Web Company

  3. (C)World Wide Web Center

  4. (D)World Wide Web Command

  5. (E)None of them

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

W3C stands for World Wide Web Consortium, the main international standards organization for the World Wide Web. It was founded by Tim Berners-Lee and develops protocols and guidelines that ensure long-term growth of the Web.

Multiple choice technology web technology
  1. World Wide Web Consortium (W3C)

  2. World Wide Web Consortium (W3C) and Internet Engineering Task Force (IETF)

  3. Internet Engineering Task Force (IETF)

  4. None of these

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

UDDI relies on multiple internet standards. XML provides the data format, HTTP is the transport protocol, and DNS handles domain resolution. These standards come from both W3C (XML, HTTP specifications) and IETF (HTTP, DNS protocols). Therefore, the correct answer includes both organizations.

Multiple choice technology web technology
  1. Really Simple Syndication

  2. Rich Site Summary

  3. Both 1 and 2 are true

  4. None of these

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

RSS has two official full forms that are both correct: 'Really Simple Syndication' (version 0.91, 0.92, 1.0, 2.0) and 'Rich Site Summary' (version 0.9). Both names have been used at different points in RSS's evolution, and both are considered valid. Therefore, option C ('Both 1 and 2 are true') is the correct answer as it acknowledges both naming conventions.

Multiple choice technology web technology
  1. very frequently

  2. never updated

  3. infrequently

  4. None of these

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

RSS is most useful for websites that are updated very frequently, such as news sites, blogs, and content portals. The value proposition of RSS is to notify subscribers immediately when new content is published. For sites that update infrequently or never, RSS provides little benefit since subscribers would rarely receive updates. Frequent updates maximize the utility of automated syndication and notification.