Articles on Trending Technologies

Technical articles with clear explanations and examples

Beginning C# programming with Hello World

karthikeya Boyini
karthikeya Boyini
Updated on 17-Mar-2026 801 Views

The following is a simple "Hello World" program in C# programming. This is typically the first program you write when learning a new language, and it demonstrates the basic structure of a C# application. Syntax Following is the basic structure of a C# program − using System; namespace NamespaceName { class ClassName { static void Main(string[] args) { // Your code here } } } Hello ...

Read More

Abstract Classes in C#

karthikeya Boyini
karthikeya Boyini
Updated on 16-Mar-2026 3K+ Views

An abstract class in C# includes both abstract and non-abstract methods. A class is declared abstract using the abstract keyword. You cannot instantiate an abstract class directly — it must be inherited by a derived class that provides implementations for all abstract methods. Syntax Following is the syntax for declaring an abstract class and an abstract method − public abstract class ClassName { // Abstract method — no body, must be overridden public abstract void MethodName(); // Non-abstract method — has a body, can be inherited ...

Read More

'this' keyword in C#

karthikeya Boyini
karthikeya Boyini
Updated on 16-Mar-2026 9K+ Views

The this keyword in C# is used to refer to the current instance of the class. It is also used to differentiate between method parameters and class fields when they have the same name. Another usage of the this keyword is to call another constructor from a constructor in the same class, known as constructor chaining. Syntax Following is the syntax for using this to refer to instance members − this.fieldName = value; Following is the syntax for constructor chaining using this − public ClassName(int a) : this(a, 0) { ...

Read More

Coaxial Cable

Samual Sam
Samual Sam
Updated on 16-Mar-2026 7K+ Views

Coaxial cables, commonly called coax, are copper cables with metal shielding designed to provide immunity against noise and greater bandwidth. Coax can transmit signals over larger distances at a higher speed as compared to twisted pair cables. Structure of Coaxial Cables Coax has a central core of stiff copper conductor for transmitting signals. This is covered by an insulating material. The insulator is encased by a closely woven braided metal outer conductor that acts as a shield against noise. The outer conductor is again enclosed by a plastic insulating cover. Coaxial Cable Structure ...

Read More

Who's Who in the Internet Standards World

Arjun Thakur
Arjun Thakur
Updated on 16-Mar-2026 4K+ Views

Internet Standards refer to all the documented requirements both in technology as well as methodology pertaining to the Internet. The standardization process has maturity levels that ensure protocols are thoroughly tested before widespread adoption. Internet Standards Maturity Levels Proposed Standard − Standards that are ready for implementation but can be revised according to deployment circumstances. Internet Standard − Technically matured standards that define protocols and message formats. These include fundamental standards that form the Internet Protocol (IP). Internet Standards Organizations IETF Standards ...

Read More

Who's Who in the Telecommunications World

George John
George John
Updated on 16-Mar-2026 654 Views

The service domains, legal status, and scopes of telecommunication companies worldwide are varied. To provide compatibility among different agencies, the International Telecommunication Union (ITU) was formed. ITU is a specialized agency of the United Nations that standardizes information and communication technologies worldwide. ITU serves as the central coordinating body for global telecommunications, bringing together governments and private sector companies to ensure seamless international communication. Its membership represents the who's who of the telecommunications world. ITU: Global Telecommunications Coordination ITU-T Standards ...

Read More

Architecture of the Internet

Rishi Raj
Rishi Raj
Updated on 16-Mar-2026 39K+ Views

The architecture of the Internet is a dynamic, multi-layered structure that continuously evolves with advancing technologies and changing service demands. Due to its heterogeneous nature and vast scale, the Internet's architecture can be best understood through a hierarchical model. Three-Level Internet Architecture The Internet's overall architecture consists of three distinct levels: Tier-1 ISPs (Backbone Internet Service Providers) Tier-2 ISPs (Regional Internet Service Providers) Tier-3 ISPs and End Users (Local ISPs and Clients) Internet Architecture Hierarchy Tier-1 ISPs (Backbone Networks) ...

Read More

World Wide Web Consortium (W3C)

Satish Kumar
Satish Kumar
Updated on 16-Mar-2026 4K+ Views

The World Wide Web Consortium (W3C) is an international organization that develops standards for the World Wide Web. It was founded in 1994 by Tim Berners-Lee, the inventor of the Web, with the goal of ensuring that the Web remains a free and open platform for communication and innovation. The W3C works to develop and promote standards that ensure the long-term growth of the Web. It is made up of member organizations, including governments, companies, and research institutions, that contribute their expertise and resources to the development of Web standards. W3C Standards Development Process ...

Read More

Spanning Tree Protocol

Moumita
Moumita
Updated on 16-Mar-2026 7K+ Views

Spanning Tree Protocol (STP) is a communication protocol operating at the data link layer of the OSI model to prevent bridge loops and the resulting broadcast storms. It creates a loop-free topology for Ethernet networks. Working Principle A bridge loop is created when there are more than one paths between two nodes in a given network. When a message is sent, particularly when a broadcast is done, the bridges repeatedly rebroadcast the same message flooding the network. Since a data link layer frame does not have a time-to-live field in the header, the broadcast frame may loop forever, ...

Read More

The IEEE 802.1Q Standard

Moumita
Moumita
Updated on 16-Mar-2026 4K+ Views

The IEEE 802.1Q networking standard defines the specifications for VLANs (Virtual Local Area Networks) on IEEE 802.3 Ethernet networks. Commonly referred to as Dot1Q, this standard enables network segmentation by creating logical groups of computers that appear to be on the same LAN, regardless of their physical network location. VLANs allow network administrators to partition networks based on functional requirements, where each VLAN comprises a subset of ports on single or multiple switches. This enables devices within a VLAN to communicate as if they were on a separate physical LAN, providing improved security, performance, and network management. Key ...

Read More
Showing 11461–11470 of 61,303 articles
Advertisements