Notes, summaries, assignments, exams, and problems for Primary education

Sort by
Subject
Level

Understanding Periodontal Diseases: Types, Features, and Risk Factors

Classified in Biology

Written on in English with a size of 3.6 KB

Aggressive Periodontitis: Localized vs. Generalized

This section outlines the key similarities and differences between Localized Aggressive Periodontitis (LAP) and Generalized Aggressive Periodontitis (GAP).

Localized Aggressive Periodontitis (LAP)

  • Circumpubertal onset.
  • Robust serum antibody response to infecting agents.
  • Localized first molar/incisor presentation with interproximal attachment loss on at least two permanent teeth, one of which is a first molar.
  • Lack of clinical inflammation.
  • Presence of deep periodontal pockets.
  • Amount of plaque inconsistent with the amount of periodontal destruction.
  • Plaque forms a thin biofilm, rarely mineralizing into calculus.
  • Distolabial migration and diastema formation.
  • Increasing mobility of first molars.
  • Sensitivity
... Continue reading "Understanding Periodontal Diseases: Types, Features, and Risk Factors" »

Pulpal Diseases and Maxillary First Premolar Anatomy

Classified in Biology

Written on in English with a size of 2.55 KB

Classification of Pulpal Diseases

Reversible Pulpitis (Acute)

This refers to inflammation of the pulp that is not severe. If the cause is eliminated, the inflammation will resolve and the pulp will return to normal.

Etiology: Mild or short-acting stimuli such as:

  • Incipient caries
  • Cervical erosion
  • Occlusal attrition

Irreversible Pulpitis (Acute)

This is often a sequel to and a progression from reversible pulpitis. It is a severe inflammation that will not resolve even if the cause is removed.

Chronic Ulcerative Pulpitis

The pulp is cariously exposed with an abscess formation at the site. Pain is typically absent because of adequate drainage and the absorption of the exudate.

Chronic Pulpitis (Closed Form)

This may occur from operative procedures, trauma,... Continue reading "Pulpal Diseases and Maxillary First Premolar Anatomy" »

Anatomy and Functions of the Masticatory Muscles

Classified in Biology

Written on in English with a size of 3.23 KB

Masseter Muscle

The masseter is a quadrilateral muscle consisting of three layers:

  • Superficial Layer: Arises by a thick aponeurosis from the zygomatic process of the maxilla and the anterior two-thirds of the lower border of the zygomatic arch. It passes downward and backward at a 45-degree angle and inserts into the lower part of the lateral surface of the ramus of the mandible.
  • Middle Layer: Arises from the anterior two-thirds of the deep surface and the posterior one-third of the lower border of the zygomatic arch. It passes vertically downward and inserts into the middle part of the ramus.
  • Deep Layer: Arises from the deep surface of the zygomatic arch, passes vertically downward, and inserts into the upper part of the ramus and the coronoid
... Continue reading "Anatomy and Functions of the Masticatory Muscles" »

Respiratory and Gastrointestinal Pharmacology Essentials

Posted by Anonymous and classified in Medicine & Health

Written on in English with a size of 2.39 MB

Introduction to the Respiratory System

The cells of the human body require oxygen to stay alive. The respiratory system provides oxygen to the body's cells while removing carbon dioxide, a waste product that can be lethal if allowed to accumulate.

3 Major Parts of the Respiratory System

  • Airway: Nose (nasal cavity), mouth, pharynx, larynx, trachea, bronchi, and bronchioles.
  • Lungs: The functional unit of the respiratory system, facilitating the exchange of O2 and CO2 via the alveoli.
  • Diaphragm Muscles: Muscles of respiration (including intercostal muscles) that separate the thoracic cavity from the abdominal cavity.

Mechanism of Respiration

Respiration involves two main mechanisms:

  • Inhalation (Inspiration): Intake of O2.
  • Expiration (Exhalation): Exhale
... Continue reading "Respiratory and Gastrointestinal Pharmacology Essentials" »

Pharmacology of Antibiotics and Beta-Lactam Mechanisms

Posted by Anonymous and classified in Biology

Written on in English with a size of 6.33 MB

Understanding Antibiotics and Antimicrobial Agents

Antibiotics are chemical substances obtained from various species of microorganisms that kill or inhibit the growth of other microorganisms in low concentrations. They are categorized as antimicrobial agents, which include antivirals, antifungals, and antibacterials.

Types of Antibacterial Action

  • Bacteriostatic: Agents that inhibit the growth of bacteria.
  • Bactericidal: Agents that actively kill bacteria.

Classification of Antibiotics

Antibiotics are classified according to their spectrum of activity:

  • Narrow Spectrum: Effective against a specific or short range of bacteria.
  • Broad Spectrum: Effective against a wide range of bacteria, capable of inhibiting or killing multiple types.

Classification by Source

  1. Natural:
... Continue reading "Pharmacology of Antibiotics and Beta-Lactam Mechanisms" »

FCFS and SJF CPU Scheduling C Program Example

Posted by Anonymous and classified in Computers

Written on in English with a size of 3.03 KB

FCFS and SJF CPU Scheduling C Program Example

Corrected and formatted C source code for FCFS and SJF scheduling.

FCFS Scheduling C Implementation

#include <stdio.h>

int FCFS() {
    int bt[15], n, i, wt[15];
    float twt = 0, tat = 0, att, awt;
    printf("\nTHE FCFS SCHEDULING\n");
    printf("Enter the number of processes: ");
    scanf("%d", &n);
    printf("Enter burst time of all the processes:\n");
    for (i = 0; i < n; i++) {
        printf("P%d: ", i + 1);
        scanf("%d", &bt[i]);
    }

    wt[0] = 0;
    // for calculating waiting time of each process
    for (i = 1; i < n; i++)
        wt[i] = bt[i - 1] + wt[i - 1];

    printf("ProcessID\tBurstTime\tWaitingTime\tTurn Around Time\n");
    for (i = 0; i <
... Continue reading "FCFS and SJF CPU Scheduling C Program Example" »

Environmental Science Fundamentals: Pollution, Resources, and Management

Posted by Anonymous and classified in Geology

Written on in English with a size of 18.51 KB

1. Global Concepts & Protocols

Problems and Global Issues

  • Resource Depletion: Finite resources, renewable resources, and resource degradation.
  • Environmental Pollution: Air, water, and soil pollution, including causes and mitigation methods.
  • Global Climate Change (全球气候变化)
    • Key Substances (GHGs): Primarily $\text{CO}_2$ (Carbon Dioxide), $\text{CH}_4$ (Methane), $\text{N}_2\text{O}$, and CFCs.
    • Mechanism (Greenhouse Effect): Solar shortwave radiation enters Earth $\rightarrow$ Ground heats up and emits longwave infrared radiation $\rightarrow$ GHGs absorb this heat in the atmosphere $\rightarrow$ Global warming.
    • Consequences: Sea level rise, extreme weather, loss of biodiversity.
    • Corresponding Conventions: Kyoto Protocol & Paris Agreement.
... Continue reading "Environmental Science Fundamentals: Pollution, Resources, and Management" »

Ec lab

Posted by Anonymous and classified in Computers

Written on in English with a size of 3.19 KB

Postfix evaluation 

#include<stdio.H>
int stack[20];
int top = -1;

void push(int x)
{
    stack[++top] = x;
}

int pop()
{
    return stack[top--];
}

int main()
{
    char exp[20];
    char *e;
    int n1,n2,n3,num;
    printf("Enter the expression :: ");
    scanf("%s",exp);
    e = exp;
    while(*e != '\0')
    {
        if(isdigit(*e))
        {
            num = *e - 48;
            push(num);
        }
        else
        {
            n1 = pop();
            n2 = pop();
            switch(*e)
            {
            case '+':
            {
                n3 = n1 + n2;
                break;
            }
            case '-':
            {
 ... Continue reading "Ec lab" »

Python Fundamentals: Strings, Lists, Math, and Plotting Examples

Posted by Anonymous and classified in Computers

Written on in English with a size of 6.74 KB

P1: Python String Manipulation Techniques

Demonstrating String Operations

s = "hello"
print(s.capitalize())
print(s.upper())
print(s.rjust(100))
print(s.center(100))
print(s.replace('l','(M)'))
print(s)
print("don't")

Indexing

a = 'symbiosis2024'
print(a[2])

Negative Indexing

print(a[-1])
print(a[-6])

Slicing

print(a[9:12])
print(a[9:])
print(a[9:-1])
print(a[:8])
print(a[-12:-1])

Stride [start index:end index:step size]

print(a[0:13:2])
print(a[0::2])

Concatenation

b = 'hello'
c = 'world'
d = b + c
print(d)
e = b + " " + c
print(e)

Repetition

f = a * 3
print(f)
g = "2024"
print(g * 2)
print(a + '2')

Reversing a String

print(a[::-1])

Split

h = "sspu"
print(h.split()) # Returns a list
i = "05/08/2024"
print(i.split("/"))
j = "14:20:25"
print(j.split("
... Continue reading "Python Fundamentals: Strings, Lists, Math, and Plotting Examples" »

Core Concepts in Neurophysiology, Sensory Systems, and Muscle Biology

Classified in Biology

Written on in English with a size of 7.27 KB

Synaptic Transmission Fundamentals

  • Synapse: The gap between neurons (synaptic cleft).
  • Synaptic Knob: The terminal structure containing vesicles.
  • Neurotransmitters: Chemicals that transmit signals.
    • Acetylcholine: Activates muscles.
    • Monoamines: Involved in cognitive processes (emotion, arousal, memory).
    • Amino Acids, Peptides, and Estrogen.
  • Vesicles: Store neurotransmitters.
  • Axon Hillock: Essential for initiating the firing of a neuron (action potential generation).

Postsynaptic Potentials (EPSP and IPSP)

  • EPSP (Excitatory Postsynaptic Potential): Moves the membrane potential toward the threshold.
  • IPSP (Inhibitory Postsynaptic Potential): Moves the membrane potential away from the threshold.

Vision and Refractive Errors

  • Nearsightedness (Myopia):
    • The eyeball
... Continue reading "Core Concepts in Neurophysiology, Sensory Systems, and Muscle Biology" »