Select Page

Blog

YouTube Video Tutorials on villagecoder.com
int data type in Java

int data type in Java

The int data type is an integer. int is short for Integer. int holds non-fractional or non-decimal values. The int data type is an integer. int is short for Integer int values are stored in Java using 32 bits of memory. RECOMMENDED ARTICLES...

read more
How to use the HTML b element.

How to use the HTML b element.

The b element is used to set a text to bold. The b stands for boldface. The text is written in between the opening and closing tags of the b element. Share this article The b element is used to set a text to bold. The b stands for boldface. The...

read more
if statement in Java

if statement in Java

An if statement in Java is a one way conditional statement that decides the execution path based on whether the condition is true or false.An if statement in Java is a one way conditional statement that decides the execution path based on whether the condition is true...

read more
How to use the switch statement in Java

How to use the switch statement in Java

The switch statement is a multi-way decision statement. It provides an easy way to change the path of execution to different parts of the program based on the value of the expression.The expression passed to the switch statement can be a byte, short, char, int , enum...

read more