Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
15,038 results
In this tutorial, you'll learn how to create and use Interfaces in Java, one of the most important concepts in Object-Oriented ...
18 views
11 hours ago
Java Interview Questions – Episode 12 What is the Serializable interface in Java? And why do we use it? The Serializable ...
91 views
11 months ago
Quick explanation of a serialization in Java. General overview and a short example. If you found my work valuable consider ...
255 views
10 months ago
Java Interview Questions – Episode 11 What's the difference between a Set and a List in Java? Both are part of the Collection ...
36 views
Compiles? Yes. Runs successfully? No — throws ClassCastException at runtime. n1 is an Integer object whose compareTo ...
26 views
In this quick 3-minute video, we discuss a real-time Java interview question on Sealed Classes and Sealed Interfaces (Java 17).
153 views
5 months ago
All methods defined in an interface are public. When a class implements the interface, the method must be declared public.
19 views
All methods in an interface are implicitly public and abstract, unless they are declared.
In this video, we explain how SPI (Service Provider Interface) works in Java, why it's used, and how to create your own service ...
203 views
Learn Java Interface in just 2 minutes! (Super Easy Explanation) Java mein Interface kya hota hai aur ise kyun use karte hain?
360 views
2 months ago
Learn the basics of Java Native Interface (JNI) in this beginner-friendly tutorial. We'll cover what JNI is, how to declare native ...
403 views
The ultimate 2-minute breakdown of Abstract Classes vs. Interfaces. If you are preparing for a coding interview or trying to write ...
35 views
12 days ago
Let's learn how to use throw keyword in Java. In Java, throw keyword is used to manually throw an exception object. This allows ...
61 views
Welcome to Java2CloudAcademy ! In this video, you'll learn about Intro about Developing different types software application, ...
17 views
Java Interview Questions – Episode 6 What is the contract between equals() and hashCode() in Java? And where is it used?
58 views
Welcome to Java2CloudAcademy In this video, you'll learn about Dive into Java's powerful Predicate T functional interface!
9 views
9 months ago
An interface cannot have a method body. Interfaces only declare method signatures, and the method bodies are implemented by ...
23 views
It is correct.
15 views
Java Interview Questions – Episode 7 Can you override a static method in Java? ❌ No, you can't override static methods in ...
125 views
You cannot provide a method body like { } for a regular abstract method in an interface.