Creator

mostfunnyvideo

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

132 videos
38 followers

Videos

Latest videos from mostfunnyvideo

Recursion In java

Recursion In java

11 views
Recursion is the technique of making a function call itself. This technique provides a way to break complicated problems down into simple problems which are easier to solve....
Command Line Arguments

Command Line Arguments

12 views
What are Command-Line Arguments? Command-line arguments are simple parameters that are given on the system's command line, and the values of these arguments are passed on to...
Variable Arguments in Java

Variable Arguments in Java

9 views
Variable Arguments (Varargs) in Java is a method that takes a variable number of arguments. Variable Arguments in Java simplifies the creation of methods that need to take a...
Method Overloading in Java

Method Overloading in Java

5 views
Method overloading is a feature of Java in which a class has more than one method of the same name and their parameters are different.
Student Challenge Find Prime number in Java

Student Challenge Find Prime number in Java

6 views
A prime number is a whole number greater than 1 whose only factors are 1 and itself. A factor is a whole number that can be divided evenly into another number. The first few...
Practising Object Passing in Java

Practising Object Passing in Java

3 views
When we pass a primitive type to a method, it is passed by value. But when we pass an object to a method, the situation changes dramatically, because objects are passed by what...