George John has Published 1167 Articles

Baseband Transmission

George John

George John

Updated on 03-Aug-2019 19:40:08

4K+ Views

In baseband transmission, the data bits are directly converted into signals. Generally a higher voltage level represents the bit 1, while a lower voltage level represents bit 0.The different encoding schemes are shown in the diagram. Among these, the first three are come in the category of polar encoding. In ... Read More

HTML canvas strokeStyle Property

George John

George John

Updated on 30-Jul-2019 22:30:26

312 Views

The strokeStyle property in HTML canvas is used to set the color, gradient or pattern for the stroke. The element allows you to draw graphics on a web page using JavaScript. Every canvas has two elements that describes the height and width of the canvas i.e. height and width ... Read More

Request To Send (RTS)

George John

George John

Updated on 30-Jul-2019 22:30:26

3K+ Views

Request to Send (RTS) is a control frame employed in the medium access control (MAC) layer protocol IEEE 802.11 RTS/CTS. The protocol uses the concept of Multiple Access with Collision Avoidance (MACA) in wireless networks. The RTS/CTS (Request to Send / Clear to Send) mechanism aims to reduce frame collisions ... Read More

Classic Ethernet

George John

George John

Updated on 30-Jul-2019 22:30:26

3K+ Views

Ethernet is a set of technologies and protocols that are used primarily in LANs. It was first standardized in 1980s as IEEE 802.3 standard. Ethernet is classified into two categories: classic Ethernet and switched Ethernet.Classic Ethernet is the original form of Ethernet that provides data rates between 3 to 10 ... Read More

HTML cite Attribute

George John

George John

Updated on 30-Jul-2019 22:30:26

131 Views

The cite attribute of the element sets a URL to the HTML document and states why a specific text was deleted. Following is the syntax −Here, url is the link that displays the address of the document wherein it is specified why the text was deleted. Let us now see an ... Read More

C++ Program to Check Whether an Undirected Graph Contains a Eulerian Cycle

George John

George John

Updated on 30-Jul-2019 22:30:26

335 Views

To know about Euler Circuit, we have the idea about Euler Path. The Euler path is a path; by which we can visit every node exactly once. We can use the same edges for multiple times. The Euler Circuit is a special type of Euler path. When the starting vertex ... Read More

Listing modified, old and newly created files on Linux using C++

George John

George John

Updated on 30-Jul-2019 22:30:26

205 Views

Here we will see how to list the modified files and old and newly created files on Linux platform using C++ program.The task is very simple. We can use the Linux shell command to get the files in desired order. The ls –l command is used to get all of ... Read More

How to perform SELECT using COUNT in MySQL?

George John

George John

Updated on 30-Jul-2019 22:30:26

109 Views

To perform SELECT with COUNT, use aggregate function COUNT(). Let us first create a table −mysql> create table DemoTable    (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    Name varchar(100),    Subject varchar(100)    ); Query OK, 0 rows affected (0.54 sec)Insert some records in the table using ... Read More

What are all the common undefined behaviours that a C++ programmer should know about?

George John

George John

Updated on 30-Jul-2019 22:30:26

91 Views

In C++, there are some undefined behaviors. These are identified by doing some tasks in C++. There are no such direct definitions. These few things should be known to all of the programmers, who want to use C++ for different purposes.Here we will see some C++ Codes. and try to ... Read More

HTML Charset

George John

George John

Updated on 30-Jul-2019 22:30:26

208 Views

Different charsets include ASCII, ANSI, ISO-8859-1, UTF-8, etc. ISO-8859-1 supports 256 different character codes. ASCII defined 128 different alphanumeric characters. The charset attribute in HTML is used with the to specify the character encoding.Following is the syntax −Above, char_set is the character set to specify the character encoding of ... Read More

Advertisements