PE-I

distillation:-Distillation is a process by which a liquid mixture is separated into fractions with higher concentrations of certain components by exploiting differences in relative volatility Distillation is a separation process used to separate components of a liquid mixture based on differences in their boiling points. The process involves heating the mixture to vaporize the most volatile component(s), followed by cooling the vapor to condense it back into liquid form, thereby isolating the different

...

See on Student Notes »

PE-I 2 MARK'S

1. What is Reynold's number? Give its importance. Reynold's number is a dimensionless number used to predict flow patterns in fluid dynamics. It is the ratio of inertial forces to viscous forces. A low Reynold's number indicates laminar flow, while a high number indicates turbulent flow. It helps in designing and analyzing fluid flow systems.

2. What are heat exchangers? Give their types. Heat exchangers are devices used to transfer heat between two or more fluids without mixing them. Types include

...

See on Student Notes »

Pharmacology

*Anti-arrhythmic drugs*

Anti-arrhythmic drugs are medications used to treat abnormal heart rhythms (arrhythmias). They work by modifying the electrical activity of the heart.

Classification:

1. Class I: Sodium channel blockers

(e.g., Quinidine, Lidocaine)

2. Class II: Beta blockers (e.g., Propranolol)

3. Class III: Potassium channel blockers (e.g., Amiodarone)

4. Class IV: Calcium channel blockers (e.g., Verapamil)

*Anticoagulants*

Anticoagulants are drugs that prevent blood clotting.

- Warfarin:

...

See on Student Notes »

Cology

NSAIDs (Non-Steroidal Anti-Inflammatory Drugs) are a class of meds that reduce inflammation, pain, and fever. They're like the ultimate pain relief squad.

*Classification:*

- *Non-selective COX inhibitors*:

  - Aspirin: -Ibuprofen -Diclofenac -Naproxen

- *COX-2 selective inhibitors*:

  - Celecoxib-Etoricoxib

*Pharmacology of Aspirin:*

- *Mechanism*: Aspirin irreversibly inhibits COX-1 and COX-2 enzymes, reducing prostaglandin synthesis, which leads to decreased pain, inflammation, and fever...

See on Student Notes »

drgdgr

  • Provinces: BC, AB, SK, MB, ON, QC, NB, NS, PEI, NL

  • Territories: YT, NT, NU

    • Capital of Canada: Ottawa

  • ON – Toronto

  • QC – Québec City

  • BC – Victoria

  • AB – Edmonton

  • MB – Winnipeg

  • SK – Regina

  • NS – Halifax

  • NB – Fredericton

  • PEI – Charlottetown

  • NL – St. John’s

  • Atlantic, Pacific, Arctic Oceans

  • Hudson Bay

  • Great Lakes (Huron, Ontario, Michigan, Erie, Superior)

  • St. Lawrence River

  • Gulf of St. Lawrence

           Oldest Geological Era: Precambrian

...

See on Student Notes »

fffff

ACE-LEVEL MANAGING ORGANIZATIONS CHEAT SHEET (Lessons 01–08 + Case 01 + Case 02 + Student Pres 01–12) || MANAGEMENT + OB BASICS: Management = achieving organizational goals through other people/resources; must balance EFFECTIVENESS (reaching the right goals/outcomes) + EFFICIENCY (using time/money/effort well); 4 FUNCTIONS (POLC): Planning = set goals + choose actions; Organizing = design structure + allocate tasks/resources; Leading = motivate/communicate/influence; Controlling = measure results...

See on Student Notes »

nnnnnnnnnn

Chapter 1 – Atomic Structure & Matter

  • Atomic models: Dalton (solid sphere), Thomson (plum pudding, cathode ray), Rutherford (gold foil → nucleus), Bohr (planetary energy levels), Modern (wave mechanical/electron cloud)

  • Subatomic particles:

    • Proton: +1 charge, ~1 amu, nucleus

    • Neutron: 0 charge, ~1 amu, nucleus

    • Electron: −1 charge, ~0 amu, electron cloud

  • Isotopes: same element, different number of neutrons

  • Electron arrangement: ground state (lowest energy), excited state (

...

See on Student Notes »

sdsdds

UNIT 1 – GRAMMAR: have been working (all morning), doesn’t think (sometimes), is working (at the moment), meet (usually), have been (for fifteen years). Wybór: organized (last month), has been thinking (over the last few months), haven’t decided (yet), made (last night), forgot (anniversary). Tekst: met (a few years ago), have become (since then), have been looking (last few months), found (last week), have decided (this year). UNIT 2 – GRAMMAR: was walking (when), had been working (for

...

See on Student Notes »

Programming

1. Newton-Raphson (Non-linear equation)

Algorithm (very simple version)

  1. Read starting guess (x)
  2. Read how small error should be (tolerance)
  3. Repeat many times: a. Calculate function value f(x) b. Calculate slope f'(x) c. If slope almost zero → stop (bad) d. New x = x – f(x) / f'(x) e. If change very small → stop (found answer)
  4. Show the root
C
#include<stdio.h>
#include<math.h>

double f(double x){ return x*x*x - 2*x - 5; }
double df(double x){ return 3*x*x - 2; }

int main(
...

See on Student Notes »