suryanshdsa.hashnode.devIntroduction 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...Aug 23, 2023·4 min read
suryanshdsa.hashnode.devFirst 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...Jun 28, 2023·3 min read
suryanshdsa.hashnode.devJava 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...Jun 18, 2023·1 min read