Seven SI Base Units of Measurement-Explanations, MCQs, FAQs & worksheets, CBSE Class 11

⭐⭐⭐⭐ (4/5 from 476 reviews)

Introduction

Prepare for JEE, NEET, and CBSE Board Class 11 exams with our comprehensive study material, including FAQs, MCQs, explanations, and worksheets. Get high-quality learning resources at Anand Technical Publishers.


The Seven Base Units of Measurement

1. Length – Metre (m)

  • Defined as the length of the path traveled by light in a vacuum in exactly 1/299,792,458 seconds.
  • Based on the fundamental speed of light, c = 299,792,458 m/s.

2. Time – Second (s)

  • Defined by 9,192,631,770 periods of oscillations of light emitted by a caesium-133 atom.
  • Determined using highly precise atomic clocks.

3. Mass – Kilogram (kg)

  • Defined by a prototype platinum-iridium cylinder kept at the International Bureau of Weights and Measures in Paris.
  • The mass of a cylinder made of platinum-iridium alloy kept at International Bureau of Weights and Measures is defined as 1 kg.
  • On atomic scale, 1 kilogram is equivalent to the mass of 5.0188 × 1025 atoms of 6C12 (an isotope of carbon).
  • Standardized worldwide for accurate weight measurement.

4. Electric Current – Ampere (A)

  • Defined as the constant current that produces a force of 2 × 10⁻⁷ newton per metre between two parallel conductors 1 metre apart in a vacuum.
  • Chosen because measuring current is more practical than measuring charge.

5. Temperature – Kelvin (K)

  • Defined as 1/273.16 of the thermodynamic temperature of the triple point of water.
  • The triple point of water is where solid, liquid, and gas states coexist.

6. Amount of Substance – Mole (mol)

  • Defined as the amount of substance that contains as many entities as 0.012 kg of carbon-12.
  • A mole contains Avogadro’s number of particles.

7. Luminous Intensity – Candela (cd)

  • Defined as the luminous intensity of a source emitting radiation at 540 × 10¹² Hz.
  • With a radiant intensity of 1/683 watt per steradian in a given direction.

FAQs on SI Base Units

Q1: Why is the speed of light used to define a metre? A1: The speed of light is a universal constant, making it a highly precise standard for defining length.

Q2: What is the significance of the second being based on caesium-133? A2: The oscillations of caesium-133 provide an extremely stable and accurate measure of time.

Q3: Why is electric current measured in amperes instead of charge? A3: Measuring current is easier and more practical than directly measuring charge.

MCQs on SI Base Units

Q1: What is the base unit of luminous intensity?

  • (A) Watt
  • (B) Joule
  • (C) Candela
  • (D) Ampere
    Answer: (C) Candela
    Explanation: Candela (cd) is the SI unit of luminous intensity.

Q2: The Kelvin scale is based on which fundamental physical concept?

  • (A) Boiling point of water
  • (B) Triple point of water
  • (C) Freezing point of mercury
  • (D) Average kinetic energy of particles
    Answer: (B) Triple point of water
    Explanation: The Kelvin scale is defined using the triple point of water.

Test Your Knowledge

SI Base Units Quiz body { margin: 0; padding: 0; font-family: Arial, sans-serif; background-color: #f4f4f4; } .quiz-container { width: 60%; margin: 20px auto; background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .question { font-size: 18px; margin-bottom: 10px; } .options label { display: block; margin: 5px 0; } .result { margin-top: 20px; font-weight: bold; } .correct { color: green; } .wrong { color: red; }

SI Base Units Quiz

const quizData = [ { question: “What is the SI base unit for length?”, options: [“Kilogram”, “Metre”, “Second”, “Ampere”], answer: 1, explanation: “Metre (m) is the SI base unit for length.” }, { question: “How is a second defined in SI units?”, options: [“Using the Earth’s rotation”, “By an atomic clock based on caesium-133”, “Using a pendulum”, “As 1/1000th of a day”], answer: 1, explanation: “A second is defined using the oscillations of the caesium-133 atom.” }, { question: “What is the SI base unit for mass?”, options: [“Gram”, “Kilogram”, “Tonne”, “Pound”], answer: 1, explanation: “Kilogram (kg) is the SI base unit for mass.” }, { question: “What is the SI base unit for electric current?”, options: [“Volt”, “Coulomb”, “Ampere”, “Ohm”], answer: 2, explanation: “Ampere (A) is the SI base unit for electric current.” }, { question: “How is Kelvin defined in SI units?”, options: [“As the boiling point of water”, “As the triple point of water”, “As the freezing point of mercury”, “As absolute zero”], answer: 1, explanation: “Kelvin is defined using the triple point of water.” }, { question: “What is Avogadro’s number used to define?”, options: [“Metre”, “Kelvin”, “Mole”, “Candela”], answer: 2, explanation: “Mole (mol) is defined using Avogadro’s number.” }, { question: “What is the SI unit for luminous intensity?”, options: [“Watt”, “Candela”, “Lumen”, “Lux”], answer: 1, explanation: “Candela (cd) is the SI base unit for luminous intensity.” }, { question: “Which of these is NOT an SI base unit?”, options: [“Kelvin”, “Newton”, “Mole”, “Ampere”], answer: 1, explanation: “Newton is a derived unit, not a base unit.” }, { question: “Which physical constant is used to define the metre?”, options: [“Speed of sound”, “Speed of light”, “Planck’s constant”, “Gravitational constant”], answer: 1, explanation: “The metre is defined based on the speed of light in a vacuum.” }, { question: “What is the SI unit for time?”, options: [“Hour”, “Minute”, “Second”, “Day”], answer: 2, explanation: “Second (s) is the SI base unit for time.” } ];function loadQuiz() { const quizContainer = document.getElementById(“quiz”); quizData.forEach((q, index) => { let optionsHtml = “”; q.options.forEach((option, i) => { optionsHtml += ``; }); quizContainer.innerHTML += `
Q${index + 1}: ${q.question}
${optionsHtml}

`; }); }function submitQuiz() { let score = 0; let resultHtml = “

Results:

“; quizData.forEach((q, index) => { const selected = document.querySelector(`input[name=’q${index}’]:checked`); if (selected) { const answerIndex = parseInt(selected.value); if (answerIndex === q.answer) { score++; resultHtml += `

Q${index + 1}: Correct! ${q.explanation}

`; } else { resultHtml += `

Q${index + 1}: Wrong! ${q.explanation}

`; } } else { resultHtml += `

Q${index + 1}: No answer selected! ${q.explanation}

`; } }); resultHtml += `

Score: ${score}/${quizData.length}

`; document.getElementById(“result”).innerHTML = resultHtml; } loadQuiz();

Worksheet on SI Base Units

  1. Define the following SI base units:
    • (a) Metre
    • (b) Second
    • (c) Kilogram
  2. Convert the following measurements:
    • (a) 5 kilograms to grams
    • (b) 2 moles to number of entities (use Avogadro’s number)
    • (c) 300 Kelvin to Celsius
  3. Fill in the blanks:
    • (a) The SI unit of electric current is ___.
    • (b) 1 mole contains ___ atoms/molecules.
    • (c) The SI unit of time is ___.

For comprehensive study materials, worksheets, and practice questions for JEE, NEET, and CBSE Board Class 11 exams, visit Anand Technical Publishers.


Proprietor: NIRMAL ANAND Educations
Written by: Neeraj Anand
Published by: Anand Technical Publishers
Contact: +91-9463138669
Email: anandclasses1996@gmail.com

⬅️ Practical Units of Length, Mass, Time-JEE, NEET, Class 11 Physics | Explanations, FAQs, MCQs, Worksheets SI (Metric) Prefixes Class 11 CBSE-Questions, Answers, MCQs, FAQs & Worksheet ➡️

RELATED TOPICS