java

StringBuffer in Java

StringBuffer in Java is the pre class of string class. StringBuffer also allows us to handle String message but in mutable behavior. It means once we assign a string value using StringBuffer then after we can grow or shrink the length of the message by adding or removing something.

java

String Method In Java

String is the class (pre-defined) provide by java for storing the string value. It means when we create an object of string class then we can store a string value as. It is immutable. String is a Group of characters is called string. If we store a string value using string class then the length of the string will be fix means no further amendment will happen in that string.

java

Decision Making in Java

Decision making in Java structures have one or more conditions to be evaluate or test by the program, along with a statement or statements that are to be execute if the condition is determine to be true, and optionally, other statements to be execute if the condition is determine to be false.

java

JVM (Java Virtual Machine)

JVM is a java virtual machine that enables our system to run the java program(.class). In other words, we can say JVM follows the bytecodes and convert it according to the existing OS, no matter which OS is running in the system. JVM is an abstract machine. There are available for many hardware and software platforms.