<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Nikhil</title>
    <description>The latest articles on DEV Community by Nikhil (@nikhilquery).</description>
    <link>https://dev.to/nikhilquery</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4132662%2F6e5740da-2728-4a1c-b3b3-0a3de3e3387c.png</url>
      <title>DEV Community: Nikhil</title>
      <link>https://dev.to/nikhilquery</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nikhilquery"/>
    <language>en</language>
    <item>
      <title>My Week 1 Journey Learning Java Backend Development from Scratch!</title>
      <dc:creator>Nikhil</dc:creator>
      <pubDate>Sat, 19 Sep 2026 09:58:05 +0000</pubDate>
      <link>https://dev.to/nikhilquery/my-week-1-journey-learning-java-backend-development-from-scratch-44on</link>
      <guid>https://dev.to/nikhilquery/my-week-1-journey-learning-java-backend-development-from-scratch-44on</guid>
      <description>&lt;p&gt;Hello Developers! 👋&lt;/p&gt;

&lt;p&gt;I am Nikhil, a BCA 1st Year student passionate about Software Engineering and Core Java Backend Development. This week, I officially kickstarted my coding journey and decided to "Learn in Public" by documenting everything I code and build. &lt;/p&gt;

&lt;p&gt;For the past week, I have been deeply practicing core concepts from Java, using hand-written study notes to solidify my logic. Here is a breakdown of what I learned, coded, and deployed in Week 1!&lt;/p&gt;




&lt;h2&gt;
  
  
  📚 What I Mastered This Week
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1️⃣ Java Architecture &amp;amp; Core Basics
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Configured my local development environment using Visual Studio Code and JDK.&lt;/li&gt;
&lt;li&gt;Understood how Java applications compile and execute via bytecode.&lt;/li&gt;
&lt;li&gt;Practiced proper naming conventions (PascalCase for classes and camelCase for methods/variables).&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  2️⃣ Dynamic Inputs via Scanner Class
&lt;/h3&gt;

&lt;p&gt;Instead of hardcoding values, I learned how to use &lt;code&gt;import java.util.Scanner&lt;/code&gt; to take real-time values from the terminal.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Project Built:&lt;/strong&gt; Deployed a &lt;code&gt;BioDataFetcher.java&lt;/code&gt; that handles different data types like &lt;code&gt;String&lt;/code&gt;, &lt;code&gt;int&lt;/code&gt;, and &lt;code&gt;double&lt;/code&gt; seamlessly.
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fj41wywjix660s851kssi.png" alt=" " width="799" height="317"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3️⃣ String Manipulation &amp;amp; Validation Logic
&lt;/h3&gt;

&lt;p&gt;Explored Java's internal String methods to clean and format raw input data.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Mastered formatting using escape sequences (&lt;code&gt;\n&lt;/code&gt;, &lt;code&gt;\t&lt;/code&gt;).&lt;/li&gt;
&lt;li&gt;Practiced logic gates (&lt;code&gt;||&lt;/code&gt;, &lt;code&gt;&amp;amp;&amp;amp;&lt;/code&gt;) and the &lt;code&gt;return&lt;/code&gt; statement to write robust data validation rules.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Project Built:&lt;/strong&gt; Refactored a secure 5-subject &lt;code&gt;MarksCalculator.java&lt;/code&gt; that instantly blocks invalid entries (marks &amp;gt; 100 or &amp;lt; 0).
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fhlzm8uzfj7i5ma460bvo.png" alt=" " width="673" height="662"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  4️⃣ Advanced Conditional Slabs
&lt;/h3&gt;

&lt;p&gt;Moved beyond simple control flows into complex, nested &lt;code&gt;if-else&lt;/code&gt; branching logic.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Project Built:&lt;/strong&gt; Successfully built and cracked the differential calculation logic for a multi-slab &lt;code&gt;TaxCalculator.java&lt;/code&gt; (2.5L, 5L, and 10L tax brackets).
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fvxl79xitf82xy2eprwwc.png" alt=" " width="800" height="733"&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🚀 Keeping the GitHub Graph Green!
&lt;/h2&gt;

&lt;p&gt;Consistency is everything. I have been pushing every line of code to GitHub daily. Alongside my code, I upgraded my repository's &lt;code&gt;README.md&lt;/code&gt; to a professional, chapter-wise milestone log so that anyone can track my growth.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fc9em9nqznn0b3e7bphnh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fc9em9nqznn0b3e7bphnh.png" alt=" " width="799" height="358"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;📂 You can check out all my clean code implementations here: &lt;br&gt;
👉 &lt;strong&gt;&lt;a href="https://github.com/NikhilQuery/JavaJourney" rel="noopener noreferrer"&gt;https://github.com/NikhilQuery/JavaJourney&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🎯 What's Next?
&lt;/h2&gt;

&lt;p&gt;Week 1 was incredible, but it's just the beginning. Up next, I am diving straight into &lt;strong&gt;Chapter 5: Loop Control Structures (For, While, Do-While loops)&lt;/strong&gt; to teach my backend systems how to iterate and repeat tasks efficiently.&lt;/p&gt;

&lt;p&gt;If you are a fellow student or developer, let's connect and grow together! &lt;/p&gt;

&lt;p&gt;&lt;em&gt;“Consistency is the key. Let's build the future, one clean commit at a time!”&lt;/em&gt; 💻🔥&lt;/p&gt;

&lt;h1&gt;
  
  
  java #bca #backend #programming #learninpublic #freshers #softwareengineering #github
&lt;/h1&gt;

</description>
      <category>backend</category>
      <category>beginners</category>
      <category>java</category>
      <category>learning</category>
    </item>
  </channel>
</rss>
