Core java tutorial for beginners
A tutorial blog which explains different core concepts related to Java along with programming examples
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.

Java Virtual Machine

Suryateja Pericherla Categories: Core Java Basics. 1 Comment on Java Virtual Machine

In this article we will look at Java Virtual Machine (JVM) which provides the run-time engine for bytecode generated by the Java compiler. We will look at JVM architecture and more.   Introduction   Before learning about JVM it is important to know about JDK (Java Development Kit) and JRE (Java Runtime Environment). Below figure […]

Read the rest of this entry »

Strings in Java Overview

Suryateja Pericherla Categories: Core Java Basics. No Comments on Strings in Java Overview

In this article we will learn how to declare and use strings in our Java programs with appropriate sample code examples.   Like in any programming language, a string is a collection of characters. Instead of maintaining strings as character arrays (for example in C language), Java provides in-built support for working with strings through three […]

Read the rest of this entry »