decimal – POFTUT

What Is Binary Code?

What Is Binary Code?

Binary Code is a representation format for the different types of data like Text, Image, Video, etc. Binary code is expressed two basic symbols or numbers 1 and 0. Binary code is related to the binary number system those are 1 and 0. Binary is very related to the computers where the CPU works with … Read more

What Is Binary (Definition)?

What Is Binary (Definition)?

Binary is a numbering system used to express numbers in 2 states. These two states are 0 and 1. The binary numbering system is very important for computer and IT systems because of the different types of hardware using a binary system like CPU, RAM, GPU, HDD, NIC, etc. Binary Values Binary numbering system provides … Read more

Linux Bash Shell Printf Command Examples

Linux provides different commands to print given string or data into the terminla or specified place. printf is one of them which is similar to the C programming language printf()  function. Actually it is cloned from C printf function which provides similar features to write given string to the terminal in a structured manner. Help We will … Read more

Python Floating Numbers Tutorial with Examples

Numbers are important part of the applications development. We use different type of numbers in different situations. We use int for integers where there is no floating point. We can use floating point type for floating point numbers. In this tutorial we will learn floating numbers. Define Floating Point Number We can define floating point number … Read more

Linux od Command Tutorial With Examples To Dump Files Octal Number Format

od is a tool used to  dump files or input in different presentation formtas like octal, decimal, hexadecimal etc. od command especially useful for binary analysis also can be used to debug Linux scripts for unwanted characters. Help $ od –help Syntax od [OPTION]… [FILE]… Display File Octal Mode Octal mode is calculated with base … Read more