Skip to main content

Posts

Showing posts with the label development

Difference Between the Java and Javascript

JAVA is a programming language invented by James Gosling and developed by SUN MICROSYSTEM. It was first released in 1995. It is one of the most popular OOPS languages. JAVASCRIPT is developed by Brenden Eich at Netscape. He created this programming language in 1990 and named it LiveScript initially. Later on, it was renamed JavaScript It is a web-based object-oriented scripting language used to add motion or dynamic content to our website. Both languages are object-oriented. Java applications and programs run in Java Virtual Machine(JVM). Also, you need to install JDK and JRF JavaScript applications run on a web browser and there is no need for any initial setup. Java programs are compiled and interpreted as it is a programming language. JavaScript is only interpreted as it is a scripting language or plain text code.

HTML entities

HTML Entities HTML Entities Some characters are reserver in html. If you use the less than (<) or greater than (&gt) signs in your text, the browser might mix them with tags. character entities are used to display reserved characters in html. A character entity looks like this: &entity_name; OR &#entity_number To display a less than sign (<) we must write: &lt; or &#60; Advantages of using an entity name: An entity name is easy to remember. Disadvantages of using an entity name: Browsers may not support all entity names, but the support for entity numbers is good. Some usefull HTML Character Entities Result Description Entity Name Entity Number non-breaking space ...