What’s up fellow coders and welcome to Geekific!
I’m Ed, a full-time software developer and coding enthusiast. Join me on this never-ending learning journey as we dive into the fascinating world of coding. Whether you're a beginner or an experienced programmer, this channel is dedicated to providing you with valuable insights, tips, and tutorials to help you excel in your coding endeavors. Let's forge a tight-knit community of passionate learners and embark on an exciting coding adventure together!

YouTube Membership Milestones:
• After 1K members, we’ll disable all Ads on our videos.
• After 2K members, we’ll start uploading full deep-dive courses.
• After 4K members, we’ll bind all content in an exclusive e-book for all our members.


Geekific

What is the output of this code?
String s = "hello";
String t = new String("hello");
System.out.println(s == t);

2 days ago | [YT] | 5

Geekific

What does the volatile keyword guarantee?

1 week ago | [YT] | 4

Geekific

Which interface does NOT belong to the Java Collections Framework?

2 weeks ago | [YT] | 6

Geekific

What is the worst-case time complexity of binary search given a sorted array?

3 weeks ago | [YT] | 4

Geekific

Which keyword prevents a method from being overridden?

4 weeks ago | [YT] | 3

Geekific

Which Java collection allows insertion order to be preserved but is NOT synchronized?

1 month ago | [YT] | 3

Geekific

What is the default load factor of a HashMap in Java?

1 month ago | [YT] | 4

Geekific

What’s up Geeks!

Another year has passed since the very first Geekific video went live. This year, the channel crossed 50,000 subscribers. That milestone genuinely means a lot to us, and we’re grateful to everyone who’s been watching, learning, and supporting the channel along the way.

As always, we’ll keep focusing on what Geekific is about: clear explanations, practical concepts, and weekly content that respects your time.

If you’d like to stay connected beyond YouTube, you can find all our links here: linktr.ee/geekific. Instagram, Discord, YouTube Memberships, GitHub, and LeetCode — everything in one place.

Thank you for being part of this journey and for the continued support ❤️

Happy New Year and see you next week!

1 month ago | [YT] | 7

Geekific

Would you like us to keep these quizzes up for 2026?

1 month ago | [YT] | 4

Geekific

What will be the output of the following code?
--------------------
public static void main(String[] args) {
System.out.println(myMethod(2, 3));
}

public static int myMethod(int a, int b) {
if (b == 0) {
return 0;
} else {
return a + myMethod(a, b - 1);
}
}

2 months ago | [YT] | 0