SSKVincodingscapes.hashnode.dev·May 8, 2023 · 2 min readPointers In A WeekPOINTERS. There is a general comment that pointers are difficult, but the truth is that they are only confusing. Over the next seven days, you will learn about pointers (in C language) in a straightforward and easy-to-understand manner. During the ne...00
SSKVincodingscapes.hashnode.dev·Feb 11, 2023 · 1 min readAn Intro To Machine LearningA beginner’s guide to what is machine learning and its basic types. WHAT IS ML? Making the machine imitate human behaviour. Making the computers learn from data called the training set and make decisions accordingly. 2 COMMON TYPES OF ML: SUPERV...00
SSKVincodingscapes.hashnode.dev·Dec 27, 2022 · 1 min readConstructors & Inheritance:By default, the parent class's default constructor—which doesn't take any parameters—is invoked anytime the constructor of a subclass is called. EG: class parent{ parent(){ System.out.println("parent"); } } public class inheri extends...00