Showing posts with label Java Buzzwords and Features of Java. Show all posts
Showing posts with label Java Buzzwords and Features of Java. Show all posts
Thursday, 29 October 2020
Java Buzzwords
Features of Java
The multiplatformed environment of the Web place extraordinary demands on a program , because the program must execute reliably in a variety of systems . Thus , the ability to create robust programs was given a high priority in the design of java . To gain reliability ,Java restricts we in a few key areas to force we find our mistakes early in program development .
Java is designed for the distributed environment of the internet because it handle TCP/IP protocols. In fact , accessing a resource using a URL is not much different from accessing a file . Java also supports Remote Method Invocation (RMI) .This feature enables a program to invoke methods across a network .
Java programs carry with them substantial amounts of run - time type information that is used to verify and resolve accesses to objects at run time . This make it possible to dynamically link code in a safe and expedient manner . This is crucial to the robustness of the java environment , in which small fragments of bytecode may be dynamically updated on a running system .
Subscribe to:
Posts (Atom)
Student Marks Calculation app using java
import javax.swing. *; import java.awt.event.ActionEvent ; import java.awt.event.ActionListener ; public class Student { private J...
-
The Type Promotion Rules :- Java defines several type promotion rules that apply to expressions. They are as follows : all byt...
-
import javax.swing. *; import java.awt.event.ActionEvent ; import java.awt.event.ActionListener ; public class Student { private J...
-
What are the characteristics and jealous of OOP(Object Oriented Programming? Characteristics of OOPS are:- 1. Emphasis is on ...