Karthikeya Boyini has Published 2383 Articles

Hexadecimal literal of type long in Java

karthikeya Boyini

karthikeya Boyini

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

880 Views

Hexadecimal literal of type long is represented as − long hexLong = 0XABL; For Hexadecimal, the 0x or 0X is to be placed in the beginning of a number. Note − Digits 10 to 15 are represented by a to f (A to F) in Hexadecimal Example ... Read More

Formatted text in Linux Terminal using Python

karthikeya Boyini

karthikeya Boyini

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

223 Views

In this section, we will see how to print formatted texts in Linux terminal. By formatting, we can change the text color, style, and some special features. Linux terminal supports some ANSI escape sequences to control the formatting, color and other features. So we have to embed some bytes ... Read More

How to use XmlSerializer in C#?

karthikeya Boyini

karthikeya Boyini

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

461 Views

Serialization/ De-serialization allow communication with another application by sending and receiving data. With XmlSerializer, you can control how objects are encoded into XML. To perform XML Serialization, you need the following two classes − StreamWriter class XmlSerializer class Call the Serialize method with the parameters of the StreamWriter ... Read More

Keywords in Python

karthikeya Boyini

karthikeya Boyini

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

3K+ Views

Like other languages, Python also has some reserved words. These words hold some special meaning. Sometimes it may be a command, or a parameter etc. We cannot use keywords as variable names. The Python Keywords are True False class def return if elif else try ... Read More

Network Switching

karthikeya Boyini

karthikeya Boyini

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

1K+ Views

Definition Network switching is the process of transmitting data packets from the source to the destination through a number of intermediate network nodes. Here, each node controls or switches data packets to the next node towards the destination. When data comes on a node it is called ingress, and when ... Read More

Public Switched Telephone Network

karthikeya Boyini

karthikeya Boyini

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

12K+ Views

Public Switched Telephone Network (PSTN) is an agglomeration of an interconnected network of telephone lines owned by both governments as well as commercial organizations. Properties of PSTN It is also known as Plain Old Telephone Service (POTS) It has evolved from the invention of telephone by Alexander ... Read More

Packet Switching

karthikeya Boyini

karthikeya Boyini

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

22K+ Views

Packet switching is a connectionless network switching technique. Here, the message is divided and grouped into a number of units called packets that are individually routed from the source to the destination. There is no need to establish a dedicated circuit for communication. Process Each packet in a packet switching ... Read More

Java program to count total bits in a number

karthikeya Boyini

karthikeya Boyini

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

670 Views

The total bits in a number can be counted by using its binary representation. An example of this is given as follows − Number = 9 Binary representation = 1001 Total bits = 4 A program that demonstrates this is given as follows. Example Live Demo ... Read More

Improved Mobile Telephone System

karthikeya Boyini

karthikeya Boyini

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

509 Views

Improved Mobile Telephone System (IMTS) was a radio system that linked to public switched telephone networks (PSTN) before the era of cellular mobiles. It was introduced in 1964 and was the wireless equivalent of landline dial up telephones. Features IMTS was a radio system for mobile telephones that was ... Read More

Network Interface Device

karthikeya Boyini

karthikeya Boyini

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

2K+ Views

A network interface device (NID), also called network interface unit (NIU), is an interface between the network provider's local loop and the customer. These are present as grey boxes outside customer's premises, where the data wires of the phone company or the network provider ends and the customer's wiring begins. ... Read More

Advertisements