Welcome to Code Buster!

Are you gearing up for a programming interview or looking to level up your coding skills? You've come to the right place! On this channel, we focus on providing top-notch content to help you excel in your programming career.

🔹 Interview Prep: We dive deep into the most common programming language interviews, covering essential topics and offering strategies to tackle even the toughest questions. Whether it's Python, Java, or their various frameworks, we’ve got you covered.

🔹 Tutorials: Our step-by-step tutorials are designed to help you master Python, Java, and other critical technologies. From beginner basics to advanced techniques, our videos provide clear explanations and practical examples.

🔹 Frameworks & Beyond: Explore the world of frameworks and tools that complement your programming journey. Learn about popular frameworks for Python and Java, and see how they can elevate your projects and skills.

Happy Coding !
Code Buster


CodeBuster

coming tomorrow at 10:45 am IST

1 year ago | [YT] | 2

CodeBuster

watch solution here:
https://youtu.be/c96zR0CUnGE

1 year ago | [YT] | 4

CodeBuster

Q2.create a custom decorator in python.
solution:
def logging(func):
def wrapper(*args,**kwargs):
print("before addition")
func(*args,**kwargs)
print("after addition")
return wrapper
@logging
def add(a,b):
print(a+b)

add(4,5)

1 year ago | [YT] | 2

CodeBuster

Q1. Write a simple Generator in python.
Solution:
def countdown(n):
while n>0:
yield n
n = n-1

gen = countdown(5)
for i in gen:
print(i)

1 year ago | [YT] | 3