character – POFTUT

Java Data Types

Java Data Types

Java is a completely object-oriented programming language which provides a lot of different type of features. Primitive data types are some of them. Java provides basic or primitive data types like integer, string, logical true and false, etc. In this tutorial, we will learn the Java Primitive Datatypes. Primitive Data Types Most of the programming … Read more

How To Convert Python String Into List?

Python string is handled as string list while interacting with characters. But one of the most used situation is how can I convert string words into python list? There are different ways to accomplish this. We will look some of them below. String As Character List As we stated previously strings are character list in … 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