Samual Sam has Published 2310 Articles

ArrayList in C#

Samual Sam

Samual Sam

Updated on 19-Jun-2020 07:49:26

648 Views

A resizable implementation of the List interface is called ArrayList. It is a non-generic type of collection in C# that dynamically resizes.Let us see how to initialize ArrayList in C# −ArrayList arr= new ArrayList();Add an element like the below-given code snippet −ArrayList arr1 = new ArrayList(); arr1.Add(120); arr1.Add(160);Let us see ... Read More

Removable Media in Computer Network

Samual Sam

Samual Sam

Updated on 19-Jun-2020 07:45:06

393 Views

The primary purpose of computer networks is to transfer data from a source machine to a destination machine. One of the elementary ways to transfer data between machines is to use removable storage media. The steps for the transfer are −Copy data from the source computer to the removable storage ... Read More

Coaxial Cable

Samual Sam

Samual Sam

Updated on 19-Jun-2020 07:40:40

6K+ 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 CablesCoax has a central core of stiff copper conductor for transmitting ... Read More

A Deque Class in C#

Samual Sam

Samual Sam

Updated on 19-Jun-2020 07:35:29

1K+ Views

The Deque class uses a doubly-linked list to implement its collection of elements.  The doubly-linked lists should have two nodes i.e. front and back nodes. This helps in adding elements on the front and back of the Deque.With the Deque class, you have the ability to add and remove elements ... Read More

Asynchronous programming in C# using Async and Await keyword

Samual Sam

Samual Sam

Updated on 19-Jun-2020 07:33:17

2K+ Views

Asynchronous programming in C# is an efficient approach towards activities blocked or access is delayed. If an activity is blocked like this in a synchronous process, then the complete application waits and it takes more time. The application stops responding. Using the asynchronous approach, the applications continue with other tasks ... Read More

array-of- arrays double [][] in C#?

Samual Sam

Samual Sam

Updated on 19-Jun-2020 07:31:53

1K+ Views

Arrays of arrays in C# are known as Jagged Arrays. To declare jagged arrays, use the double [ ][ ].Let us now declare them −int [][] marks;Now, let us initialize it, wherein marks are arrays of 5 integers −int[][] marks = new int[][]{new int[]{ 90, 95 }, new int[]{ 89, ... Read More

Hierarchical Database Model

Samual Sam

Samual Sam

Updated on 19-Jun-2020 07:27:24

17K+ Views

A hierarchical model represents the data in a tree-like structure in which there is a single parent for each record. To maintain order there is a sort field which keeps sibling nodes into a recorded manner. These types of models are designed basically for the early mainframe database management systems, ... Read More

Bandwidth-Limited Signals

Samual Sam

Samual Sam

Updated on 19-Jun-2020 07:22:14

4K+ Views

Bandwidth The range of frequencies that are used for transmitting a signal without being substantially attenuated is called the bandwidth. It is calculated as the difference between the highest and the lowest frequencies. It is expressed in Hertz (Hz).For example, if the minimum frequency is 100 Hz and the maximum frequency ... Read More

NoSQL Databases

Samual Sam

Samual Sam

Updated on 18-Jun-2020 15:53:34

6K+ Views

These are used for large sets of distributed data. There are some big data performance issues which are effectively handled by relational databases, such kind of issues are easily managed by NoSQL databases. There are very efficient in analyzing large size unstructured data that may be stored at multiple virtual ... Read More

Early Database Models

Samual Sam

Samual Sam

Updated on 18-Jun-2020 15:51:13

310 Views

A database model determines the logical structure of a database and determines in which manner data can be stored, organized and manipulated on a fundamental basis. before the databases are designed, the only way to store data was are in file storage, which increases the complexity as programmers had to ... Read More

Advertisements