Category Java

Scientech Easy welcomes you in the Java tutorial category. We have designed this tutorial series for beginners, students, and professional developers who want to learn Java programming from basic to advanced levels. Here, you will find easy-to-understand Java tutorials, practical example programs, interview questions, and quizzes.

So, let’s start to understand Java concepts one by one with these tutorials.

Math Class in Java (with Examples)

Java programming supports the basic mathematical computation through the class Math defined in java.lang package. The java.lang.Math class contains two constants and a collection of methods that we can use to perform basic mathematical operations. The common mathematical operations may…

Boolean Class in Java

Boolean class in Java is a wrapper class that wraps (converts) a primitive “boolean” data type value in an object. An object of Boolean class contains a single boolean type field where we can store a primitive boolean value. Boolean…

Java Float Class

Float class in Java is a wrapper class that wraps (converts) a value of primitive data type “float” in an object. An object of Float class contains a single float type field that store a primitive float number. Float class…

Java Double Class

Double class in Java is a wrapper class that wraps (converts) a value of primitive data type “double” in an object. An object of Double class contains a single field of type double. In this field, we can store a…

Output Formatting in Java using printf()

In this tutorial, we will learn how to formatting and displaying output in Java using printf() and format() methods. Java PrintStream class provides a method named printf() that works similar to printf() function in C. The printf() method is a…