Author: FC Team

loops in java 0

Loops in Java with Syntax and Examples

In Java, to get certain specific kinds of results or to find something in a huge collection of data, we use loops. They help you to perform a certain set of statements repetitively and...

array vs arrayList in java 0

ArrayList in Java

Many people wrongly assume that array and ArrayList have no significant differences and both mean the same. This article will let you identify and draw a fine line between both of these concepts. Before...

ways to read input from console in java 0

Ways to read input from Console in Java

Java provides many flexibilities to the programmers to make them provide input in various means. To read input from console, there are four different methods available in java. This article will introduce you to...

java stringBuffer class and sringtokenizer class 0

StringBuffer and StringTokenizer in Java

The string concept has various topics to dig deep into. A couple of such main topics are the StringBuffer and StringTokenizer classes in java. This article will make you understand the significance of these...

string vs stringbuilder vs stringBuffer vs stringJoiner 0

String vs StringBuilder vs StringBuffer in Java

Strings are one of the inevitable topics in Java. The terms like StringBuilder, StringBuffer, and StringJoiner also have their own characteristics. This article will make you notice the fine line that differentiates all these...

why is java not purely object oriented language 0

Why Java is not a purely Object-Oriented Language?

We are clear that Java is an Object-oriented Programming language. But there is a slight difference for a language to be Object-oriented and purely object-oriented. Java falls in the first category. In other words,...

java books 0

Java Books for Beginnners to Learn Java

“We lose ourselves in books, We find ourselves in them as well”. Books are a vital installment to learning. Even in this era of technological advancements, books are still, a fundamental part of our...

java data types 0

Data Types in Java

As an important step in your journey to be an expert of Java, in this blog, we will learn about data types which are there in java. This is a complete guide which will...

variables in java 0

Variables in Java – Types and Examples

As we all know, Java processes information or data in the form of tokens. These tokens are the fundamental unit of a Java program and hence, we can consider them as one of the...