Study of Digital Multimeter using webpage


Digital Mutimeter:
A digital multimeter (DMM) is an electronic instrument used to measure several electrical propertiessuch as voltage (volts), current (amps), and resistance (ohms). 
An essential tool for electronics technicians, engineers, hobbyists, and electricians alike, a multimeter is a versatile instrument crucial for troubleshooting, maintenance, and testing electrical systems. With its ability to measure multiple electrical parameters, a multimeter serves as a cornerstone in diagnosing faults, ensuring safety, and verifying functionality in various electronic devices and circuits.One of the primary functions of a multimeter is to measure voltage, allowing users to determine the electrical potential difference between two points in a circuit. This capability is indispensable for assessing the health of power sources, identifying faulty components, and ensuring proper voltage levels in various electrical systems
Read More 

Images of Digital Multimeter


   
Invention of Digital Multimeter 
The first device that could be considered a predecessor to the multimeter showed up in 1820. It was a moving-pointer current-detecting device, called a galvanometer. 
Designed only to detect electrical current and could make a compass needle move, the galvanometer was useful in the lab, but very bulky and delicate, so impractical for fieldwork. 
Donald MacadieIn 1920, a British Post Office engineer, Donald Macadie, is credited with inventing the very first multimeter. 
The story goes that he was frustratedthat he needed to carry a bunch of different tools when working on telecom lines, so he createdone tool that could measure amperes, volts, and ohms.
How to use a digital multimeter 
Modern digital multimeters are highly versatile and can make multiple types of measurements and provide graphical output displays, such as trends and statistical charts. 
DMMs are programmable and can communicate with external computers for post-analysis work. 
Notably, they pack a lot of functions into a small benchtop box, typically no bigger than the size of a book. 
Portable handheld DMMs are evensmaller, lighter, and are battery-operated. 
Types of Digital Multimeter 
1.Fluke Digital Multimeter 
2.Clamp Digital Multimeter 
3.Autoranging Multimeter 
Advantages of Digital Multimeter: 
(1)The measurements can be stored and transferred onto another device like a PC. 
(2)Auto polarity functions are included. 
(3)The accuracy is high. 
(4)The range can be selected manually or automatically. 
(5)It provides multifunctionality. 
Disadvantages of Digital Multimeter 
(1)The digital multimeter is expensive. 
(2) If any malfunction occurs in the multimeter itself, it is difficult to diagnose. 
Applications of a Digital Multimeter 
It can be used for testing voltage. We can measure the voltage across the circuit and voltage drop if any. 
It can be used for testing current. The mA scale is useful for that. 
It is used for testing resistance. There is a built-in power source that gets activated when the resistance scale is selected. It is also used for continuity testing. 
Related video   
 

HTML Online Editor & Compiler

Write, Run & Share HTML code online using OneCompiler's HTML online Code editor for free. It's one of the robust, feature-rich online Code editor for HTML language, running on the latest version HTML5. Getting started with the OneCompiler's HTML compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as HTML. You can also specify the stylesheet information in styles.css tab and scripts information in scripts.js tab and start coding.

About HTML

HTML(Hyper Text Markup language) is the standard markup language for Web pages, was created by Berners-Lee in the year 1991. Almost every web page over internet might be using HTML.

Syntax help

Fundamentals

  • Any HTML document must start with document declaration <!DOCTYPE html>
  • HTML documents begin with <html> and ends with </html>
  • Headings are defined with <h1> to <h6> where <h1> is the highest important heading and <h6> is the least important sub-heading.
  • Paragrahs are defined in <p>..</p> tag.
  • Links are defined in <a> tag.

    Example:

    <a href="https://onecompiler.com/html">HTML online compiler</a>
    
  • Images are defined in <img> tag, where src attribute consists of image name.
  • Buttons are defined in <button>..</button> tag
  • Lists are defined in <ul> for unordered/bullet list and <ol> for ordered/number list, and the list items are defined in <li>.

HTML Elements and Attributes

  • HTML element is everything present from start tag to end tag.
  • The text present between start and end tag is called HTML element content.
  • Anything can be a tagname but it's preferred to put the meaningful title to the content present as tag name.
  • Do not forget the end tag.
  • Elements with no content are called empty elements.
  • Elements can have attributes which provides additional information about the element.
  • In the below example, href is an attribute and a is the tag name.

    Example:

    <a href="https://onecompiler.com/html">HTML online compiler</a>
    

CSS

CSS(cascading style sheets) describes how HTML elements will look on the web page like color, font-style, font-size, background color etc.

Example:

Below is a sample style sheet which displays heading in green and in Candara font with padding space of 25px.

body{
  padding: 25px;
}
.title {
	color: #228B22;
	font-family: Candara;
}

HTML Tables

  • HTML Tables are defined in <table> tag.
  • Table row should be defined in <tr> tag
  • Table header should be defined in <th> tag
  • Table data should be defined in <td> tag
  • Table caption should be defined in <caption> tag

HTML-Javascript

  • Javascript is used in HTML pages to make them more interactive.
  • <script> is the tag used to write scripts in HTML
  • You can either reference a external script or write script code in this tag.

Example

<script src="script.js"></script>