Topics

PHP Comments, Require, Include

In PHP, comments are the most essential parts of the code and they help us to understand the code. Comments supply helpful information that will help you and other developers understand the meaning of the code.

Data Types in Java

Data types are basically used for declaring variables and functions of different types. It can define different sizes and values which are used to store variables. In Java, data types are two types i.e.: Primitive Data Types (Intrinsic)
Non-Primitive Data Types (Derived)

Operators In PHP

Operator in PHP is a symbol that is used to perform operations. In simple words, operators are used to execute the operations on variables or values

Variable, Constant & Literals in JAVA

A variable is a data name that is used for storing a data value. The value of the variable may be changed during the program execution, Example: – int number = 8; Here ‘int’ is a data type, ‘number’ is a variable name and 8 is a value that it stores.

Variables in PHP

Variables in PHP are used to store data and that variable can be used later in the program. The variable is assigned with the ‘$’ sign.

Structure of Java Program

Structure of Java Program There are various concepts used in a java program i.e.: Classes
Objects
Packages
Methods
Interface
OOPs Concept
Exception Handling
Multi-Threading
Collection Framework