Author name: admin

Method

Java Method Method in Java is a block of code which is used to execute specific tasks for which it is written and return the result to the caller.A Java method can perform some specific task without returning anything.It is used for code reusability and also increases code readability. It also allows to break program …

Method Read More »

Naming Convention

Java Naming Convention Java naming convention is a set of rule to follow to name the identifiers such as class,variable,package,constant, method, etc. Java follows CamelCase naming convention for writing names of methods, variables, classes, packages, and constants.It consists of compound words or phrases such that each word or abbreviation begins with a capital letter or …

Naming Convention Read More »

Access Modifiers

Access Modifiers In Java defines the scope of data member,variable,method class or constructor specifing security, accessibility of those elements based on access modifiers used. Four types of Access Modifiers in Java are Private,Default,Protected and Public Private: Access of a private modifier is only within the class and cannot be accessed from outside the class. Default: Access …

Access Modifiers Read More »

Kernel

A Kernel is a computer program which is core and heart of an operating system acting as an interface (or bridge) between user-level applications (softwares) components and the hardwares.

Scroll to Top