Markdown Basics

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

Match the following cell organelles with their primary functions:

Mitochondria = ATP production Endoplasmic Reticulum = Protein and lipid synthesis Golgi Apparatus = Modifying and packaging proteins Lysosomes = Digestion and waste removal

Match the macromolecules with their building blocks:

Proteins = Amino acids Carbohydrates = Monosaccharides Nucleic Acids = Nucleotides Lipids = Fatty acids and glycerol

Match the stages of mitosis with their key events:

Prophase = Chromosomes condense; nuclear envelope breaks down Metaphase = Chromosomes align at the cell's equator Anaphase = Sister chromatids separate and move to opposite poles Telophase = Nuclear envelope reforms; chromosomes decondense

Match each blood component with its primary function:

<p>Red Blood Cells = Oxygen transport White Blood Cells = Immune defense Platelets = Blood clotting Plasma = Transport of nutrients and hormones</p> Signup and view all the answers

Match the hormones with their glands of origin:

<p>Insulin = Pancreas Thyroxine = Thyroid gland Cortisol = Adrenal gland Growth Hormone = Pituitary gland</p> Signup and view all the answers

Match the parts of the brain with their functions:

<p>Cerebrum = Higher cognitive functions Cerebellum = Balance and coordination Brainstem = Basic life functions like breathing and heart rate Hypothalamus = Regulation of body temperature and hunger</p> Signup and view all the answers

Match the steps of the scientific method with their descriptions

<p>Observation = Noting and describing events or processes Hypothesis = A testable explanation for an observation Experiment = Testing a hypothesis under controlled conditions Conclusion = Analyzing results and determining if hypothesis is supported</p> Signup and view all the answers

Match each type of muscle tissue with its characteristic feature:

<p>Skeletal Muscle = Voluntary movement Smooth Muscle = Involuntary contractions in internal organs Cardiac Muscle = Involuntary contractions in the heart All Muscle Types = Contractile cells</p> Signup and view all the answers

Match the stages of ecological succession with their characteristics:

<p>Pioneer Stage = Initial colonization by hardy species Intermediate Stage = Increase in species diversity and complexity Climax Community = Stable and mature ecosystem Disturbed Ecosystem = May restart primary succession</p> Signup and view all the answers

Match the ecological interactions with their effects on the species involved:

<p>Mutualism = Both species benefit Commensalism = One species benefits, the other is unaffected Parasitism = One species benefits, the other is harmed Competition = Both species are harmed</p> Signup and view all the answers

Match the following energy sources with their environmental impacts:

<p>Coal = Air pollution and greenhouse gas emissions Nuclear = Risk of radioactive waste and accidents Solar = Land use and resource requirements Wind = Noise and visual impacts</p> Signup and view all the answers

Match the layers of the Earth with their composition:

<p>Crust = Solid rock Mantle = Mostly solid, viscous rock Outer Core = Liquid iron and nickel Inner Core = Solid iron and nickel</p> Signup and view all the answers

Match the cloud types with their characteristics:

<p>Cumulus = Fluffy, white clouds with flat bases Stratus = Flat, gray clouds covering the sky Cirrus = Thin, wispy clouds made of ice crystals Nimbus = Rain-producing clouds</p> Signup and view all the answers

Match the parts of a flower with their functions:

<p>Petals = Attract pollinators Stamen = Produces pollen Pistil = Receives pollen and develops into fruit Sepals = Protect the developing flower bud</p> Signup and view all the answers

Match the ecological roles of the organisms with their descriptions:

<p>Producers = Convert sunlight into chemical energy Consumers = Obtain energy by eating other organisms Decomposers = Break down dead organic matter All of the above = Contribute to an ecosystem as a whole</p> Signup and view all the answers

Match the following biomes with their climate conditions:

<p>Tundra = Cold and dry Desert = Hot and dry Tropical Rainforest = Hot and wet Temperate Forest = Moderate temperature and precipitation</p> Signup and view all the answers

Match the layers of the atmosphere with their altitude ranges:

<p>Troposphere = 0-10 km Stratosphere = 10-50 km Mesosphere = 50-85 km Thermosphere = 85+ km</p> Signup and view all the answers

Match the types of rocks with their forming processes:

<p>Igneous Rocks = Cooling and solidification of magma Sedimentary Rocks = Compaction and cementation of sediments Metamorphic Rocks = Transformation by heat and pressure All Rock Types = Part of the rock cycle</p> Signup and view all the answers

Match the following concepts with their correct definition

<p>Hypoxia = Deficiency in the amount of oxygen reaching the tissues Hyperglycemia = Excess of glucose in the bloodstream Hypertension = Abnormally high blood pressure Homeostasis = Maintaining a stable internal environment</p> Signup and view all the answers

Match the neuroglia cells with their definitions

<p>Astrocytes = Maintain chemical environment and form blood-brain barrier Microglia = Act as macrophages Oligodendrocytes = Form myelin sheath in the CNS Ependymal cells = Line cavities of the brain and spinal cord</p> Signup and view all the answers

Flashcards

Mouth

The initial entry point for food into the digestive system.

Esophagus

A muscular tube that transports food from the pharynx to the stomach.

Liver

A large organ that produces bile, detoxifies, and metabolizes nutrients.

Small Intestine

A long, coiled tube where nutrients are absorbed into the bloodstream.

Signup and view all the flashcards

Large Intestine

A wider tube that absorbs water and forms feces.

Signup and view all the flashcards

Anus

The end point of the digestive system which stores stool before it is excreted.

Signup and view all the flashcards

Study Notes

Introduction to Markdown

  • Markdown represents a lightweight markup language with plain text formatting syntax.
  • It's easy to learn and can be used to create various types of documents.
  • Markdown is platform-independent and compatible with most text editors.
  • It can be converted to HTML, PDF, and other formats.

Basic Syntax

Headers

  • Headers range from level 1 to 6, indicated by the number of # symbols.
  • Example: # Header 1, ## Header 2, ### Header 3

Emphasis

  • Use * or _ for italics.
  • Use ** or __ for bold.
  • Use *** or ___ for bold italics.

Lists

Unordered Lists
  • Use * or - to denote list items in unordered lists.
Ordered Lists
  • Use numbers followed by a period for ordered lists.
  • Create links using [Link Text](URL).
  • Add a title using [Link Text](URL "Link Title").

Images

  • Add images using ![Alt Text](URL).
  • Include a title using ![Alt Text](URL "Image Title").

Code

Inline Code
  • Use backticks ` to format inline code.
Code Blocks
  • Use triple backticks ``` to create code blocks.

Block Quotes

  • Use > to indicate block quotes.

Horizontal Rules

  • Create horizontal rules using ---, ***, or ___.

Tables

  • Tables are created using | to separate columns and --- to separate headers.
  • Example | Header 1 | Header 2 |\n|---|---|

Cell Combination

  • Markdown tables do not support cell combination.

Character Escaping

  • Use a backslash \ to escape special Markdown characters.

Footnotes

  • Add footnotes using [^1] for the reference and [^1]: for the content.

Math Formulas

  • Write mathematical formulas in LaTeX using $.
  • Example: $x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$

Diagrams

  • Create diagrams using languages like Mermaid or PlantUML.
Mermaid
  • Use Mermaid syntax within a code block to define diagrams.
PlantUML
  • PlantUML requires a plugin or external service to render diagrams.

Tasks

  • Create task lists using - [x] for completed tasks and - [ ] for incomplete tasks.

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

More Like This

¿Qué es Markdown? Sintaxis y formateo
10 questions
Markdown Syntax
10 questions

Markdown Syntax

MeaningfulSmokyQuartz8694 avatar
MeaningfulSmokyQuartz8694
Markdown Syntax
10 questions

Markdown Syntax

BlitheCatSEye6625 avatar
BlitheCatSEye6625
Markdown Quick Reference Guide
20 questions

Markdown Quick Reference Guide

PrivilegedBoolean2016 avatar
PrivilegedBoolean2016
Use Quizgecko on...
Browser
Browser