<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:media="http://search.yahoo.com/mrss/" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
  <channel>
    <title>Aaj TV English News - Business &amp; Economy</title>
    <link>https://english.aaj.tv/</link>
    <description>Aaj TV English</description>
    <language>en-Us</language>
    <copyright>Copyright 2026</copyright>
    <pubDate>Tue, 07 Apr 2026 20:25:16 +0500</pubDate>
    <lastBuildDate>Tue, 07 Apr 2026 20:25:16 +0500</lastBuildDate>
    <ttl>60</ttl>
    <item xmlns:default="http://purl.org/rss/1.0/modules/content/">
      <title>Calculator: Your electricity bill after price reduction</title>
      <link>https://english.aaj.tv/news/330410028/calculator-your-electricity-bill-after-price-reduction</link>
      <description>&lt;p&gt;The federal government in Pakistan recently announced a significant price reduction of around Rs7.5 per unit or kilowatt hours in electricity prices. This will cut your energy bill by thousands of rupees if not more.&lt;/p&gt;
&lt;p&gt;Use the calculator below to estimate your current and new bills. This is a tentative estimate and your final bill may vary as power distribution companies often include monthly and quarterly adjustment charge in their bills.&lt;/p&gt;
&lt;!-- Electricity Bill Calculator --&gt;
&lt;div style="background:#f9f9f9; padding:20px; border-radius:10px; max-width:600px; margin:auto;"&gt;
&lt;h3&gt;&lt;a id="-electricity-bill-calculator" href="#-electricity-bill-calculator" class="heading-permalink" aria-hidden="true" title="Permalink"&gt;&lt;/a&gt;🔌 Electricity Bill Calculator&lt;/h3&gt;
&lt;p&gt;&lt;label for="category"&gt;Select consumer category:&lt;/label&gt;
&lt;select id="category"&gt;&lt;/p&gt;
  &lt;option value="protected"&gt;Residential Protected&lt;/option&gt;
  &lt;option value="non_protected"&gt;Residential Non-Protected&lt;/option&gt;
  &lt;option value="commercial"&gt;Commercial&lt;/option&gt;
  &lt;option value="industrial"&gt;Industrial&lt;/option&gt;
  &lt;option value="bulk"&gt;Bulk&lt;/option&gt;
  &lt;option value="agriculture"&gt;Agriculture&lt;/option&gt;
&lt;/select&gt;
&lt;p&gt;&lt;label for="units"&gt;Enter number of units:&lt;/label&gt;
&lt;input type="number" id="units" min="0" placeholder="e.g., 250" /&gt;&lt;/p&gt;
&lt;br&gt;
&lt;button id="calculate" style="background-color: #007bff; color: white; border: none; padding: 10px 20px; font-size: 16px; border-radius: 5px; cursor: pointer;"&gt;
  Calculate
&lt;/button&gt;
&lt;div id="output" style="margin-top:20px; font-weight:bold;"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;script src="https://code.jquery.com/jquery-3.6.0.min.js"&gt;&lt;/script&gt;
&lt;script&gt;
const rates = {
  protected: [
    { max: 100, old: 14.67, new: 8.52 },
    { max: 200, old: 17.65, new: 11.51 }
  ],
  non_protected: [
    { max: 300, old: 41.26, new: 34.03 },
    { max: Infinity, old: 55.70, new: 48.46 }
  ],
  commercial: [{ max: Infinity, old: 71.06, new: 62.47 }],
  industrial: [{ max: Infinity, old: 48.19, new: 40.51 }],
  bulk: [{ max: Infinity, old: 55.05, new: 47.87 }],
  agriculture: [{ max: Infinity, old: 41.76, new: 34.58 }]
};

$('#calculate').click(function () {
  const category = $('#category').val();
  const units = parseFloat($('#units').val());

  if (isNaN(units) || units &lt;= 0) {
    $('#output').html("Please enter a valid number of units.");
    return;
  }

  let selectedRate = rates[category].find(r =&gt; units &lt;= r.max);

  if (!selectedRate) {
    $('#output').html("No applicable slab found for this category and unit range.");
    return;
  }

  const oldBill = selectedRate.old * units;
  const newBill = selectedRate.new * units;
  const savings = oldBill - newBill;

  $('#output').html(`
    Old bill: Rs. ${oldBill.toFixed(2)}&lt;br&gt;
    New bill: Rs. ${newBill.toFixed(2)}&lt;br&gt;
    Savings: Rs. ${savings.toFixed(2)}
  `);
});
&lt;/script&gt;
</description>
      <content:encoded xmlns="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>The federal government in Pakistan recently announced a significant price reduction of around Rs7.5 per unit or kilowatt hours in electricity prices. This will cut your energy bill by thousands of rupees if not more.</p>
<p>Use the calculator below to estimate your current and new bills. This is a tentative estimate and your final bill may vary as power distribution companies often include monthly and quarterly adjustment charge in their bills.</p>
<!-- Electricity Bill Calculator -->
<div style="background:#f9f9f9; padding:20px; border-radius:10px; max-width:600px; margin:auto;">
<h3><a id="-electricity-bill-calculator" href="#-electricity-bill-calculator" class="heading-permalink" aria-hidden="true" title="Permalink"></a>🔌 Electricity Bill Calculator</h3>
<p><label for="category">Select consumer category:</label>
<select id="category"></p>
  <option value="protected">Residential Protected</option>
  <option value="non_protected">Residential Non-Protected</option>
  <option value="commercial">Commercial</option>
  <option value="industrial">Industrial</option>
  <option value="bulk">Bulk</option>
  <option value="agriculture">Agriculture</option>
</select>
<p><label for="units">Enter number of units:</label>
<input type="number" id="units" min="0" placeholder="e.g., 250" /></p>
<br>
<button id="calculate" style="background-color: #007bff; color: white; border: none; padding: 10px 20px; font-size: 16px; border-radius: 5px; cursor: pointer;">
  Calculate
</button>
<div id="output" style="margin-top:20px; font-weight:bold;"></div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
const rates = {
  protected: [
    { max: 100, old: 14.67, new: 8.52 },
    { max: 200, old: 17.65, new: 11.51 }
  ],
  non_protected: [
    { max: 300, old: 41.26, new: 34.03 },
    { max: Infinity, old: 55.70, new: 48.46 }
  ],
  commercial: [{ max: Infinity, old: 71.06, new: 62.47 }],
  industrial: [{ max: Infinity, old: 48.19, new: 40.51 }],
  bulk: [{ max: Infinity, old: 55.05, new: 47.87 }],
  agriculture: [{ max: Infinity, old: 41.76, new: 34.58 }]
};

$('#calculate').click(function () {
  const category = $('#category').val();
  const units = parseFloat($('#units').val());

  if (isNaN(units) || units <= 0) {
    $('#output').html("Please enter a valid number of units.");
    return;
  }

  let selectedRate = rates[category].find(r => units <= r.max);

  if (!selectedRate) {
    $('#output').html("No applicable slab found for this category and unit range.");
    return;
  }

  const oldBill = selectedRate.old * units;
  const newBill = selectedRate.new * units;
  const savings = oldBill - newBill;

  $('#output').html(`
    Old bill: Rs. ${oldBill.toFixed(2)}<br>
    New bill: Rs. ${newBill.toFixed(2)}<br>
    Savings: Rs. ${savings.toFixed(2)}
  `);
});
</script>
]]></content:encoded>
      <category>Business &amp; Economy</category>
      <guid>https://english.aaj.tv/news/330410028</guid>
      <pubDate>Fri, 04 Apr 2025 15:37:59 +0500</pubDate>
      <author>none@none.com (Web Desk)</author>
      <media:content url="https://i.aaj.tv/large/2025/04/041550277bf876a.png?r=155050" type="image/png" medium="image" height="1024" width="1536">
        <media:thumbnail url="https://i.aaj.tv/thumbnail/2025/04/041550277bf876a.png?r=155050"/>
        <media:title>Representational image.
</media:title>
      </media:content>
      <media:content url="https://i.aaj.tv/large/2025/04/04153725d42f676.webp?r=155050" type="image/webp" medium="image" height="720" width="1200">
        <media:thumbnail url="https://i.aaj.tv/thumbnail/2025/04/04153725d42f676.webp?r=155050"/>
        <media:title>Representational image. AI Generated
</media:title>
      </media:content>
    </item>
  </channel>
</rss>
