Posts

Best Platforms to Access Research Papers

Image
🌟 10 Best Platforms to Access Research Papers 🌟 Are you a student, researcher, or professional looking for top-quality research resources? Look no further! Here’s a list of platforms to help you access scholarly articles and stay ahead in your field: đŸŸŖ 1. Google Scholar 🔗 scholar.google.com Your go-to search engine for finding scholarly articles, theses, and books across disciplines. đŸŸŖ 2. JSTOR 🔗 jstor.org Access thousands of journals, books, and primary sources in humanities, social sciences, and beyond. đŸŸŖ 3. ResearchGate 🔗 researchgate.net Connect with researchers, share your work, and access millions of articles for free. đŸŸŖ 4. ScienceDirect 🔗 sciencedirect.com A hub for peer-reviewed articles in science, health, and engineering. đŸŸŖ 5. arXiv 🔗 arxiv.org Open-access preprints in physics, math, and computer science. đŸŸŖ 6. DOAJ (Directory of Open Access Journals) 🔗 doaj.org Find free, peer-reviewed journals in multiple disciplines. đŸŸŖ 7. PubMed 🔗 pubm...

Understanding and Mastering Coding Errors

Image
 Understanding and Mastering Coding Errors      Coding errors are an inevitable part of the software development journey. Whether you're a novice programmer or a seasoned developer, encountering errors is something you can count on. But rather than seeing them as roadblocks, errors can be powerful learning tools that help you write better code.      There are 3 main types of errors.                     1.Syntax Errors 2.Logical Errors 3.Runtime Errors 1.Syntax Errors:-      Syntax errors occur when the code violates the rules of the programming language. These errors are usually detected by the compiler during the initial stages of program execution. Common examples include missing semicolons, mismatched parentheses, or misspelled keywords.               Above code, semicolon is missed. That is a syntax error. If there any syntax er...

āļ…āļ¯ āļ…āļ´ි āļšāļ­ා āļšāļģāļ¸ු Data collections āļœැāļą

Image
 āļ…āļ¯ āļ…āļ´ි āļšāļ­ා āļšāļģāļ¸ු Data collections āļœැāļą. Data Collections āļœැāļą āļšāļ­ා āļšāļģāļą්āļą āļšāļŊිāļą් āļ…āļ´ි āļšāļ­ා āļšāļģāļ¸ු Data Arrays āļœැāļą. Data Array āļ‘āļšāļš් āļšිāļēāļą්āļąෙ āļ‘āļšāļ¸ āˇ€āļģ්āļœāļēේ Data āļ…āļąුāļ´ි⎅ි⎀ෙāļŊāļšāļ§ āļœāļļāļŠා āļšāļģāļą්āļą āļ´ුāļŊු⎀āļą් āļ¯ාāļ­්āļ­ āˇ€්‍āļēූ⎄āļēāļš්(Data Structure). Array āļ‘āļšේ Type āļ‘āļš String āļąāļ¸් āļ’āļšෙ āļ­ිāļēෙāļą්āļą āļ´ුāļŊු⎀āļą් String Data ⎀ිāļ­āļģāļēි. Array āļ‘āļšāļš් āļąිāļģ්āļ¸ාāļĢāļē āļšāļģāļ¯්āļ¯ි āļ’āļšāļ§ āļ…āļ¯ාāļŊ⎀ Fixed Size āļ‘āļšāļš් āļ¯ෙāļą්āļą āļ•āļąි. Array āļ‘āļšāļš් ⎄ැāļ¯ු⎀āļ§ āļ´āˇƒ්⎃ෙ āļ…āļ´āļ§ Array āļ‘āļš āˇ€ෙāļąāˇƒ් āļšāļģāļą්āļą āļļෑ. ex:-  int[] array = new int[5];         array[0] = 1;                 array[1] = 2;                 array[2] = 3;                 array[3] = 4;                 array[4] = 5; āļ‘āļ­āļšොāļ§ āļ¸ොāļąාāļ¯ āļ¸ේ Array ⎀āļŊ āļ­ිāļēෙāļą āļ´්‍āļģ⎁්āļą?      āļ¸āļ¸ āļ¸ුāļŊිāļą් āļšි⎀්⎀ා ⎀āļœේ Array āļ‘āļšāļš් ⎄āļ¯āļąāļšොāļ§ āļ…āļ´ි āļ’āļšāļ§ Fixed Size āļ‘āļšāļš් āļ¯ෙāļą්āļą āļ•āļąි. āļ¯ැāļą් āļ”āļēාāļŊා ⎄ිāļ­āļą්āļąāļšො āļ…āļ´ි Size āļ‘āļš 5āļš් ⎀ෙāļą Array āļ‘āļšāļš් ⎄āļ¯āļąāˇ€ා integer ⎀āļŊිāļą්. āļ‘āļ­āļšොāļ§ āļ…āļ´ිāļ§ āļ’ Array āļ‘āļšāļ§ āļ‡āļŠ් āļšāļģ...

JDK, JVM and JRE in Java

Image
  Java is a powerful, versatile programming language used to build a wide range of applications, from mobile apps to large-scale enterprise systems. A key part of working with Java effectively is understanding its core components: the JDK (Java Development Kit), the JVM (Java Virtual Machine), and the JRE (Java Runtime Environment). Java Virtual Machine(JVM):- The JVM is a virtual machine that enables a computer to run Java programs. It converts Java bytecode, produced by the Java compiler, into machine code that the host operating system can execute. The JVM's ability to run bytecode on any platform that has a compatible JVM implementation makes Java a "write once, run anywhere" language. JVM Architecture:- Class Loader Role : The class loader is responsible for dynamically loading Java classes into the JVM. It loads classes from the filesystem, network, or other sources as needed. Types : Bootstrap Class Loader : Loads core Java libraries located in the <JAVA_HOME...