What is Event handling in java?

event handing in java

Before understanding event handling, let’s understand what is events. In java, an event is an object which specifies the change of state in the source. It occurs whenever an action takes place. For example, clicking on a button, moving the mouse so on. There are two types of events. Types of event The events can … Read more

How to convert java object into a JSON?

In this article we show how to convert a java object into JSON. let’s Firstly discuss about object and JSON. Object: Java objects are the key to understand the object-oriented programming approach. An object consists of a state and behavior. The state of an object is one of the possible conditions that an object can … Read more

what is abstract class in java?

abstract class in java

Abstract class in java is a conditioned class that we cannot use to create an object. To access it you need to inherit from another class. Abstraction 0Process of hiding certain details and showing required information to the user. The class that contains an abstract method or non-abstract method, such a class known as an … Read more

Difference between Java and JavaScript

Java and JavaScript are not in the same family of languages but have some similarities. They are like two different sides of a coin. Java was written in 1995 and also the most popular language. Which used for software development. That’s why a Front End Development language ECMA-Script, known as JavaScript. To increase its popularity … Read more

What is JavaScript used for?

javascript used for

JavaScript is the most popular programming language in the world. It is a cross-platform, object-oriented scripting language used to make webpages interactive. Such as Animated graphics Clickable Buttons Photo slideshows Show or Hide Content Popup menus etc It contains a standard library of objects, Like Array, Data, Math, and a core set of language elements … Read more