Creator

mostfunnyvideo

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

132 videos
38 followers

Videos

Latest videos from mostfunnyvideo

Creating String Objects in java

Creating String Objects in java

1 views
Where are string objects created? Strings are stored on the heap area in a separate memory location known as String Constant pool. String constant pool: It is a separate block...
Formatted Output #2 in java

Formatted Output #2 in java

3 views
This is the easiest of all methods as this is similar to printf in C. Note that System.out.print() and System.out.println() take a single argument, but printf() may take...
Formatted Output #1 in java

Formatted Output #1 in java

2 views
The println() method is similar to print() method except that it moves the cursor to the next line after printing the result. It is used when you want the result in two separate...
Printing using System.out.println in Java

Printing using System.out.println in Java

8 views
The println() method is similar to print() method except that it moves the cursor to the next line after printing the result. It is used when you want the result in two separate...
Widening and Narrowing in java

Widening and Narrowing in java

4 views
In the context of data types in programming, widening and narrowing refer to the conversion between different data types with different sizes or ranges.
Bit Masking and Merging in java

Bit Masking and Merging in java

13 views
In Java, bit masking and merging are techniques used to manipulate individual bits or groups of bits within an integer value.
Bitwise Operators

Bitwise Operators

2 views
Bitwise operators are operators used in computer programming to perform operations on individual bits of binary numbers. They manipulate the binary representation of integers at...
Increment and Decrement Operators

Increment and Decrement Operators

3 views
Increment and decrement operators are used in programming languages to increase or decrease the value of a variable by 1, respectively. These operators are commonly denoted as...