Creator

mostfunnyvideo

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

132 videos
38 followers

Videos

Latest videos from mostfunnyvideo

Float, Character and Boolean Classes in Java

Float, Character and Boolean Classes in Java

5 views
float data type is a single-precision 32-bit IEEE 754 floating point. Wrapper Class: Float Float is mainly used to save memory in large arrays of floating point numbers. Default...
Wrapper Classes in Java

Wrapper Classes in Java

2 views
The wrapper class in Java provides the mechanism to convert primitive into object and object into primitive. Since J2SE 5.0, autoboxing and unboxing feature convert primitives...
Object Class in Java

Object Class in Java

0 views
Class Object is the root of the class hierarchy. Every class has Object as a superclass. All objects, including arrays, implement the methods of this class.
Demo Synchronisation in Java

Demo Synchronisation in Java

6 views
Synchronization in java is the capability to control the access of multiple threads to any shared resource. In the Multithreading concept, multiple threads try to access the...
Try with Resources in Java

Try with Resources in Java

4 views
The try -with-resources statement is a try statement that declares one or more resources. A resource is an object that must be closed after the program is finished with it. The...
Demo Finally block in Java

Demo Finally block in Java

5 views
Java finally block is a block used to execute important code such as closing the connection, etc. Java finally block is always executed whether an exception is handled or not....