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 web technology
  1. Internet

  2. Computer

  3. World Wide Web

  4. Network

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

Websites are physically hosted on computers (web servers). The Internet is the network connecting these computers, but the hosting itself occurs on individual computers. World Wide Web is the system of interconnected documents, not the physical hosting infrastructure, and Network is too general.

Multiple choice technology web technology
  1. World Wide Waste

  2. World Wide Webpages

  3. World Wide Web

  4. World Wide Websites

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

WWW is the universally recognized acronym for World Wide Web, the system of interconnected documents and resources accessed via the Internet. The other options (Waste, Webpages, Websites) are not the standard expansion.

Multiple choice technology web technology
  1. country wide

  2. continent wide

  3. state wide

  4. world wide

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

The World Wide Web is a global system accessible worldwide, spanning countries, continents, and states. It's not limited to any single geographical boundary - hence 'world wide' is the correct descriptor.

Multiple choice technology web technology
  1. FALSE

  2. Not always FALSE

  3. TRUE

  4. Not always TRUE

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

The web's fundamental design allows all connected computers to communicate and transfer data including text and graphics using standardized protocols like HTTP. This universal interoperability is a core feature of the web architecture.

Multiple choice technology web technology
  1. INTERRUPT

  2. REQUEST

  3. RESPONSE

  4. HACKING

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

A web browser initiates communication by sending an HTTP REQUEST to the server. Response is what the server sends back, Interrupt is unrelated to normal web operation, and Hacking is unauthorized access - none of which describe how browsers legitimately access pages.

Multiple choice technology web technology
  1. page address

  2. computer address

  3. domain address

  4. MAC address

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

An HTTP request contains the URL (page address) telling the server which resource to retrieve. Computer address could refer to IP, domain address to domain name, and MAC address is hardware-level - none are the standard terminology for what goes in an HTTP request line.

Multiple choice technology web technology
  1. Intranet State Provider

  2. Internet Service Provider

  3. Intranet Service Provider

  4. Internet State Provider

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

ISP stands for Internet Service Provider - companies that provide Internet access to customers. The 'Intranet' and 'State' variations are incorrect terms, and ISPs provide connectivity (Service), not governance (State).

Multiple choice technology web technology
  1. numeric IP address

  2. numeric network address

  3. numeric MAC address

  4. All of the above

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

Domain names map a human‑readable label to a computer’s numeric IP address on the Internet; they do not represent a generic network address, a hardware MAC address, or any combination of those, so only the IP address option is valid.

Multiple choice technology web technology
  1. case sensitive

  2. not always case sensitive

  3. not always case insensitive

  4. not case sensitive

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

Domain names are case-insensitive per DNS standards - 'Example.com', 'example.com', and 'EXAMPLE.COM' all resolve to the same domain. This design prevents confusion and ensures consistent accessibility regardless of how users type the domain.

Multiple choice technology web technology
  1. colon(:)

  2. slash(/)

  3. dot(.)

  4. All the above

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

To solve this question, the user needs to know what a domain name is and its structure.

A domain name is a unique name that identifies a website. It consists of two or more parts separated by dots. The last part is called the top-level domain (TLD), such as .com, .org, .edu, or .net.

Now, let's go through each option and explain why it is right or wrong:

A. All the above: This option is incorrect because it is not specific. While some domain names may use colons or slashes as separators, the most common and widely recognized separator in a domain name is the dot.

B. colon(:): This option is incorrect because colons are not used as separators in domain names. Colons are commonly used in URLs to separate the protocol (e.g., http, https) from the domain name, but they are not part of the domain name itself.

C. slash(/): This option is incorrect because slashes are not used as separators in domain names. Slashes are commonly used in URLs to separate different parts of the path to a resource on a website.

D. dot(.): This option is correct. Dots are used to separate the different parts of a domain name, such as www.example.com. The dot after "com" separates the top-level domain from the rest of the domain name.

Therefore, the correct answer is:

The Answer is: D

Multiple choice technology programming languages
  1. Type of computer

  2. A Java program that is run through a web browser

  3. An interactive website

  4. A type of fruit

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

An applet is a small Java program designed to run within a web browser as part of an HTML page. Applets were a key feature of Java in the late 1990s for bringing dynamic content to the web before modern JavaScript frameworks. They execute in a sandboxed JVM on the client side.

Multiple choice technology security
  1. Session hijacking

  2. Phishing

  3. Pharming

  4. MAC spoofing

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

Pharming is an attack that redirects users to fake websites by compromising DNS settings or poisoning DNS caches, unlike phishing which requires clicking a link. Option C is correct. Session hijacking (A) steals user sessions, phishing (B) uses deceptive links, and MAC spoofing (D) forges hardware addresses.

Multiple choice technology operating systems
  1. link

  2. lynx

  3. web

  4. emacs

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

Lynx is a classic text-based web browser that runs in terminal environments. It allows users to navigate and read web content without any graphical interface, making it useful for remote systems or accessibility needs. It's been a staple Unix utility since the early days of the web.

Multiple choice technology web technology
  1. browser.name

  2. navigator.appName

  3. client.navName

  4. All the above

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

The navigator object provides browser information via navigator.appName. Option B is correct. Options A and C reference non-existent objects (browser, client), and option D claims all are correct which is false.