Java – Networking
Java Networking is a concept of connecting two or more computing devices together so that we can share resources. The…
Java Networking is a concept of connecting two or more computing devices together so that we can share resources. The…
The Java language supports three types of comments: /* text */ - The compiler ignores everything from /* to */.…
An applet is a Java program that runs in a Web browser. An applet can be a fully functional Java…
Multithreading is a Java feature that allows concurrent execution of two or more parts of a program for maximum utilization…
To send an e-mail using your Java Application is simple enough but to start with you should have JavaMail API…
Writing an interface is similar to writing a class. But a class describes the attributes and behaviors of an object.…
A Package can be stated that a grouping of related types (classes, interfaces, enumerations, and annotations ) providing access protection…
Encapsulation is a more useful fundamental OOP concept. The other three are inheritance, polymorphism, and abstraction. Encapsulation in Java is…
An abstract method is a method that is declared without an implementation (without braces, and followed by a semicolon): abstract…
Polymorphism, which refers to the idea of "having many forms", occurs when there is a hierarchy of classes related to…