SGSuryansh Grinsuryanshdsa.hashnode.dev·Aug 23, 2023 · 4 min readIntroduction to Searching AlgorithmBefore jumping right into the computers let's build things up from the first principles and understand some basics. What is searching? Searching is the act of looking for something, it is an activity that involves exploring and examining different th...00
SGSuryansh Grinsuryanshdsa.hashnode.dev·Jun 28, 2023 · 3 min readFirst ProgramEvery file that ends with .java is a class. The public class in the file can be only the name of the file or public class has the same name as of the file public ---> everyone can access public static void main(String[] args){} this is the main funct...00
SGSuryansh Grinsuryanshdsa.hashnode.dev·Jun 18, 2023 · 1 min readJava ArchitectureIn C, the compiler converts the program into an executable file. In JAVA unlike C, the compiler(javac) converts our program(.java file) into byte code(.class file) that is sort of in an intermediate state, after that JVM interprets that byte code int...00