VSVibhanshu Singhinsinghvibhanshu.hashnode.dev路Dec 29, 2024 路 3 min readBeginner's Guide to Java Arrays ExplainedBefore we proceed further, let's understand why we need an array. Suppose we need to enter the roll number of a student. We can do it in the following way: int rolno = 23; Now, suppose we need to enter 5 roll numbers. We can use the same concept as ...00
VSVibhanshu Singhinsinghvibhanshu.hashnode.dev路Nov 17, 2024 路 2 min readSimple YAML Basics: A Beginner's GuideYAML: Yet Another Markup Language [Previous]YAML: YAML Ain鈥檛 Markup Language (RECURSIVE it is 馃槄) [Nowadays]Example of Markup Language: HTMLQ: What is the use of markup language?A: It provides child-parent relations. Not a programming language. Bas...00
VSVibhanshu Singhinsinghvibhanshu.hashnode.dev路Nov 11, 2024 路 10 min readObject-Oriented Programming in C++Before we go further, we need to understand what OOP is. Basically, OOP, or Object-Oriented Programming, is one of several programming approaches. It's a set of rules, ideas, or concepts designed to help us solve real-world problems. The main idea be...00
VSVibhanshu Singhinsinghvibhanshu.hashnode.dev路Sep 27, 2024 路 2 min readStep-by-Step Guide to Learning PythonWhy do you want to learn Python? Ask yourself and set the direction correctly. Make sure that your machine is set up for Python development. Focus your first week of learning on these: - data types - operators - variables - conditionals - looping -...00
VSVibhanshu Singhinsinghvibhanshu.hashnode.dev路Sep 14, 2024 路 3 min readJava Basics: An Introductory OverviewHow is Java code executed? A .java file (which is human-readable) goes through the compiler, which converts the entire file into a .class file (bytecode). This bytecode is then passed to the interpreter, which reads and executes it line by line, even...00