Computer Knowledge

Computer Networks

2,095 Questions

Computer networks form the backbone of digital communication, connecting multiple devices to share data and resources. This area covers network architectures, transmission media, modems, and topologies like LAN. These concepts are crucial for computer knowledge sections in banking and government exams.

Network topologiesModulation and demodulationNetwork addressingFiber optic cablesWireless infrastructure

Computer Networks Questions

Multiple choice technology storage
  1. Cisco

  2. Brocade

  3. DLink

  4. QLogic

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

Cisco, Brocade (acquired by Broadcom), and QLogic are major Fibre Channel switch manufacturers. D-Link primarily produces consumer networking equipment and is not a significant player in enterprise Fibre Channel switching.

Multiple choice technology operating systems
  1. ISDN

  2. Modem

  3. DSL

  4. HDSL

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

A modem (modulator-demodulator) converts digital signals from a computer into analog signals for transmission over telephone lines, and converts incoming analog signals back to digital form. ISDN, DSL, and HDSL are digital communication technologies that don't perform this conversion - they transmit digital signals directly. The modem's core function is this digital-analog conversion, which is essential for traditional analog phone line communications.

Multiple choice technology operating systems
  1. A network of computer linked within a building is called a LAN

  2. Databases can be accessed by many users who connected to a LAN.

  3. A network-linking computer over cities countries is called WAN

  4. Applications cannot be shared over a LAN.

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

Statement D is false because applications CAN be shared over a LAN. Local Area Networks are specifically designed to allow resource sharing including applications, files, and printers. Statements A, B, and C are all true statements about networks.

Multiple choice technology
  1. Bandwidth

  2. Desired throughput

  3. Regeneration ability

  4. Attenuation

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

In networking, attenuation (signal weakening over distance) determines the maximum number of nodes per segment because each node adds cable length and signal degradation. Once signal strength drops below threshold, the segment becomes unreliable. Bandwidth and throughput affect data speed, regeneration is the solution (adding repeaters), not the limiting factor.

Multiple choice technology
  1. True

  2. False

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

Circuit-switched networks (like traditional telephone networks) establish a dedicated communication path with reserved resources (bandwidth, buffers) for the entire circuit duration. This guarantees quality but wastes resources when idle. This fundamental characteristic distinguishes circuit switching from packet switching, which shares resources dynamically.

Multiple choice technology
  1. 10Base5

  2. 10BaseT

  3. 10Base10

  4. 10Base2

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

Thicknet refers to the thick coaxial cable standard in Ethernet, officially designated as 10Base5 by IEEE. The '10' means 10 Mbps, 'Base' means baseband transmission, and '5' indicates 500 meter maximum segment length. 10Base2 is Thinnet (thin coaxial), and 10BaseT uses twisted-pair copper.

Multiple choice technology
  1. Router

  2. Hub

  3. Switch

  4. Modem

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

A router acts as a 'traffic cop' by directing data packets between different networks based on IP addresses and routing tables. It makes intelligent decisions about the best path for packets, unlike a hub (which broadcasts to all ports) or a switch (which forwards based on MAC addresses within a network).

Multiple choice technology platforms and products
  1. True

  2. False

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

Android networking is NOT principally handled by ConnectivityManager for actual network operations. ConnectivityManager monitors network connectivity state and availability, but actual network requests use HttpURLConnection, OkHttp, or other HTTP libraries. The statement confuses connectivity monitoring with network communication.

Multiple choice technology platforms and products
  1. getNetworkInfo()

  2. getNetworkStatus()

  3. getActiveNetworkInfo()

  4. Both, a & b above

  5. Both a & c above

  6. All of above

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

getNetworkInfo() and getActiveNetworkInfo() are both valid ConnectivityManager methods for retrieving network details. getNetworkStatus() is not a standard Android API method. Both getNetworkInfo() (deprecated) and getActiveNetworkInfo() provide information about network state and connectivity.

Multiple choice technology
  1. True

  2. False

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

In messaging systems, ST (possibly referring to Secure Transport or similar technologies) can communicate externally through a Gateway component. Gateways typically serve as intermediaries that enable secure external communication for internal systems.

Multiple choice technology programming languages
  1. Association

  2. Aggregation

  3. Link

  4. None of these options

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

Peer-to-peer relationship in UML is a type of association where two classes interact as equals, neither containing the other. Unlike aggregation (whole-part) or composition (strong ownership), peer-to-peer represents a collaborative relationship where both classes have comparable status.