Java Notes
Function's
A function is block of code that performs a task
ReturnType some return a value number, time and date
Void reserve keyword un java
Name name of a function proper discriptive name
() parameter of function is added (value like who is the reciver)
{} the code
{ left brace is added the same line where we define our function }
ever java program should have one function main
main is an entry point to our function
Class container for one or more related functions
Class Main {
Method is a function that is a part of a class
Access modifier is a keyword that determines if other classes and methods and
programs can access this modifier
Pascal Naming Convention
Main class and inside this main class it has