Select Page
int data type in Java

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.  comment(s) The int data type is an integer. int is short for Integer int values are stored in Java using 32 bits of memory. RECOMMENDED...
How to use the HTML b element.

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.  comment(s) Share this article more The b element is used to set a text to bold. The b...
The header element in HTML5 – How to use it

The header element in HTML5 – How to use it

Elements | html The header element in HTML5 – How to use it The <header> element is a new HTML element and was introduced in HTML5. It can be used as a header for a whole page (the most common usage), but can also be used as the header for an article or...
if statement in Java

if statement in Java

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. nanadwumor February 26, 2022 An if statement in Java is a one way conditional statement that decides...