Creator

mostfunnyvideo

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

132 videos
38 followers

Videos

Latest videos from mostfunnyvideo

Practice Arithmetic Operators

Practice Arithmetic Operators

0 views
Numbers are extremely common in programming. They are used to represent things like screen size dimensions, geographic locations, money and points, the amount of time that...
Features of Java

Features of Java

4 views
Overall, these features have made Java one of the most popular programming languages in the world, used by developers to build a wide range of software applications, from mobile...
JVM Architecture Details

JVM Architecture Details

6 views
The JVM (Java Virtual Machine) is the engine that runs Java programs. It is made up of three main components: the class loader, runtime data area, and execution engine. The...
JVM Architecture

JVM Architecture

1 views
This is the engine that runs Java programs. It is responsible for interpreting bytecode and executing the Java program on the underlying hardware. The JVM architecture can be...
Platform Independent Demo

Platform Independent Demo

4 views
As you can see, the same Java bytecode can be executed on different operating systems, and the program output is platform-dependent, which demonstrates Java's platform...
How Java is Platform Independent

How Java is Platform Independent

1 views
Java is often referred to as a platform-independent programming language because of its ability to run on any platform that has a Java Virtual Machine (JVM) installed.
Compiler vs Interpreter

Compiler vs Interpreter

9 views
A compiler and an interpreter are both software tools used in the process of executing code written in a programming language, but they operate in different ways. A compiler is...
Check Binary Bits of an Integer

Check Binary Bits of an Integer

8 views
Computers use a fixed number of bits to represent an integer. The commonly-used bit-lengths for integers are 8-bit, 16-bit, 32-bit or 64-bit. Besides bit-lengths, there are two...