CGS, MKS, SI-System of Units | Questions, Answers, MCQs, FAQs & Worksheet | JEE, NEET, CBSE Board Class 11 Exams

⭐⭐⭐✩ (3.8/5 from 276 reviews)

Complete Study Material for JEE, NEET, CBSE Board Class 11 Exams

What is a System of Units?

A: A system of units is a complete set of fundamental and derived units used to measure all physical quantities. Different systems have been developed based on fundamental quantities.

Types of Systems of Units

1. CGS System (Gaussian System)

  • Fundamental Quantities: Length, Mass, Time
  • Fundamental Units: Centimetre (cm), Gram (g), Second (s)

2. MKS System (Giorgi System)

  • Fundamental Quantities: Length, Mass, Time
  • Fundamental Units: Metre (m), Kilogram (kg), Second (s)

3. FPS System

  • Fundamental Quantities: Length, Mass, Time
  • Fundamental Units: Foot (ft), Pound (lb), Second (s)
  • In this system, force is a derived quantity with the unit poundal.

4. SI System (International System of Units)

  • The most widely used system, applicable to all branches of physics.
  • It includes seven fundamental quantities and their corresponding units:
QuantityName of UnitSymbol
LengthMetrem
MassKilogramkg
TimeSeconds
Electric CurrentAmpereA
TemperatureKelvinK
Amount of SubstanceMolemol
Luminous IntensityCandelacd
  • Additionally, two supplementary units are defined:
    • Radian (rad) for plane angle
    • Steradian (sr) for solid angle

Practical Units in Measurement

  • Practical units are frequently used fundamental or derived units that may not always belong to a standard system but can be converted into standard units.
  • Examples:
    • Light year (practical fundamental unit) → Distance measurement
    • Horsepower (practical derived unit) → Power measurement
    • 1 mile = 1.6 km = 1.6 × 10³ m

Multiple Choice Questions (MCQs) with Answers & Explanations

Q1: Which system of units uses centimetre, gram, and second as fundamental units?

A) MKS
B) SI
C) CGS
D) FPS

Answer: C) CGS
Explanation: The CGS system is also called the Gaussian system and uses cm, g, and s as fundamental units.

Q2: The SI unit of luminous intensity is:

A) Radian
B) Steradian
C) Candela
D) Mole

Answer: C) Candela
Explanation: Candela (cd) is the SI unit of luminous intensity.

Q3: Which system of units is also called the Giorgi system?

A) SI
B) CGS
C) FPS
D) MKS

Answer: D) MKS
Explanation: The MKS system, also known as the Giorgi system, uses metre, kilogram, and second as fundamental units.

Q4: How many fundamental quantities are there in the SI system?

A) 5
B) 6
C) 7
D) 8

Answer: C) 7
Explanation: The SI system defines seven fundamental quantities.

Q5: The practical unit of power is:

A) Newton
B) Joule
C) Horsepower
D) Watt

Answer: C) Horsepower
Explanation: Horsepower is a practical derived unit of power, commonly used for engine performance.


Worksheet on System of Units

Q1: Define a system of units and list the different systems used in physics.
Q2: What is the difference between the CGS and MKS systems?
Q3: How is force treated as a derived quantity in the FPS system?
Q4: Convert the following units:

  • 1 mile to metres
  • 5 light years to kilometres
  • 10 horsepower to watts

Frequently Asked Questions (FAQs)

Q1: Why is the SI system preferred over other systems?

A: The SI system is internationally recognized, standardized, and universally accepted across all scientific disciplines.

Q2: What is the unit of solid angle in the SI system?

A: The unit of solid angle is Steradian (sr).

Q3: Can practical units be converted into SI units?

A: Yes, practical units can be expressed in terms of SI units. Example: 1 horsepower = 746 watts.

Q4: Why are supplementary units like Radian and Steradian used?

A: They are necessary for measuring angles in physics, which cannot be directly defined using fundamental quantities.


Test Your Knowledge

System of 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: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .question { font-size: 18px; font-weight: bold; } .options label { display: block; padding: 8px; background: #e0e0e0; margin: 5px 0; cursor: pointer; border-radius: 5px; } .options input { display: none; } .btn { margin-top: 10px; padding: 10px 20px; background: #28a745; color: white; border: none; cursor: pointer; font-size: 16px; border-radius: 5px; } .result { margin-top: 20px; font-size: 18px; font-weight: bold; } .correct { background: #d4edda; } .wrong { background: #f8d7da; }
const quizData = [ { question: “Which system of units is also called the Gaussian system?”, options: [“MKS”, “SI”, “CGS”, “FPS”], correct: 2, explanation: “The CGS system is also known as the Gaussian system, using cm, g, and s as fundamental units.” }, { question: “How many fundamental quantities are there in the SI system?”, options: [“5”, “6”, “7”, “8”], correct: 2, explanation: “The SI system defines seven fundamental quantities.” }, { question: “The SI unit of luminous intensity is:”, options: [“Radian”, “Steradian”, “Candela”, “Mole”], correct: 2, explanation: “Candela (cd) is the SI unit of luminous intensity.” }, { question: “Which unit is used for solid angles in the SI system?”, options: [“Degree”, “Radian”, “Steradian”, “Hertz”], correct: 2, explanation: “The unit of solid angle in the SI system is Steradian (sr).” }, { question: “The FPS system uses which unit for mass?”, options: [“Gram”, “Kilogram”, “Pound”, “Ounce”], correct: 2, explanation: “The FPS system uses Pound (lb) as the unit of mass.” } ]; function loadQuiz() { const quizContainer = document.getElementById(“quiz”); quizContainer.innerHTML = “”; quizData.forEach((q, index) => { quizContainer.innerHTML += `
${index + 1}. ${q.question}
${q.options.map((opt, i) => ``).join(”)}
`; }); } function submitQuiz() { let score = 0; quizData.forEach((q, index) => { const selected = document.querySelector(`input[name=’q${index}’]:checked`); if (selected) { const selectedValue = parseInt(selected.value); const optionsContainer = selected.closest(‘.options’); optionsContainer.childNodes.forEach((label, i) => { if (i === q.correct) { label.classList.add(‘correct’); } else if (i === selectedValue) { label.classList.add(‘wrong’); } }); if (selectedValue === q.correct) { score++; } } }); document.getElementById(“result”).innerHTML = `You scored ${score} out of ${quizData.length}`; } loadQuiz();

Buy Complete Study Material

Get a comprehensive study guide for JEE, NEET, and CBSE Board Class 11 Exams, including detailed notes, MCQs, worksheets, and explanations at Anand Technical Publishers.


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

⬅️ SI (Metric) Prefixes Class 11 CBSE-Questions, Answers, MCQs, FAQs & Worksheet Types of Errors in Measurement | Gross Errors | Random Errors | Systematic Errors | Removal Techniques ➡️

📚 Buy Study Material & Join Our Coaching

For premium study materials specially designed for NDA Exam, visit our official study material portal:
👉 https://publishers.anandclasses.co.in/

For JEE/NEET Notes : Visit https://anandclasses.in/

To enroll in our offline or online coaching programs, visit our coaching center website:
👉 https://anandclasses.co.in/

📞 Call us directly at: +91-94631-38669

💬 WhatsApp Us Instantly

Need quick assistance or want to inquire about classes and materials?

📲 Click below to chat instantly on WhatsApp:
👉 Chat on WhatsApp

🎥 Watch Video Lectures

Get access to high-quality video lessons, concept explainers, and revision tips by subscribing to our official YouTube channel:
👉 Neeraj Anand Classes – YouTube Channel

RELATED TOPICS