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.

Control statements in Java

Suryateja Pericherla Categories: Core Java Basics. 2 Comments on Control statements in Java

In this article you will learn about the control statements in Java. We will look at what are control statements, types of control statements and some example programs which demonstrate the use of control statements in Java.   What are control statements?   In a Java program, we already know that execution starts at main […]

Read the rest of this entry »

Java type conversion and casting

Suryateja Pericherla Categories: Core Java Basics. 6 Comments on Java type conversion and casting

In this article you will learn about Java type conversion and casting with appropriate examples. Converting a value from one type to another type (data type) is known as type conversion.   Introduction   Type conversion is of two types based on how the conversion is performed: 1) Implicit conversion (also known as automatic conversion […]

Read the rest of this entry »