karthikeya Boyini

karthikeya Boyini

1,421 Articles Published

Articles by karthikeya Boyini

Page 27 of 143

Access Modifiers in C#

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

Access modifiers in C# control the visibility and accessibility of classes, methods, properties, and other members. They define which parts of your code can access specific members, providing encapsulation and security to your applications. Access Modifiers Overview C# provides five access modifiers that determine the scope and accessibility of class members − C# Access Modifiers Hierarchy public Most accessible protected internal internal protected private ...

Read More

Beginning C# programming with Hello World

karthikeya Boyini
karthikeya Boyini
Updated on 17-Mar-2026 783 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 2K+ 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

Transmission of Light Through Fiber

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

In fiber optic communication, signals are transmitted through an optical fiber using the fundamental properties of light, specifically refraction and total internal reflection. Understanding these optical principles is essential for grasping how data travels through fiber optic cables over long distances with minimal loss. Refraction When a light ray travels from one transmission medium to another with different optical density, its direction changes at the interface between the two media. This phenomenon is called refraction of light. The optical density of a medium is measured by its refractive index. A higher refractive index indicates a denser medium. ...

Read More

Comparison of Fiber Optics and Copper Wire

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

Fiber optic cables are finding increasing usage due to a number of advantages over the traditional copper wires. However, there are a few drawbacks in their usage too that need to be considered when choosing the appropriate transmission medium. Fiber Optic vs Copper Wire Transmission Fiber Optic Cable Light signals Glass core High speed Copper Wire ...

Read More

Link Control Protocol (LCP)

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

Link Control Protocol (LCP) is a crucial component of the Point-to-Point Protocol (PPP) that operates at the data link layer. It is responsible for establishing, configuring, testing, maintaining, and terminating point-to-point links for data transmission. LCP also handles negotiation of setup options and features between the two endpoints of a communication link. How It Works When PPP initiates communication, it sends LCP packets before establishing connections over the point-to-point link. These LCP packets test the communication line to determine if it can handle the required data volume at the specified speed. Based on this assessment, LCP negotiates the ...

Read More

10 Netstat Command Examples on Linux

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

The netstat command is a powerful network utility that displays network connections, routing tables, interface statistics, masquerade connections, and multicast memberships on Linux systems. This command is essential for network troubleshooting and monitoring active connections on your system. Display All Connections To show all listening and non-listening sockets, use the -a option: netstat -a This displays both active connections and listening ports: Active Internet connections (servers and established) Proto Recv-Q Send-Q Local Address Foreign Address ...

Read More

The Local Loop

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

In a telephone system, the local loop is a two-wire connection between the subscriber's house and the end office of the telephone company. It is commonly referred to as the "last mile" of the telephone network, representing the final physical connection that delivers telecommunication services to end users. The loop may run from 1 km to as far as 10 km depending on the geographic location and infrastructure. Local Loop in Telephone Network Subscriber Home/Office Central ...

Read More

The Mobile Telephone System

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

Mobile telephone service (MTS) connects mobile radio telephones with other networks like public switched telephone networks (PSTN), other mobile telephones and communication systems like Internet. This system enables seamless communication between mobile devices and fixed networks worldwide. Basic Mobile Communications System Mobile phones and other mobile devices, called mobile stations, are connected to base stations. Communication between the mobile stations and the base stations are done by wireless radio signals, which may be both data signals and voice signals. Each base station has a coverage area around it, such that mobile stations within this area can connect ...

Read More
Showing 261–270 of 1,421 articles
« Prev 1 25 26 27 28 29 143 Next »
Advertisements