Creator

mostfunnyvideo

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

132 videos
38 followers

Videos

Latest videos from mostfunnyvideo

Student Challenge Palindrome in Java

Student Challenge Palindrome in Java

19 views
A palindromic number (also known as a numeral palindrome or a numeric palindrome) is a number (such as 16461) that remains the same when its digits are reversed. In other words,...
For loop in Java

For loop in Java

51 views
For loop in Java iterates a given set of statements multiple times. The Java while loop executes a set of instructions until a boolean condition is met. The do-while loop...
Loops in java

Loops in java

29 views
Looping in programming languages is a feature which facilitates the execution of a set of instructions/functions repeatedly while some condition evaluates to true. Java provides...
Switch Case in Java

Switch Case in Java

8 views
The Java switch statement executes one statement from multiple conditions. It is like an if-else-if ladder statement. The switch statement works with byte, short, int, long,...