Samual Sam has Published 2310 Articles

What is the difference between novalidate and formnovalidate attributes?

Samual Sam

Samual Sam

Updated on 20-Nov-2023 11:34:03

2K+ Views

The novalidate and formnovalidateattributes are used to bypass validation. The novalidate attribute is applied to a form and prevents it from validation. The formnovalidate is applied to input type submit button, which overrides the novalidate. It submits the form without validating. The novalidate attribute is also a Boolean attribute, but using ... Read More

A Protocol Using Go-Back-N

Samual Sam

Samual Sam

Updated on 03-Nov-2023 03:15:35

37K+ Views

Go-Back-N protocol, also called Go-Back-N Automatic Repeat reQuest, is a data link layer protocol that uses a sliding window method for reliable and sequential delivery of data frames. It is a case of sliding window protocol having to send window size of N and receiving window size of 1.Working PrincipleGo ... Read More

How to mount usb drive in a linux system

Samual Sam

Samual Sam

Updated on 01-Nov-2023 01:42:40

76K+ Views

Do you know “how to use USB memory sticks with Linux”, If you are not sure then this article describes “how to mount USB drive on a Linux system with command line interface”Universal serial bus, or USB (also known as Flash drive), is an electronic communications protocol that is commonly ... Read More

Sliding Window Protocol

Samual Sam

Samual Sam

Updated on 31-Oct-2023 14:40:16

111K+ Views

Sliding window protocols are data link layer protocols for reliable and sequential delivery of data frames. The sliding window is also used in Transmission Control Protocol.In this protocol, multiple frames can be sent by a sender at a time before receiving an acknowledgment from the receiver. The term sliding window ... Read More

Medium Access Control Sublayer (MAC sublayer)

Samual Sam

Samual Sam

Updated on 31-Oct-2023 13:25:34

99K+ Views

The medium access control (MAC) is a sublayer of the data link layer of the open system interconnections (OSI) reference model for data transmission. It is responsible for flow control and multiplexing for transmission medium. It controls the transmission of data packets via remotely shared channels. It sends data over ... Read More

How to pop the first element from a C# List?

Samual Sam

Samual Sam

Updated on 31-Oct-2023 04:01:30

33K+ Views

To pop the first element in the list, use the RemoveAt() method. It eliminates the element from the position you want to remove the element.Set the listList myList = new List() {    "Operating System",    "Computer Networks",    "Compiler Design" };Now pop the first element using RemoveAt(0)myList.RemoveAt(0);Let us see ... Read More

Add packages to Anaconda environment in Python

Samual Sam

Samual Sam

Updated on 31-Oct-2023 03:51:13

22K+ Views

There are multiple ways by which we can add packages to our existing anaconda environment.Method 1 − One common approach is to use the “Anaconda Navigator” to add packages to our anaconda environment. Once “Ananconda Navigator” is opened, home page will look something like −Go to Environments tab just below ... Read More

How to set text font family in HTML?

Samual Sam

Samual Sam

Updated on 31-Oct-2023 03:43:24

28K+ Views

To change the text font family in HTML, use the style attribute. The style attribute specifies an inline style for an element. The attribute is used with the HTML tag, with the CSS property font-family. HTML5 do not support the tag, so the CSS style is used to ... Read More

Concatenate string to an int value in Java

Samual Sam

Samual Sam

Updated on 22-Oct-2023 03:25:06

30K+ Views

To concatenate a string to an int value, use the concatenation operator.Here is our int.int val = 3;Now, to concatenate a string, you need to declare a string and use the + operator.String str = "Demo" + val;Let us now see another example.Example Live Demoimport java.util.Random; public class Demo {   ... Read More

Asymptotic Notations

Samual Sam

Samual Sam

Updated on 21-Oct-2023 13:35:37

33K+ Views

Asymptotic NotationsAsymptotic notations are used to represent the complexities of algorithms for asymptotic analysis. These notations are mathematical tools to represent the complexities. There are three notations that are commonly used.Big Oh NotationBig-Oh (O) notation gives an upper bound for a function f(n) to within a constant factor.We write f(n) ... Read More

Advertisements