<?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: Karuna Digambar Kunde</title>
    <description>The latest articles on DEV Community by Karuna Digambar Kunde (@karunakunde).</description>
    <link>https://dev.to/karunakunde</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3341124%2F4b78f6e6-96c0-4535-80dc-5127e8fda9bf.png</url>
      <title>DEV Community: Karuna Digambar Kunde</title>
      <link>https://dev.to/karunakunde</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/karunakunde"/>
    <language>en</language>
    <item>
      <title>SDLC and STLC Explained with Simple Real-Life Examples</title>
      <dc:creator>Karuna Digambar Kunde</dc:creator>
      <pubDate>Fri, 11 Jul 2025 11:31:06 +0000</pubDate>
      <link>https://dev.to/karunakunde/sdlc-and-stlc-explained-with-simple-real-life-examples-4p2m</link>
      <guid>https://dev.to/karunakunde/sdlc-and-stlc-explained-with-simple-real-life-examples-4p2m</guid>
      <description>&lt;p&gt;🔰 Introduction:&lt;br&gt;
When I first heard the terms SDLC and STLC, they felt confusing. But once I understood them with real-life examples, it became clear. In this blog, I’ll explain both — in the simplest way possible.&lt;/p&gt;

&lt;p&gt;🔄 What is SDLC?&lt;br&gt;
SDLC stands for Software Development Life Cycle&lt;br&gt;
It describes all the steps involved in building software — from idea to delivery&lt;/p&gt;

&lt;p&gt;✅ SDLC Phases:&lt;br&gt;
Requirement Gathering – What does the client need?&lt;br&gt;
Design – How will the system look &amp;amp; work?&lt;br&gt;
Development – Coding begins here&lt;br&gt;
Testing – QA team verifies the software&lt;br&gt;
Deployment – Software goes live&lt;br&gt;
Maintenance – Fix bugs or add features later&lt;/p&gt;

&lt;p&gt;🏠 Real-life Example:&lt;br&gt;
Imagine building a house:&lt;br&gt;
You gather requirements (How many rooms?)&lt;br&gt;
Create blueprints (Design)&lt;br&gt;
Start construction (Development)&lt;br&gt;
Inspect everything (Testing)&lt;br&gt;
Move in (Deployment)&lt;br&gt;
Fix leaks later (Maintenance)&lt;/p&gt;

&lt;p&gt;🔍 What is STLC?&lt;br&gt;
STLC stands for Software Testing Life Cycle&lt;/p&gt;

&lt;p&gt;It describes the testing process inside the SDLC&lt;/p&gt;

&lt;p&gt;✅ STLC Phases:&lt;br&gt;
Requirement Analysis – What needs to be tested?&lt;br&gt;
Test Planning – Who will test? What tools? Timeline?&lt;br&gt;
Test Case Design – Writing test cases&lt;br&gt;
Environment Setup – Prepare test setup (devices, browser, etc.)&lt;br&gt;
Test Execution – Run test cases, find bugs&lt;br&gt;
Test Closure – Final report after testing&lt;/p&gt;

&lt;p&gt;🧪 Real-life Example:&lt;br&gt;
Continuing the house example:&lt;br&gt;
You check the plan (Requirement Analysis)&lt;br&gt;
Plan how to inspect (Test Plan)&lt;br&gt;
Make a checklist (Test Case Design)&lt;br&gt;
Bring measuring tools (Environment Setup)&lt;br&gt;
Do the inspection (Execution)&lt;br&gt;
Submit final report (Closure)&lt;/p&gt;

&lt;p&gt;🎯 Why They Matter?&lt;br&gt;
Understanding SDLC helps testers know where they fit in&lt;br&gt;
Knowing STLC helps you follow a structured approach to testing&lt;br&gt;
In interviews, questions like “Difference between SDLC &amp;amp; STLC” are common&lt;/p&gt;

&lt;p&gt;✅ Conclusion:&lt;br&gt;
SDLC and STLC are not difficult once you relate them to real life. The more you test, the more you’ll appreciate these processes.&lt;/p&gt;

&lt;p&gt;🙋‍♀️ Over to You:&lt;br&gt;
Did this blog help you understand SDLC and STLC? Comment below — and share it with your testing friends!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What is Software Testing? My Learning Journey So Far</title>
      <dc:creator>Karuna Digambar Kunde</dc:creator>
      <pubDate>Thu, 10 Jul 2025 06:45:28 +0000</pubDate>
      <link>https://dev.to/karunakunde/what-is-software-testing-my-learning-journey-so-far-48nf</link>
      <guid>https://dev.to/karunakunde/what-is-software-testing-my-learning-journey-so-far-48nf</guid>
      <description>&lt;p&gt;💡 Introduction&lt;br&gt;
When I started learning software testing, I didn’t know where to begin. So I decided to write blogs to share what I learn — in simple language. If you're a beginner like me, this post is for you.&lt;/p&gt;

&lt;p&gt;🧠 What is Software Testing?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Testing is the process of finding bugs before users do.&lt;/li&gt;
&lt;li&gt;It helps deliver quality software to customers.&lt;/li&gt;
&lt;li&gt;It can be manual (done by human) or automated (done by code).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🔍 Why Software Testing is Important&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Saves cost by catching issues early&lt;/li&gt;
&lt;li&gt;Increases user trust in software&lt;/li&gt;
&lt;li&gt;Required in every app — websites, mobile, games, banking, etc.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🙋‍♀️ My Learning So Far&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I learned about SDLC, STLC, test cases, bug life cycle&lt;/li&gt;
&lt;li&gt;Started writing test cases using Excel&lt;/li&gt;
&lt;li&gt;Practiced on sample apps and websites&lt;/li&gt;
&lt;li&gt;Now learning Selenium for automation!&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🎯 My Goal&lt;br&gt;
I want to become a skilled QA engineer and share my learning with the world — through this blog.&lt;/p&gt;

&lt;p&gt;📌 What’s Next?&lt;br&gt;
In the next post, I’ll write about the SDLC and STLC with simple real-life examples. Follow my blog to learn with me!&lt;/p&gt;

&lt;p&gt;🙏 Closing Note&lt;br&gt;
If you’re learning software testing too, drop a comment! Let’s learn and grow together.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
