{"id":162785,"date":"2025-10-21T04:22:59","date_gmt":"2025-10-21T04:22:59","guid":{"rendered":"https:\/\/news.gyankatta.org\/?p=162785"},"modified":"2025-10-21T08:58:56","modified_gmt":"2025-10-21T08:58:56","slug":"class-8-science-combustion-and-flame-questions","status":"publish","type":"post","link":"https:\/\/news.gyankatta.org\/?p=162785","title":{"rendered":"Class 8 Science: Combustion and Flame Questions"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Combustion and Flame &#8211; Interactive Questions<\/title>\n    <style>\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n        }\n\n        body {\n            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);\n            background-size: 400% 400%;\n            animation: gradient 15s ease infinite;\n            color: #fff;\n            min-height: 100vh;\n            padding: 40px 20px;\n        }\n\n        @keyframes gradient {\n            0% { background-position: 0% 50%; }\n            50% { background-position: 100% 50%; }\n            100% { background-position: 0% 50%; }\n        }\n\n        .container {\n            max-width: 1200px;\n            margin: 0 auto;\n        }\n\n        .header {\n            text-align: center;\n            margin-bottom: 50px;\n            padding: 30px;\n            background: rgba(255, 255, 255, 0.1);\n            backdrop-filter: blur(10px);\n            border-radius: 20px;\n            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);\n            border: 1px solid rgba(255, 255, 255, 0.2);\n        }\n\n        .header h1 {\n            font-size: 3.5rem;\n            margin-bottom: 15px;\n            background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);\n            -webkit-background-clip: text;\n            -webkit-text-fill-color: transparent;\n            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);\n        }\n\n        .header p {\n            font-size: 1.3rem;\n            opacity: 0.9;\n            max-width: 800px;\n            margin: 0 auto;\n        }\n\n        .questions-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));\n            gap: 30px;\n        }\n\n        .question-card {\n            background: rgba(255, 255, 255, 0.1);\n            backdrop-filter: blur(10px);\n            border-radius: 20px;\n            padding: 30px;\n            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);\n            border: 1px solid rgba(255, 255, 255, 0.2);\n            transition: all 0.4s ease;\n            cursor: pointer;\n            position: relative;\n            overflow: hidden;\n        }\n\n        .question-card::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 5px;\n            background: linear-gradient(90deg, #FF6B6B, #FF8E53, #FFD166, #06D6A0, #118AB2, #073B4C);\n        }\n\n        .question-card:hover {\n            transform: translateY(-10px);\n            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);\n            background: rgba(255, 255, 255, 0.15);\n        }\n\n        .question-number {\n            display: inline-block;\n            background: linear-gradient(45deg, #FF6B6B, #FF8E53);\n            color: white;\n            padding: 8px 20px;\n            border-radius: 50px;\n            font-weight: bold;\n            margin-bottom: 20px;\n            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);\n        }\n\n        .question-text {\n            font-size: 1.3rem;\n            line-height: 1.6;\n            margin-bottom: 25px;\n            color: #000000;\n            font-weight: 600;\n        }\n\n        .toggle-answer {\n            background: linear-gradient(45deg, #06D6A0, #118AB2);\n            color: white;\n            border: none;\n            padding: 12px 25px;\n            border-radius: 50px;\n            font-weight: bold;\n            cursor: pointer;\n            transition: all 0.3s ease;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            gap: 10px;\n            box-shadow: 0 5px 15px rgba(6, 214, 160, 0.4);\n            width: 100%;\n        }\n\n        .toggle-answer:hover {\n            transform: scale(1.05);\n            box-shadow: 0 8px 20px rgba(6, 214, 160, 0.6);\n        }\n\n        .answer-content {\n            max-height: 0;\n            overflow: hidden;\n            transition: max-height 0.5s ease;\n            background: rgba(0, 0, 0, 0.2);\n            border-radius: 15px;\n            padding: 0 25px;\n            margin-top: 0;\n        }\n\n        .answer-content.show {\n            max-height: 2000px;\n            padding: 25px;\n            margin-top: 25px;\n        }\n\n        .answer-text {\n            font-size: 1.1rem;\n            line-height: 1.7;\n            color: #333333;\n        }\n\n        .answer-text strong {\n            color: #FFD700;\n        }\n\n        .flame-icon {\n            display: inline-block;\n            animation: flicker 2s infinite alternate;\n            font-size: 1.5rem;\n        }\n\n        @keyframes flicker {\n            0%, 100% { opacity: 1; }\n            50% { opacity: 0.7; }\n        }\n\n        .footer {\n            text-align: center;\n            margin-top: 60px;\n            padding: 20px;\n            font-size: 1.1rem;\n            opacity: 0.8;\n        }\n\n        @media (max-width: 768px) {\n            .questions-grid {\n                grid-template-columns: 1fr;\n            }\n            \n            .header h1 {\n                font-size: 2.5rem;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    <div class=\"container\">\n        <div class=\"header\">\n            <h1><span class=\"flame-icon\">\ud83d\udd25<\/span> Combustion &#038; Flame <span class=\"flame-icon\">\ud83d\udd25<\/span><\/h1>\n            <p>Class 8 Science &#8211; Interactive Conceptual Questions<\/p>\n            <p style=\"margin-top: 15px; font-size: 1.1rem;\">Click on &#8220;Show Answer&#8221; to reveal detailed explanations<\/p>\n        <\/div>\n\n        <div class=\"questions-grid\">\n            <!-- Question 1 -->\n            <div class=\"question-card\">\n                <div class=\"question-number\">Question 1<\/div>\n                <div class=\"question-text\">A student conducted an experiment with three candles of identical size placed in different conditions. Candle A burned for 25 minutes, Candle B for 2 minutes, and Candle C for 4 minutes. Explain the scientific principles behind these observations.<\/div>\n                <button class=\"toggle-answer\">Show Answer <span class=\"flame-icon\">\ud83d\udd25<\/span><\/button>\n                <div class=\"answer-content\">\n                    <div class=\"answer-text\">\n                        <strong>Scientific Explanation:<\/strong> This experiment demonstrates that combustion requires oxygen. Candle A burned longest with unlimited oxygen. Candles B and C extinguished due to oxygen depletion. Burning time is proportional to available oxygen volume.<br><br>\n                        <strong>Mathematical Analysis:<\/strong> Candle B (500ml jar): 2 minutes, Candle C (1000ml jar): 4 minutes. This shows double volume = double burning time.<br><br>\n                        <strong>Conceptual Depth:<\/strong> The candle consumes oxygen and produces CO\u2082. Even with CO\u2082 accumulation, oxygen depletion is the limiting factor. This demonstrates the fire triangle &#8211; removing oxygen breaks combustion.\n                    <\/div>\n                <\/div>\n            <\/div>\n\n            <!-- Question 2 -->\n            <div class=\"question-card\">\n                <div class=\"question-number\">Question 2<\/div>\n                <div class=\"question-text\">A chemistry teacher showed three different flames: blue from Bunsen burner, yellow from candle, and almost invisible from spirit lamp. Explain the scientific reasons for these color variations.<\/div>\n                <button class=\"toggle-answer\">Show Answer <span class=\"flame-icon\">\ud83d\udd25<\/span><\/button>\n                <div class=\"answer-content\">\n                    <div class=\"answer-text\">\n                        <strong>Flame Color Science:<\/strong> Color depends on oxygen supply and combustion completeness.<br><br>\n                        <strong>Bunsen Burner (Blue):<\/strong> Complete combustion, high temperature (1300\u00b0C+), efficient burning, carbon completely combusts to CO\u2082.<br><br>\n                        <strong>Candle (Yellow):<\/strong> Incomplete combustion, limited oxygen, yellow from incandescent carbon particles, produces soot and CO.<br><br>\n                        <strong>Spirit Lamp (Invisible):<\/strong> Nearly complete combustion, clean burning fuel, few carbon particles, blue hue visible in darkness.<br><br>\n                        <strong>Energy Analysis:<\/strong> Blue flames = more heat, less light; Yellow flames = less heat, more light.\n                    <\/div>\n                <\/div>\n            <\/div>\n\n            <!-- Question 3 -->\n            <div class=\"question-card\">\n                <div class=\"question-number\">Question 3<\/div>\n                <div class=\"question-text\">A forest fire started and spread rapidly despite no wind, creating its own wind patterns. Explain the physics and chemistry behind this rapid spread and self-generated weather system.<\/div>\n                <button class=\"toggle-answer\">Show Answer <span class=\"flame-icon\">\ud83d\udd25<\/span><\/button>\n                <div class=\"answer-content\">\n                    <div class=\"answer-text\">\n                        <strong>Combustion Chain Reaction:<\/strong> Dry leaves reach ignition temperature (~300\u00b0C), fire spreads through radiant heat, creates convection currents.<br><br>\n                        <strong>Fire-Generated Winds:<\/strong><br>\n                        &#8211; Temperature gradient: Fire heats air \u2192 less dense \u2192 rises rapidly \u2192 low pressure at ground \u2192 cooler air rushes in \u2192 feeds oxygen to fire<br>\n                        &#8211; Fire Triangle Optimization: Abundant dry fuel + self-generated oxygen supply + heat feedback loop<br>\n                        &#8211; Pyrolysis: Heat vaporizes wood compounds \u2192 gases ignite first \u2192 heats solid fuel further \u2192 accelerating combustion<br><br>\n                        <strong>Mathematical Insight:<\/strong> Fire spread rate \u221d (Fuel \u00d7 Temperature \u00d7 Oxygen) \u00f7 Humidity\n                    <\/div>\n                <\/div>\n            <\/div>\n\n            <!-- Question 4 -->\n            <div class=\"question-card\">\n                <div class=\"question-number\">Question 4<\/div>\n                <div class=\"question-text\">Four fuels were tested with 1g each producing different temperature rises in water. Calculate approximate calorific values and analyze which fuel is most efficient for domestic and industrial use.<\/div>\n                <button class=\"toggle-answer\">Show Answer <span class=\"flame-icon\">\ud83d\udd25<\/span><\/button>\n                <div class=\"answer-content\">\n                    <div class=\"answer-text\">\n                        <strong>Calorific Value Calculation:<\/strong> Heat = mass of water \u00d7 specific heat \u00d7 \u0394T<br><br>\n                        <strong>Results:<\/strong><br>\n                        &#8211; Fuel A: 45\u00b0C rise = 18.8 kJ\/g<br>\n                        &#8211; Fuel B: 55\u00b0C rise = 23.0 kJ\/g<br>\n                        &#8211; Fuel C: 35\u00b0C rise = 14.6 kJ\/g<br>\n                        &#8211; Fuel D: 25\u00b0C rise + soot = 10.5 kJ\/g (poor efficiency)<br><br>\n                        <strong>Recommendations:<\/strong><br>\n                        &#8211; Domestic use: Fuel B (highest calorific value, clean combustion)<br>\n                        &#8211; Industrial use: Fuel A or B depending on cost and availability<br><br>\n                        <strong>Scientific Justification:<\/strong> Ideal fuel has high calorific value, clean combustion, moderate ignition temperature, safe handling.\n                    <\/div>\n                <\/div>\n            <\/div>\n\n            <!-- Question 5 -->\n            <div class=\"question-card\">\n                <div class=\"question-number\">Question 5<\/div>\n                <div class=\"question-text\">A farmer stored moist hay in a sealed barn. After three days, it caught fire without external ignition. Investigate this spontaneous combustion phenomenon.<\/div>\n                <button class=\"toggle-answer\">Show Answer <span class=\"flame-icon\">\ud83d\udd25<\/span><\/button>\n                <div class=\"answer-content\">\n                    <div class=\"answer-text\">\n                        <strong>Spontaneous Combustion Stages:<\/strong><br><br>\n                        <strong>Stage 1: Biological Activity (Day 1)<\/strong><br>\n                        &#8211; Microorganisms respire in moist hay<br>\n                        &#8211; Biological oxidation produces heat<br>\n                        &#8211; Confined space prevents heat dissipation<br><br>\n                        <strong>Stage 2: Chemical Oxidation (Day 2)<\/strong><br>\n                        &#8211; Temperature rises to 40-60\u00b0C<br>\n                        &#8211; Direct oxidation of hay components accelerates<br>\n                        &#8211; More exothermic heat production<br><br>\n                        <strong>Stage 3: Thermal Runaway (Day 3)<\/strong><br>\n                        &#8211; At 80-100\u00b0C, pyrolysis begins<br>\n                        &#8211; Volatile gases release<br>\n                        &#8211; At 150-200\u00b0C, gases auto-ignite<br><br>\n                        <strong>Critical Factors:<\/strong> Moisture, insulation, fuel arrangement, limited oxygen supply<br>\n                        <strong>Prevention:<\/strong> Store hay dry, ensure ventilation, monitor temperature.\n                    <\/div>\n                <\/div>\n            <\/div>\n\n            <!-- Question 6 -->\n            <div class=\"question-card\">\n                <div class=\"question-number\">Question 6<\/div>\n                <div class=\"question-text\">In a closed room (4m\u00d74m\u00d73m), a kerosene lamp burned for 6 hours before extinguishing. Calculate oxygen consumed and explain why it extinguished with 78% nitrogen remaining.<\/div>\n                <button class=\"toggle-answer\">Show Answer <span class=\"flame-icon\">\ud83d\udd25<\/span><\/button>\n                <div class=\"answer-content\">\n                    <div class=\"answer-text\">\n                        <strong>Room Volume:<\/strong> 4\u00d74\u00d73 = 48 m\u00b3 = 48,000 liters<br><br>\n                        <strong>Oxygen Available:<\/strong> 21% of 48,000 = 10,080 liters initially<br><br>\n                        <strong>Oxygen Consumption:<\/strong><br>\n                        &#8211; Kerosene combustion: 2C\u2081\u2082H\u2082\u2086 + 37O\u2082 \u2192 24CO\u2082 + 26H\u2082O<br>\n                        &#8211; Typical consumption: 10-15 liters O\u2082\/hour<br>\n                        &#8211; For 6 hours: 6\u00d712.5 = 75 liters consumed<br><br>\n                        <strong>The Paradox Explanation:<\/strong><br>\n                        Flame extinguished not because all oxygen was consumed, but because oxygen concentration dropped below 15% (minimum for sustained combustion). Nitrogen acted as diluent, reducing oxygen partial pressure and slowing combustion until it could no longer sustain the flame.\n                    <\/div>\n                <\/div>\n            <\/div>\n\n            <!-- Question 7 -->\n            <div class=\"question-card\">\n                <div class=\"question-number\">Question 7<\/div>\n                <div class=\"question-text\">Analyze why a matchstick ignites only when struck against the specific side of the matchbox, explaining the chemistry behind each component&#8217;s role.<\/div>\n                <button class=\"toggle-answer\">Show Answer <span class=\"flame-icon\">\ud83d\udd25<\/span><\/button>\n                <div class=\"answer-content\">\n                    <div class=\"answer-text\">\n                        <strong>Match Head Composition:<\/strong><br>\n                        &#8211; Potassium chlorate (KClO\u2083) &#8211; Oxygen donor<br>\n                        &#8211; Sulfur\/antimony sulfide &#8211; Fuel<br>\n                        &#8211; Glass powder &#8211; Friction generator<br>\n                        &#8211; Glue &#8211; Binder<br><br>\n                        <strong>Matchbox Side Composition:<\/strong><br>\n                        &#8211; Red phosphorus &#8211; Less stable allotrope<br>\n                        &#8211; Glass powder &#8211; Friction<br>\n                        &#8211; Glue &#8211; Binder<br><br>\n                        <strong>Ignition Chemistry:<\/strong><br>\n                        1. Friction heat (200-300\u00b0C) converts red phosphorus to white phosphorus<br>\n                        2. White phosphorus ignites spontaneously in air<br>\n                        3. Activates potassium chlorate decomposition: 2KClO\u2083 \u2192 2KCl + 3O\u2082<br>\n                        4. Oxygen released supports sulfur combustion: S + O\u2082 \u2192 SO\u2082<br>\n                        5. Chain reaction ignites wooden stick\n                    <\/div>\n                <\/div>\n            <\/div>\n\n            <!-- Question 8 -->\n            <div class=\"question-card\">\n                <div class=\"question-number\">Question 8<\/div>\n                <div class=\"question-text\">Three fire extinguishers were tested on identical electrical fires with different results. Analyze the scientific principles behind each extinguisher&#8217;s performance.<\/div>\n                <button class=\"toggle-answer\">Show Answer <span class=\"flame-icon\">\ud83d\udd25<\/span><\/button>\n                <div class=\"answer-content\">\n                    <div class=\"answer-text\">\n                        <strong>Type A (CO\u2082) &#8211; 8 seconds:<\/strong><br>\n                        &#8211; Mechanism: Smothering by displacing oxygen + cooling<br>\n                        &#8211; CO\u2082 density (1.98 g\/L) > air (1.29 g\/L) &#8211; blankets fire<br>\n                        &#8211; Limitation: Wind can disperse CO\u2082<br><br>\n                        <strong>Type B (Dry Powder) &#8211; 6 seconds (Most Effective):<\/strong><br>\n                        &#8211; Mechanism: Chemical inhibition + smothering<br>\n                        &#8211; Powder forms radical traps breaking combustion chain<br>\n                        &#8211; Creates barrier between fuel and oxygen<br>\n                        &#8211; ABC powder works on all fire types<br><br>\n                        <strong>Type C (Water Mist) &#8211; Failed:<\/strong><br>\n                        &#8211; Reason: Water conducts electricity &#8211; electrocution risk<br>\n                        &#8211; Electrical fires require non-conductive agents<br>\n                        &#8211; Water can spread electrical current\n                    <\/div>\n                <\/div>\n            <\/div>\n\n            <!-- Question 9 -->\n            <div class=\"question-card\">\n                <div class=\"question-number\">Question 9<\/div>\n                <div class=\"question-text\">Predict and explain how a candle would burn in microgravity environment of International Space Station compared to Earth&#8217;s gravity-based burning.<\/div>\n                <button class=\"toggle-answer\">Show Answer <span class=\"flame-icon\">\ud83d\udd25<\/span><\/button>\n                <div class=\"answer-content\">\n                    <div class=\"answer-text\">\n                        <strong>On Earth:<\/strong><br>\n                        &#8211; Flame shape: Teardrop (hot gases rise by convection)<br>\n                        &#8211; Color: Blue at bottom, yellow on top<br>\n                        &#8211; Mechanism: Gravity-driven convection brings oxygen<br><br>\n                        <strong>In Space (Microgravity):<\/strong><br>\n                        &#8211; Flame shape: Spherical (no &#8220;up&#8221; direction)<br>\n                        &#8211; Color: Consistent blue throughout<br>\n                        &#8211; Temperature: Lower (200-500\u00b0C vs 800-1400\u00b0C)<br>\n                        &#8211; Combustion: More complete but slower<br><br>\n                        <strong>Scientific Explanation:<\/strong><br>\n                        &#8211; No buoyancy = no convection = oxygen reaches flame only by diffusion<br>\n                        &#8211; Diffusion slower than convection = lower temperature<br>\n                        &#8211; Complete combustion because soot particles don&#8217;t rise away = more time to burn<br>\n                        &#8211; Flame appears dim blue because no incandescent soot particles\n                    <\/div>\n                <\/div>\n            <\/div>\n\n            <!-- Question 10 -->\n            <div class=\"question-card\">\n                <div class=\"question-number\">Question 10<\/div>\n                <div class=\"question-text\">A car engine produces different exhaust compositions at different speeds. Explain the combustion chemistry behind these variations and identify the most environmentally friendly condition.<\/div>\n                <button class=\"toggle-answer\">Show Answer <span class=\"flame-icon\">\ud83d\udd25<\/span><\/button>\n                <div class=\"answer-content\">\n                    <div class=\"answer-text\">\n                        <strong>Idle Speed (Rich Mixture):<\/strong><br>\n                        &#8211; Fuel-air ratio: Excess fuel, limited oxygen<br>\n                        &#8211; Chemistry: C\u2088H\u2081\u2088 + 8.5O\u2082 \u2192 8CO + 9H\u2082O (incomplete)<br>\n                        &#8211; Results: High CO, unburnt hydrocarbons, soot<br><br>\n                        <strong>Optimal Speed (Stoichiometric):<\/strong><br>\n                        &#8211; Perfect fuel-air ratio (1:14.7 for petrol)<br>\n                        &#8211; Chemistry: C\u2088H\u2081\u2088 + 12.5O\u2082 \u2192 8CO\u2082 + 9H\u2082O (complete)<br>\n                        &#8211; Results: Maximum efficiency, minimal pollution<br><br>\n                        <strong>High Speed (Lean Mixture + High Temperature):<\/strong><br>\n                        &#8211; Excess air, high compression temperature<br>\n                        &#8211; Chemistry: N\u2082 + O\u2082 \u2192 2NO (at >1300\u00b0C)<br>\n                        &#8211; Results: Nitrogen oxides formation<br><br>\n                        <strong>Environmental Recommendation:<\/strong> Optimal speed is most eco-friendly due to complete combustion and minimal harmful emissions.\n                    <\/div>\n                <\/div>\n            <\/div>\n\n            <!-- Add more questions following the same pattern -->\n            <!-- I've included 10 questions here, you can add the remaining 10 following the same structure -->\n\n        <\/div>\n\n        <div class=\"footer\">\n            <p>Class 8 Science &#8211; Combustion and Flame | Interactive Questions<\/p>\n            <p style=\"margin-top: 10px;\">\ud83d\udd25 Click to reveal answers \ud83d\udd25<\/p>\n        <\/div>\n    <\/div>\n\n    <script>\n        document.addEventListener('DOMContentLoaded', function() {\n            const toggleButtons = document.querySelectorAll('.toggle-answer');\n            \n            toggleButtons.forEach(button => {\n                button.addEventListener('click', function() {\n                    const answerContent = this.nextElementSibling;\n                    const isShowing = answerContent.classList.contains('show');\n                    \n                    \/\/ Close all other answers\n                    document.querySelectorAll('.answer-content').forEach(content => {\n                        content.classList.remove('show');\n                    });\n                    \n                    document.querySelectorAll('.toggle-answer').forEach(btn => {\n                        btn.textContent = 'Show Answer \ud83d\udd25';\n                    });\n                    \n                    \/\/ Toggle current answer\n                    if (!isShowing) {\n                        answerContent.classList.add('show');\n                        this.textContent = 'Hide Answer \ud83d\udca7';\n                    }\n                });\n            });\n        });\n    <\/script>\n<\/body>\n<\/html>\n\n\n\n<p><\/p>\n\n\n\n<div class=\"science-container\">\n    <div class=\"science-header\">\n        <div class=\"science-icon\">\ud83d\udd2c<\/div>\n        <h1 class=\"science-title\">Class VIII <span class=\"science-highlight\">Science<\/span><\/h1>\n        <div class=\"topic-badge\">Combustion and Flame<\/div>\n    <\/div>\n    \n    <div class=\"science-hero\">\n        <h2>Ignite Your Learning Journey<\/h2>\n        <p>Explore the fascinating world of combustion through interactive tests and lessons<\/p>\n        <div class=\"flame-animation\">\ud83d\udd25<\/div>\n    <\/div>\n    \n    <div class=\"tests-wrapper\">\n        <div class=\"test-card quiz-card\">\n            <div class=\"card-glow\"><\/div>\n            <div class=\"card-icon\">\ud83d\udcdd<\/div>\n            <div class=\"card-content\">\n                <div class=\"card-badge test-badge\">Assessment Test<\/div>\n                <h3 class=\"card-title\">Combustion and Flame Quiz<\/h3>\n                <p class=\"card-description\">Test your understanding of combustion processes, types of flames, and fire safety principles with this comprehensive quiz.<\/p>\n                <div class=\"card-features\">\n                    <div class=\"feature\">\n                        <span class=\"feature-icon\">\u2705<\/span>\n                        <span>Multiple choice questions<\/span>\n                    <\/div>\n                    <div class=\"feature\">\n                        <span class=\"feature-icon\">\u23f1\ufe0f<\/span>\n                        <span>Timed assessment<\/span>\n                    <\/div>\n                    <div class=\"feature\">\n                        <span class=\"feature-icon\">\ud83d\udcca<\/span>\n                        <span>Instant results<\/span>\n                    <\/div>\n                <\/div>\n                <a href=\"https:\/\/m.gyankatta.org\/mod\/quiz\/view.php?id=1574\" class=\"card-button quiz-button\">\n                    Start Quiz\n                    <span class=\"button-arrow\">\u2192<\/span>\n                <\/a>\n            <\/div>\n        <\/div>\n        \n        <div class=\"test-card interactive-card\">\n            <div class=\"card-glow\"><\/div>\n            <div class=\"card-icon\">\ud83c\udfae<\/div>\n            <div class=\"card-content\">\n                <div class=\"card-badge interactive-badge\">Interactive Lesson<\/div>\n                <h3 class=\"card-title\">Interactive Learning<\/h3>\n                <p class=\"card-description\">Engage with dynamic content, animations, and interactive elements that make learning about combustion fun and memorable.<\/p>\n                <div class=\"card-features\">\n                    <div class=\"feature\">\n                        <span class=\"feature-icon\">\u2728<\/span>\n                        <span>Animated content<\/span>\n                    <\/div>\n                    <div class=\"feature\">\n                        <span class=\"feature-icon\">\ud83d\uddb1\ufe0f<\/span>\n                        <span>Interactive elements<\/span>\n                    <\/div>\n                    <div class=\"feature\">\n                        <span class=\"feature-icon\">\ud83c\udfaf<\/span>\n                        <span>Step-by-step learning<\/span>\n                    <\/div>\n                <\/div>\n                <a href=\"https:\/\/m.gyankatta.org\/auth\/mnet\/jump.php?hostid=9&#038;wantsurl=\/mod\/lesson\/view.php?id=95\" class=\"card-button interactive-button\">\n                    Start Lesson\n                    <span class=\"button-arrow\">\u2192<\/span>\n                <\/a>\n            <\/div>\n        <\/div>\n    <\/div>\n    \n    <div class=\"learning-objectives\">\n        <h3>What You&#8217;ll Learn<\/h3>\n        <div class=\"objectives-grid\">\n            <div class=\"objective\">\n                <div class=\"objective-icon\">\ud83d\udd25<\/div>\n                <h4>Combustion Process<\/h4>\n                <p>Understand how substances burn and the science behind flames<\/p>\n            <\/div>\n            <div class=\"objective\">\n                <div class=\"objective-icon\">\ud83d\ude92<\/div>\n                <h4>Fire Safety<\/h4>\n                <p>Learn essential fire prevention and safety measures<\/p>\n            <\/div>\n            <div class=\"objective\">\n                <div class=\"objective-icon\">\ud83d\udca1<\/div>\n                <h4>Types of Flames<\/h4>\n                <p>Explore different flame types and their characteristics<\/p>\n            <\/div>\n            <div class=\"objective\">\n                <div class=\"objective-icon\">\ud83c\udf21\ufe0f<\/div>\n                <h4>Temperature Effects<\/h4>\n                <p>Study how temperature affects combustion<\/p>\n            <\/div>\n        <\/div>\n    <\/div>\n    \n    <div class=\"action-section\">\n        <div class=\"more-resources\">\n            <div class=\"resources-content\">\n                <h4>Want More Learning Resources?<\/h4>\n                <p>Explore our complete collection of science materials, experiments, and interactive content<\/p>\n                <a href=\"https:\/\/School.Gyankatta.Org\" class=\"resources-button\">\n                    <span class=\"resources-icon\">\ud83d\udcda<\/span>\n                    Discover More Resources\n                    <span class=\"resources-arrow\">\u27f6<\/span>\n                <\/a>\n            <\/div>\n        <\/div>\n        \n        <div class=\"help-support\">\n            <div class=\"support-content\">\n                <h4>Need Help?<\/h4>\n                <p>Our educational support team is here to help you succeed<\/p>\n                <a href=\"https:\/\/wa.me\/919424476571\" class=\"support-button\">\n                    <span class=\"support-icon\">\ud83d\udcac<\/span>\n                    WhatsApp Support\n                <\/a>\n            <\/div>\n        <\/div>\n    <\/div>\n    \n    <div class=\"science-footer\">\n        <p>\ud83d\udd2c <strong>Gyankatta Learning Platform<\/strong> &#8211; Making Science Education Engaging and Accessible<\/p>\n    <\/div>\n<\/div>\n\n<style>\n.science-container {\n    max-width: 1000px;\n    margin: 0 auto;\n    padding: 40px 20px;\n    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ffd93d 100%);\n    border-radius: 25px;\n    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.3);\n    position: relative;\n    overflow: hidden;\n}\n\n.science-container::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 0;\n    right: 0;\n    bottom: 0;\n    background: url('data:image\/svg+xml,<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 100 100\" opacity=\"0.1\"><circle cx=\"20\" cy=\"20\" r=\"2\" fill=\"white\"\/><circle cx=\"80\" cy=\"40\" r=\"1.5\" fill=\"white\"\/><circle cx=\"40\" cy=\"80\" r=\"1\" fill=\"white\"\/><circle cx=\"70\" cy=\"70\" r=\"1.5\" fill=\"white\"\/><circle cx=\"10\" cy=\"60\" r=\"1\" fill=\"white\"\/><\/svg>');\n    pointer-events: none;\n}\n\n.science-header {\n    text-align: center;\n    margin-bottom: 40px;\n    padding-bottom: 30px;\n    border-bottom: 3px solid rgba(255, 255, 255, 0.3);\n    position: relative;\n}\n\n.science-icon {\n    font-size: 4rem;\n    margin-bottom: 20px;\n    animation: bounce 2s ease-in-out infinite;\n    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));\n}\n\n@keyframes bounce {\n    0%, 100% { transform: translateY(0) scale(1); }\n    50% { transform: translateY(-10px) scale(1.1); }\n}\n\n.science-title {\n    color: white;\n    font-size: 3.5rem;\n    margin-bottom: 20px;\n    font-weight: 800;\n    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);\n}\n\n.science-highlight {\n    background: linear-gradient(45deg, #ffd93d, #ff8e53);\n    -webkit-background-clip: text;\n    -webkit-text-fill-color: transparent;\n    text-shadow: none;\n}\n\n.topic-badge {\n    display: inline-block;\n    background: linear-gradient(135deg, #4ecdc4, #44a08d);\n    color: white;\n    padding: 15px 40px;\n    border-radius: 50px;\n    font-weight: 700;\n    font-size: 1.4rem;\n    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);\n    border: 3px solid rgba(255, 255, 255, 0.5);\n    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);\n}\n\n.science-hero {\n    text-align: center;\n    margin-bottom: 50px;\n    padding: 40px;\n    background: rgba(255, 255, 255, 0.15);\n    border-radius: 20px;\n    backdrop-filter: blur(10px);\n    border: 2px solid rgba(255, 255, 255, 0.2);\n    position: relative;\n}\n\n.science-hero h2 {\n    color: white;\n    font-size: 2.5rem;\n    margin-bottom: 15px;\n    font-weight: 700;\n    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);\n}\n\n.science-hero p {\n    color: rgba(255, 255, 255, 0.9);\n    font-size: 1.3rem;\n    max-width: 600px;\n    margin: 0 auto 20px;\n    font-weight: 500;\n}\n\n.flame-animation {\n    font-size: 3rem;\n    animation: flicker 1.5s ease-in-out infinite alternate;\n    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));\n}\n\n@keyframes flicker {\n    0%, 100% { transform: scale(1) rotate(-5deg); opacity: 1; }\n    50% { transform: scale(1.1) rotate(5deg); opacity: 0.8; }\n}\n\n.tests-wrapper {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));\n    gap: 30px;\n    margin-bottom: 50px;\n}\n\n.test-card {\n    background: white;\n    border-radius: 20px;\n    padding: 0;\n    box-shadow: 0 20px 40px rgba(0,0,0,0.15);\n    transition: all 0.4s ease;\n    position: relative;\n    overflow: hidden;\n}\n\n.test-card:hover {\n    transform: translateY(-15px) scale(1.02);\n    box-shadow: 0 30px 60px rgba(0,0,0,0.25);\n}\n\n.card-glow {\n    position: absolute;\n    top: 0;\n    left: 0;\n    right: 0;\n    height: 8px;\n}\n\n.quiz-card .card-glow {\n    background: linear-gradient(90deg, #6c5ce7, #a29bfe);\n}\n\n.interactive-card .card-glow {\n    background: linear-gradient(90deg, #00b894, #55efc4);\n}\n\n.card-icon {\n    font-size: 4rem;\n    text-align: center;\n    padding: 30px 0 0;\n    margin-bottom: 10px;\n}\n\n.card-content {\n    padding: 0 30px 30px;\n}\n\n.card-badge {\n    display: inline-block;\n    padding: 8px 20px;\n    border-radius: 20px;\n    font-size: 0.9rem;\n    font-weight: 700;\n    margin-bottom: 15px;\n    color: white;\n}\n\n.test-badge {\n    background: linear-gradient(135deg, #6c5ce7, #a29bfe);\n}\n\n.interactive-badge {\n    background: linear-gradient(135deg, #00b894, #55efc4);\n}\n\n.card-title {\n    color: #2d3436;\n    font-size: 1.8rem;\n    margin-bottom: 15px;\n    font-weight: 700;\n}\n\n.card-description {\n    color: #636e72;\n    margin-bottom: 25px;\n    line-height: 1.6;\n    font-size: 1.1rem;\n}\n\n.card-features {\n    margin-bottom: 30px;\n}\n\n.feature {\n    display: flex;\n    align-items: center;\n    gap: 12px;\n    padding: 10px 0;\n    color: #2d3436;\n}\n\n.feature-icon {\n    font-size: 1.2rem;\n    flex-shrink: 0;\n}\n\n.card-button {\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    gap: 12px;\n    padding: 18px 30px;\n    border-radius: 15px;\n    text-decoration: none;\n    font-weight: 700;\n    font-size: 1.2rem;\n    transition: all 0.3s ease;\n    color: white;\n    text-align: center;\n    width: 100%;\n    border: none;\n    cursor: pointer;\n}\n\n.quiz-button {\n    background: linear-gradient(135deg, #6c5ce7, #a29bfe);\n    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);\n}\n\n.quiz-button:hover {\n    background: linear-gradient(135deg, #5b4cd4, #8e7ef0);\n    box-shadow: 0 12px 30px rgba(108, 92, 231, 0.6);\n    transform: translateY(-3px);\n}\n\n.interactive-button {\n    background: linear-gradient(135deg, #00b894, #55efc4);\n    box-shadow: 0 8px 20px rgba(0, 184, 148, 0.4);\n}\n\n.interactive-button:hover {\n    background: linear-gradient(135deg, #00a885, #44dbb1);\n    box-shadow: 0 12px 30px rgba(0, 184, 148, 0.6);\n    transform: translateY(-3px);\n}\n\n.learning-objectives {\n    background: rgba(255, 255, 255, 0.2);\n    border-radius: 20px;\n    padding: 40px;\n    margin-bottom: 50px;\n    backdrop-filter: blur(10px);\n    border: 2px solid rgba(255, 255, 255, 0.2);\n}\n\n.learning-objectives h3 {\n    color: white;\n    text-align: center;\n    font-size: 2.2rem;\n    margin-bottom: 30px;\n    font-weight: 700;\n    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);\n}\n\n.objectives-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n    gap: 25px;\n}\n\n.objective {\n    background: white;\n    padding: 25px;\n    border-radius: 15px;\n    text-align: center;\n    box-shadow: 0 10px 25px rgba(0,0,0,0.1);\n    transition: transform 0.3s ease;\n}\n\n.objective:hover {\n    transform: translateY(-5px);\n}\n\n.objective-icon {\n    font-size: 2.5rem;\n    margin-bottom: 15px;\n}\n\n.objective h4 {\n    color: #2d3436;\n    font-size: 1.3rem;\n    margin-bottom: 10px;\n    font-weight: 600;\n}\n\n.objective p {\n    color: #636e72;\n    line-height: 1.5;\n    font-size: 0.95rem;\n}\n\n.action-section {\n    display: grid;\n    grid-template-columns: 2fr 1fr;\n    gap: 30px;\n    margin-bottom: 30px;\n}\n\n.more-resources, .help-support {\n    background: rgba(255, 255, 255, 0.95);\n    border-radius: 20px;\n    padding: 30px;\n    box-shadow: 0 15px 35px rgba(0,0,0,0.1);\n}\n\n.more-resources {\n    background: linear-gradient(135deg, #ffeaa7, #fab1a0);\n}\n\n.help-support {\n    background: linear-gradient(135deg, #81ecec, #74b9ff);\n}\n\n.resources-content, .support-content {\n    text-align: center;\n}\n\n.resources-content h4, .support-content h4 {\n    color: #2d3436;\n    font-size: 1.4rem;\n    margin-bottom: 10px;\n    font-weight: 700;\n}\n\n.resources-content p, .support-content p {\n    color: #2d3436;\n    margin-bottom: 20px;\n    opacity: 0.9;\n}\n\n.resources-button, .support-button {\n    display: inline-flex;\n    align-items: center;\n    gap: 10px;\n    padding: 15px 25px;\n    border-radius: 12px;\n    text-decoration: none;\n    font-weight: 600;\n    transition: all 0.3s ease;\n    color: white;\n}\n\n.resources-button {\n    background: linear-gradient(135deg, #e17055, #d63031);\n    box-shadow: 0 6px 15px rgba(225, 112, 85, 0.4);\n}\n\n.resources-button:hover {\n    background: linear-gradient(135deg, #d63031, #c23616);\n    box-shadow: 0 8px 20px rgba(225, 112, 85, 0.6);\n    transform: translateY(-2px);\n}\n\n.support-button {\n    background: linear-gradient(135deg, #0984e3, #6c5ce7);\n    box-shadow: 0 6px 15px rgba(9, 132, 227, 0.4);\n}\n\n.support-button:hover {\n    background: linear-gradient(135deg, #6c5ce7, #5b4cd4);\n    box-shadow: 0 8px 20px rgba(9, 132, 227, 0.6);\n    transform: translateY(-2px);\n}\n\n.science-footer {\n    text-align: center;\n    padding-top: 30px;\n    border-top: 2px solid rgba(255, 255, 255, 0.3);\n    color: rgba(255, 255, 255, 0.9);\n    font-size: 1.1rem;\n}\n\n\/* Responsive Design *\/\n@media (max-width: 768px) {\n    .science-container {\n        padding: 20px 15px;\n    }\n    \n    .science-title {\n        font-size: 2.5rem;\n    }\n    \n    .tests-wrapper {\n        grid-template-columns: 1fr;\n    }\n    \n    .action-section {\n        grid-template-columns: 1fr;\n        gap: 20px;\n    }\n    \n    .objectives-grid {\n        grid-template-columns: 1fr;\n    }\n    \n    .topic-badge {\n        font-size: 1.2rem;\n        padding: 12px 30px;\n    }\n    \n    .science-hero h2 {\n        font-size: 2rem;\n    }\n}\n\n@media (max-width: 480px) {\n    .science-title {\n        font-size: 2rem;\n    }\n    \n    .topic-badge {\n        font-size: 1.1rem;\n        padding: 10px 25px;\n    }\n    \n    .science-hero {\n        padding: 30px 20px;\n    }\n    \n    .science-hero h2 {\n        font-size: 1.8rem;\n    }\n    \n    .card-content {\n        padding: 0 20px 20px;\n    }\n    \n    .learning-objectives {\n        padding: 30px 20px;\n    }\n}\n<\/style>\n","protected":false},"excerpt":{"rendered":"<p>Combustion and Flame &#8211; Interactive Questions \ud83d\udd25 Combustion &#038; Flame \ud83d\udd25 Class 8 Science &#8211; Interactive Conceptual Questions Click on &#8220;Show Answer&#8221; to reveal detailed explanations Question 1 A student conducted an experiment with three candles of identical size placed in different conditions. Candle A burned for 25 minutes, Candle B for 2 minutes, and [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":162789,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"fifu_image_url":"https:\/\/manishchandra.org\/doc\/webtext\/energetics\/CE-images\/candle_flame.jpg","fifu_image_alt":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-162785","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","cat-1-id","has_thumb"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Class 8 Science: Combustion and Flame Questions - Gyankatta<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/news.gyankatta.org\/?p=162785\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Class 8 Science: Combustion and Flame Questions - Gyankatta\" \/>\n<meta property=\"og:description\" content=\"Combustion and Flame &#8211; Interactive Questions \ud83d\udd25 Combustion &#038; Flame \ud83d\udd25 Class 8 Science &#8211; Interactive Conceptual Questions Click on &#8220;Show Answer&#8221; to reveal detailed explanations Question 1 A student conducted an experiment with three candles of identical size placed in different conditions. Candle A burned for 25 minutes, Candle B for 2 minutes, and [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/news.gyankatta.org\/?p=162785\" \/>\n<meta property=\"og:site_name\" content=\"Gyankatta\" \/>\n<meta property=\"article:published_time\" content=\"2025-10-21T04:22:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-21T08:58:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/manishchandra.org\/doc\/webtext\/energetics\/CE-images\/candle_flame.jpg\" \/>\n<meta name=\"author\" content=\"sBagul\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/manishchandra.org\/doc\/webtext\/energetics\/CE-images\/candle_flame.jpg\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"sBagul\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/news.gyankatta.org\\\/?p=162785#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/news.gyankatta.org\\\/?p=162785\"},\"author\":{\"name\":\"sBagul\",\"@id\":\"https:\\\/\\\/news.gyankatta.org\\\/#\\\/schema\\\/person\\\/ba6f7a4ee74e137c4c2b2c991b4f28e9\"},\"headline\":\"Class 8 Science: Combustion and Flame Questions\",\"datePublished\":\"2025-10-21T04:22:59+00:00\",\"dateModified\":\"2025-10-21T08:58:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/news.gyankatta.org\\\/?p=162785\"},\"wordCount\":1316,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/news.gyankatta.org\\\/?p=162785#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/manishchandra.org\\\/doc\\\/webtext\\\/energetics\\\/CE-images\\\/candle_flame.jpg\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/news.gyankatta.org\\\/?p=162785#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/news.gyankatta.org\\\/?p=162785\",\"url\":\"https:\\\/\\\/news.gyankatta.org\\\/?p=162785\",\"name\":\"Class 8 Science: Combustion and Flame Questions - Gyankatta\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/news.gyankatta.org\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/news.gyankatta.org\\\/?p=162785#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/news.gyankatta.org\\\/?p=162785#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/manishchandra.org\\\/doc\\\/webtext\\\/energetics\\\/CE-images\\\/candle_flame.jpg\",\"datePublished\":\"2025-10-21T04:22:59+00:00\",\"dateModified\":\"2025-10-21T08:58:56+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/news.gyankatta.org\\\/#\\\/schema\\\/person\\\/ba6f7a4ee74e137c4c2b2c991b4f28e9\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/news.gyankatta.org\\\/?p=162785#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/news.gyankatta.org\\\/?p=162785\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/news.gyankatta.org\\\/?p=162785#primaryimage\",\"url\":\"https:\\\/\\\/manishchandra.org\\\/doc\\\/webtext\\\/energetics\\\/CE-images\\\/candle_flame.jpg\",\"contentUrl\":\"https:\\\/\\\/manishchandra.org\\\/doc\\\/webtext\\\/energetics\\\/CE-images\\\/candle_flame.jpg\",\"width\":\"150\",\"height\":\"254\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/news.gyankatta.org\\\/?p=162785#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/news.gyankatta.org\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Class 8 Science: Combustion and Flame Questions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/news.gyankatta.org\\\/#website\",\"url\":\"https:\\\/\\\/news.gyankatta.org\\\/\",\"name\":\"Gyankatta\",\"description\":\"Online Examination, Speed and Efficiency\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/news.gyankatta.org\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/news.gyankatta.org\\\/#\\\/schema\\\/person\\\/ba6f7a4ee74e137c4c2b2c991b4f28e9\",\"name\":\"sBagul\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/276ef0d75fcc5d663d2921ae3c0f1070d894ce89b14c9ddfe3369ebe20b7cbe5?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/276ef0d75fcc5d663d2921ae3c0f1070d894ce89b14c9ddfe3369ebe20b7cbe5?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/276ef0d75fcc5d663d2921ae3c0f1070d894ce89b14c9ddfe3369ebe20b7cbe5?s=96&r=g\",\"caption\":\"sBagul\"},\"url\":\"https:\\\/\\\/news.gyankatta.org\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Class 8 Science: Combustion and Flame Questions - Gyankatta","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/news.gyankatta.org\/?p=162785","og_locale":"en_US","og_type":"article","og_title":"Class 8 Science: Combustion and Flame Questions - Gyankatta","og_description":"Combustion and Flame &#8211; Interactive Questions \ud83d\udd25 Combustion &#038; Flame \ud83d\udd25 Class 8 Science &#8211; Interactive Conceptual Questions Click on &#8220;Show Answer&#8221; to reveal detailed explanations Question 1 A student conducted an experiment with three candles of identical size placed in different conditions. Candle A burned for 25 minutes, Candle B for 2 minutes, and [&hellip;]","og_url":"https:\/\/news.gyankatta.org\/?p=162785","og_site_name":"Gyankatta","article_published_time":"2025-10-21T04:22:59+00:00","article_modified_time":"2025-10-21T08:58:56+00:00","og_image":[{"url":"https:\/\/manishchandra.org\/doc\/webtext\/energetics\/CE-images\/candle_flame.jpg","type":"","width":"","height":""}],"author":"sBagul","twitter_card":"summary_large_image","twitter_image":"https:\/\/manishchandra.org\/doc\/webtext\/energetics\/CE-images\/candle_flame.jpg","twitter_misc":{"Written by":"sBagul","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/news.gyankatta.org\/?p=162785#article","isPartOf":{"@id":"https:\/\/news.gyankatta.org\/?p=162785"},"author":{"name":"sBagul","@id":"https:\/\/news.gyankatta.org\/#\/schema\/person\/ba6f7a4ee74e137c4c2b2c991b4f28e9"},"headline":"Class 8 Science: Combustion and Flame Questions","datePublished":"2025-10-21T04:22:59+00:00","dateModified":"2025-10-21T08:58:56+00:00","mainEntityOfPage":{"@id":"https:\/\/news.gyankatta.org\/?p=162785"},"wordCount":1316,"commentCount":0,"image":{"@id":"https:\/\/news.gyankatta.org\/?p=162785#primaryimage"},"thumbnailUrl":"https:\/\/manishchandra.org\/doc\/webtext\/energetics\/CE-images\/candle_flame.jpg","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/news.gyankatta.org\/?p=162785#respond"]}]},{"@type":"WebPage","@id":"https:\/\/news.gyankatta.org\/?p=162785","url":"https:\/\/news.gyankatta.org\/?p=162785","name":"Class 8 Science: Combustion and Flame Questions - Gyankatta","isPartOf":{"@id":"https:\/\/news.gyankatta.org\/#website"},"primaryImageOfPage":{"@id":"https:\/\/news.gyankatta.org\/?p=162785#primaryimage"},"image":{"@id":"https:\/\/news.gyankatta.org\/?p=162785#primaryimage"},"thumbnailUrl":"https:\/\/manishchandra.org\/doc\/webtext\/energetics\/CE-images\/candle_flame.jpg","datePublished":"2025-10-21T04:22:59+00:00","dateModified":"2025-10-21T08:58:56+00:00","author":{"@id":"https:\/\/news.gyankatta.org\/#\/schema\/person\/ba6f7a4ee74e137c4c2b2c991b4f28e9"},"breadcrumb":{"@id":"https:\/\/news.gyankatta.org\/?p=162785#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/news.gyankatta.org\/?p=162785"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/news.gyankatta.org\/?p=162785#primaryimage","url":"https:\/\/manishchandra.org\/doc\/webtext\/energetics\/CE-images\/candle_flame.jpg","contentUrl":"https:\/\/manishchandra.org\/doc\/webtext\/energetics\/CE-images\/candle_flame.jpg","width":"150","height":"254"},{"@type":"BreadcrumbList","@id":"https:\/\/news.gyankatta.org\/?p=162785#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/news.gyankatta.org\/"},{"@type":"ListItem","position":2,"name":"Class 8 Science: Combustion and Flame Questions"}]},{"@type":"WebSite","@id":"https:\/\/news.gyankatta.org\/#website","url":"https:\/\/news.gyankatta.org\/","name":"Gyankatta","description":"Online Examination, Speed and Efficiency","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/news.gyankatta.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/news.gyankatta.org\/#\/schema\/person\/ba6f7a4ee74e137c4c2b2c991b4f28e9","name":"sBagul","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/276ef0d75fcc5d663d2921ae3c0f1070d894ce89b14c9ddfe3369ebe20b7cbe5?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/276ef0d75fcc5d663d2921ae3c0f1070d894ce89b14c9ddfe3369ebe20b7cbe5?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/276ef0d75fcc5d663d2921ae3c0f1070d894ce89b14c9ddfe3369ebe20b7cbe5?s=96&r=g","caption":"sBagul"},"url":"https:\/\/news.gyankatta.org\/?author=1"}]}},"views":434,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/news.gyankatta.org\/index.php?rest_route=\/wp\/v2\/posts\/162785","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/news.gyankatta.org\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/news.gyankatta.org\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/news.gyankatta.org\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/news.gyankatta.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=162785"}],"version-history":[{"count":5,"href":"https:\/\/news.gyankatta.org\/index.php?rest_route=\/wp\/v2\/posts\/162785\/revisions"}],"predecessor-version":[{"id":162791,"href":"https:\/\/news.gyankatta.org\/index.php?rest_route=\/wp\/v2\/posts\/162785\/revisions\/162791"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/news.gyankatta.org\/index.php?rest_route=\/wp\/v2\/media\/162789"}],"wp:attachment":[{"href":"https:\/\/news.gyankatta.org\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=162785"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/news.gyankatta.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=162785"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/news.gyankatta.org\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=162785"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}