<?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: ihsaan muhammed</title>
    <description>The latest articles on DEV Community by ihsaan muhammed (@ihsaan_muhammed_18).</description>
    <link>https://dev.to/ihsaan_muhammed_18</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%2F4018943%2Ff6b00677-d12c-4bc1-8aff-2fd60d902cc8.jpg</url>
      <title>DEV Community: ihsaan muhammed</title>
      <link>https://dev.to/ihsaan_muhammed_18</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ihsaan_muhammed_18"/>
    <language>en</language>
    <item>
      <title>JVM</title>
      <dc:creator>ihsaan muhammed</dc:creator>
      <pubDate>Sat, 18 Jul 2026 14:06:03 +0000</pubDate>
      <link>https://dev.to/ihsaan_muhammed_18/jvm-3p7e</link>
      <guid>https://dev.to/ihsaan_muhammed_18/jvm-3p7e</guid>
      <description>&lt;p&gt;The &lt;strong&gt;Java Virtual Machine&lt;/strong&gt; (JVM) is a software-based engine that executes Java programs. It allows Java applications to run on any operating system without modification, making Java platform-independent through the principle of "Write Once, Run Anywhere (WORA)."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;STEP -- 1&lt;/strong&gt;&lt;br&gt;
Write Java Code&lt;/p&gt;

&lt;p&gt;Source code is written in a .&lt;strong&gt;java file.&lt;/strong&gt;&lt;br&gt;
**&lt;br&gt;
STEP -- 2**&lt;br&gt;
Compile&lt;/p&gt;

&lt;p&gt;The Java compiler (javac) converts the source code into bytecode (.class files).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;STEP -- 3&lt;/strong&gt;&lt;br&gt;
Execute&lt;/p&gt;

&lt;p&gt;The JVM loads the bytecode, verifies it, and executes it by translating it into machine code for the host operating system.&lt;/p&gt;

&lt;p&gt;Advantages of the &lt;strong&gt;JVM&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;1) Platform independence&lt;br&gt;
2) Automatic memory management (Garbage Collection)&lt;br&gt;
3) Security through bytecode verification&lt;br&gt;
4) Performance optimization with the JIT compiler&lt;br&gt;
5) Multithreading support&lt;/p&gt;

</description>
      <category>jvm</category>
      <category>backend</category>
      <category>devops</category>
    </item>
    <item>
      <title>HTML ATTRIBUTES</title>
      <dc:creator>ihsaan muhammed</dc:creator>
      <pubDate>Wed, 15 Jul 2026 15:15:49 +0000</pubDate>
      <link>https://dev.to/ihsaan_muhammed_18/html-attributes-3m9g</link>
      <guid>https://dev.to/ihsaan_muhammed_18/html-attributes-3m9g</guid>
      <description>&lt;p&gt;OUTLINE OF HTML ATTRIBUTES&lt;/p&gt;

&lt;p&gt;HTML attributes are special properties that provide additional information about HTML elements and define how they behave or appear on a web page. They are placed inside the opening tag of an HTML element and are written as &lt;strong&gt;name="value"&lt;/strong&gt; pairs. Attributes help developers create interactive, accessible, and well-structured web pages. Common attributes include &lt;code&gt;href&lt;/code&gt; for hyperlinks, &lt;code&gt;src&lt;/code&gt; for images, &lt;code&gt;alt&lt;/code&gt; for alternative image text, &lt;code&gt;id&lt;/code&gt; for uniquely identifying elements, and &lt;code&gt;class&lt;/code&gt; for grouping elements for CSS styling. Other useful attributes such as &lt;code&gt;title&lt;/code&gt;, &lt;code&gt;style&lt;/code&gt;, &lt;code&gt;placeholder&lt;/code&gt;, &lt;code&gt;required&lt;/code&gt;, &lt;code&gt;disabled&lt;/code&gt;, &lt;code&gt;width&lt;/code&gt;, &lt;code&gt;height&lt;/code&gt;, and &lt;code&gt;target&lt;/code&gt; enhance the functionality and presentation of web content. HTML also provides global attributes like &lt;code&gt;lang&lt;/code&gt; and &lt;code&gt;data-*&lt;/code&gt;, which can be used with most HTML elements. Proper use of HTML attributes improves website usability, accessibility, search engine optimization (SEO), and overall user experience, making them an essential part of modern web development.&lt;/p&gt;

&lt;p&gt;SOME MAJOR TAGS ARE LISTED BELOW&lt;/p&gt;

&lt;p&gt;1) href --&amp;gt; used to specify a hyperlink or a URL&lt;br&gt;
2) alt --&amp;gt; Provides alternative text for an image if it cannot be displayed. It also improves accessibility for screen readers.&lt;br&gt;
3)class --&amp;gt; Groups one or more HTML elements under a common name for applying CSS styles or JavaScript functionality.&lt;br&gt;
4) title --&amp;gt; Displays additional information as a tooltip when the user hovers over an element.&lt;br&gt;
5)lang --&amp;gt; Specifies the language of the content in an HTML element, helping browsers and search engines understand the text&lt;br&gt;
6)style --&amp;gt; Applies inline CSS styles directly to an HTML element.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>BLACK BOX TESTING</title>
      <dc:creator>ihsaan muhammed</dc:creator>
      <pubDate>Tue, 14 Jul 2026 15:04:12 +0000</pubDate>
      <link>https://dev.to/ihsaan_muhammed_18/black-box-testing-50ge</link>
      <guid>https://dev.to/ihsaan_muhammed_18/black-box-testing-50ge</guid>
      <description>&lt;h1&gt;
  
  
  Black Box: The Mystery Behind Hidden Systems
&lt;/h1&gt;

&lt;p&gt;A &lt;strong&gt;black box&lt;/strong&gt; is a system or device whose internal workings are unknown or not visible to the user. People can observe the inputs given to the system and the outputs it produces, but the process that happens inside remains hidden. Black boxes are used in many fields, including aviation, artificial intelligence, electronics, and software engineering. In aircraft, the flight data recorder, commonly called the black box, stores important flight information that helps investigators determine the cause of accidents. In artificial intelligence, some machine learning models are also called black boxes because they make decisions without clearly explaining how they arrived at them. While black-box systems are often powerful and efficient, they can raise concerns about transparency, trust, and accountability. Understanding and improving the explainability of black-box systems is becoming increasingly important as technology continues to play a larger role in everyday life.&lt;/p&gt;

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