About Open4Tech Team

This author has not yet filled in any details.
So far Open4Tech Team has created 51 blog entries.

OSI Physical Layer

The physical layer is the lowest level of the OSI model and it is responsible for the actual physical connection between the network devices. It transmits information in the form of bits (0s and 1s). The bits are coded as physical states of the transmission medium. For wired cables, these are electrical signals, for optical

2019-10-06T23:05:29+03:00By |Categories: Explained Simply|0 Comments

OSI Model Overview

The Open Systems Interconnection (OSI) model is a conceptual model created by the International Organization for Standardization. It provides interoperability between different communication systems using standard communication protocols. Or in simpler words, it is a logical model/representation of how the network systems are supposed to send data and communicate with each other. The model splits

2019-12-02T18:18:06+02:00By |Categories: Explained Simply|0 Comments

Storing Data in XML Files Using C#

XML files are a powerful tool to contain any structured data required for a .NET application or ASP .NET website to run. These files are based on the main principles of HTML and when you create an XML file, you should follow these few rules: The XML file must start with a declaration instructing how

2019-10-20T12:14:41+03:00By |Categories: C#|2 Comments

Website Lazy Loading

Lazy loading, the practice of loading resources when needed and not before that, is often implemented on websites as faster loading times can be crucial for user experience or Google's rating systems. Since July 2018 Google has increased the importance of page speed in its website grading systems, so faster loading websites have way better

2019-09-15T22:16:58+03:00By |Categories: How To|1 Comment

SQL DELETE Statement

The SQL DELETE statement is used to delete existing records in a table. DELETE FROM table_name WHERE condition; Parameters: DELETE FROM table_name  - The name of the table where records will be deleted.WHERE condition – Specifies which records should be deleted. If you omit it, all records in the table will be deleted. Example: Consider the Products

2019-09-02T22:41:53+03:00By |Categories: Explained Simply|Tags: |0 Comments

Lazy Loading

Applications often need a large amount of resources in order to run completely and without errors. However, different modules, forms, etc. of an application usually need different sets of resources to be loaded and not all of them. While all resources can be loaded at once, it would sometimes cost a lot of time to

2019-09-08T21:33:33+03:00By |Categories: Explained Simply|0 Comments

SQL WHERE Clause

The SQL WHERE clause is used to filter rows and return only those that meet the specified criteria. It is used in conjunction with the SELECT, UPDATE, DELETE, etc. statements and takes the following general form: SELECT column_name [, column_name ...] FROM table_name WHERE condition; The WHERE clause can be used along with AND, OR,

2019-09-02T22:39:50+03:00By |Categories: Explained Simply|Tags: |0 Comments

SVN – Basic Commands

Subversion, or simply SVN, is an open source file repository manager. Its purpose is to store every version of every file that has been uploaded on the main server. That way developers can track all the changes, revert to older versions of a file, compare edits and deal with mess-ups. Each developer has access to

2019-09-01T07:30:21+03:00By |Categories: Explained Simply|0 Comments

Master Pages in ASP .NET

Well designed websites do not consist of completely independent pages. They give the feeling of a continuously running application. Good design practice is to offer the site visitors similar interface and user experience no matter where they are on the website. The most common shared interface between different pages of the same website is about

2019-08-25T21:21:37+03:00By |Categories: C#|Tags: |0 Comments

Array vs. Linked List vs. Hash Table

Array An array is a linear data structure consisting of a collection of similar data type elements, each identified by at least one index or key. The size of the array must be specified at the time of its declaration. It is fixed and cannot be resized during runtime. In the array, elements are organized

2019-06-10T22:24:21+03:00By |Categories: Explained Simply|Tags: |0 Comments
Go to Top