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...