Creator

mostfunnyvideo

Watch videos from mostfunnyvideo on Febspot. Browse 132 published videos.

132 videos
38 followers

Videos

Latest videos from mostfunnyvideo

Inheritance in Java

Inheritance in Java

23 views
Inheritance in Java is the method to create a hierarchy between classes by inheriting from other classes. Java Inheritance is transitive - so if Sedan extends Car and Car...
Constructors In Java

Constructors In Java

1 views
Constructor in java is used to create the instance of the class. Constructors are almost similar to methods except for two things - its name is the same as the class name and it...
Types of Properties In Java

Types of Properties In Java

5 views
The properties object contains a key and value pair both as a string. The java.util.Properties class is the subclass of Hashtable. It can be used to get property value based on...
Data Hiding In Java

Data Hiding In Java

5 views
In Java, data hiding is achieved by declaring the class fields as private and providing public getter and setter methods to access and modify the field values. This ensures that...