Fendadis John

Fendadis John

40 Articles Published

Articles by Fendadis John

40 articles

Advantages and Disadvantages of the TCP/IP Model

Fendadis John
Fendadis John
Updated on 16-Mar-2026 31K+ Views

The TCP/IP model is a fundamental networking framework that defines how data is transmitted across networks. While it has become the backbone of modern internet communication, understanding both its strengths and limitations is crucial for network professionals. TCP/IP Model Layers Application Layer Transport Layer (TCP/UDP) Internet Layer (IP) Network Access Layer Advantages of TCP/IP Protocol Suite Industry-standard model − It is an industry-standard model that can be effectively deployed ...

Read More

Non-persistent CSMA protocol

Fendadis John
Fendadis John
Updated on 16-Mar-2026 3K+ Views

Non-persistent CSMA is a non-aggressive version of Carrier Sense Multiple Access (CSMA) protocol that operates in the Medium Access Control (MAC) layer. Using CSMA protocols, multiple users or nodes send and receive data through a shared medium that may be a single cable or optical fiber connecting multiple nodes, or a portion of the wireless spectrum. In non-persistent CSMA, when a transmitting station has a frame to send and it senses a busy channel, it waits for a random period of time without sensing the channel in the interim, and repeats the algorithm again. ...

Read More

How to create a website without using HTML?

Fendadis John
Fendadis John
Updated on 16-Mar-2026 3K+ Views

If you have no knowledge of HTML or CSS and want to create a website, do not worry. You can easily create a professional-looking website without writing even a single line of HTML code using modern website building tools. Here are the most effective ways to build a website without writing any HTML or code − Website Builders Website builders are drag-and-drop platforms that allow you to create websites using visual interfaces. Most web hosting companies provide free website builder tools when you purchase a hosting plan. Popular Website Builders Wix − Offers hundreds ...

Read More

How to add a YouTube Video to your Website?

Fendadis John
Fendadis John
Updated on 16-Mar-2026 930 Views

To add a YouTube video to your website, you need to embed it using the element. The src attribute contains the video URL, while the width and height attributes control the video player dimensions. YouTube provides an embed URL that differs from the regular viewing URL. Instead of using the standard watch URL, you must use YouTube's embed URL format for proper integration into your webpage. Syntax Following is the basic syntax for embedding a YouTube video − Replace VIDEO_ID with the actual YouTube video ID found in the video URL. ...

Read More

How to set the style of the rule between columns with JavaScript?

Fendadis John
Fendadis John
Updated on 15-Mar-2026 166 Views

Use the columnRuleStyle property to set the style of the rule between columns in JavaScript. This property controls the visual appearance of the line that separates columns in multi-column layouts. Syntax element.style.columnRuleStyle = "value"; Available Values The columnRuleStyle property accepts the following values: none - No rule (default) solid - A single solid line dotted - A series of dots dashed - A series of dashes double - Two solid lines ...

Read More

How to set the list-item marker type with JavaScript?

Fendadis John
Fendadis John
Updated on 15-Mar-2026 530 Views

To set the type of the list-item marker, use the listStyleType property in JavaScript. This property allows you to change bullet styles for unordered lists and numbering styles for ordered lists. Syntax element.style.listStyleType = "value"; Common List Style Types Here are the most commonly used marker types: Value Description Best for disc Filled circle (default) Unordered lists circle Empty circle Unordered lists square Filled square Unordered lists decimal Numbers (1, 2, 3...) Ordered lists upper-roman Uppercase Roman (I, II, III...) Ordered ...

Read More

What should be done with the left/ right edges of the content on overflow with JavaScript?

Fendadis John
Fendadis John
Updated on 15-Mar-2026 149 Views

When content overflows horizontally in a container, the overflowX property controls how the left and right edges are handled. This property allows you to add horizontal scrolling, hide overflow, or make it visible. Syntax element.style.overflowX = "value"; Common overflowX Values Value Description Use Case scroll Always shows horizontal scrollbar ...

Read More

How to set the shape of the border of the top-right corner with JavaScript?

Fendadis John
Fendadis John
Updated on 15-Mar-2026 267 Views

To set the shape of the border of the top-right corner in JavaScript, use the borderTopRightRadius property. This property allows you to create rounded corners by specifying the radius value. Syntax element.style.borderTopRightRadius = "value"; The value can be specified in pixels (px), percentages (%), or other CSS units like em or rem. Example Here's how to dynamically change the top-right border radius using JavaScript: #box { ...

Read More

How to get the difference between two arrays in JavaScript?

Fendadis John
Fendadis John
Updated on 15-Mar-2026 334 Views

To get the difference between two arrays in JavaScript, you can find elements that exist in one array but not in both. This is commonly called the symmetric difference. There are several approaches to achieve this. Using filter() and includes() (Recommended) Array Difference function arrayDifference(arr1, arr2) { // Elements in ...

Read More

How do I view events fired on an element in Chrome?

Fendadis John
Fendadis John
Updated on 15-Mar-2026 16K+ Views

To view events fired on an element in Google Chrome, you can use the Developer Tools to monitor and debug event listeners. This is essential for understanding how user interactions trigger JavaScript functions on your webpage. Method 1: Using Event Listener Breakpoints Open Google Chrome and press F12 to open Developer Tools. Navigate to the Sources tab in the Developer Tools panel. Chrome Developer Tools - Sources Tab Sources Elements Console ...

Read More
Showing 1–10 of 40 articles
« Prev 1 2 3 4 Next »
Advertisements