tttttttttt

Financial Statement Analysis: Concepts, Objectives, and Tools

🔷 Introduction:

Financial statement analysis is a critical process in financial management that involves a detailed examination of the financial information contained in a company’s financial statements to assess its performance, financial health, and future prospects.

It helps stakeholders such as management, investors, creditors, and analysts to make informed decisions based on the company’s financial data.

🔷 Concept of Financial

...

See on Student Notes »

Biochem

[6/20, 8:54 AM] Omkar Shinde (Bpharm): Proteins

Proteins are complex molecules made up of amino acids. They perform various functions in the body, such as:

1. *Structural support* (e.g., collagen)

2. *Enzymatic activity* (e.g., lactase)

3. *Transport* (e.g., hemoglobin)

4. *Defense* (e.g., antibodies)

Classification of Proteins

1. *Based on structure*:

    - Fibrous proteins (e.g., collagen)

    - Globular proteins (e.g., enzymes, antibodies)

2. *Based on function*:

    - Enzymes

   ...

See on Student Notes »

Stack

Stack

#include <stdio.h>
#include <stdlib.h>

#define MAX 100

int stack[MAX];
int top = -1;

void push() {
    int val;
    if (top == MAX - 1) {
        printf("Stack Overflow! Cannot push more elements.\n");
    } else {
        printf("Enter the value to push: ");
        scanf("%d", &val);
        stack[++top] = val;
        printf("%d pushed to the stack.\n", val);
    }
}

void pop() {
    if (top == -1) {
        printf("Stack Underflow! No element to pop.

...

See on Student Notes »

Biochemistry

@Proteins Proteins are complex molecules made up of amino acids. They perform various functions in the body, such as:1. *Structural support* (e.g., collagen)2. *Enzymatic activity* (e.g., lactase)3. *Transport* (e.g., hemoglobin)4. *Defense* (e.g., antibodies)#Classification of Proteins1. *Based on structure*:- Fibrous proteins (e.g., collagen - Globular proteins (e.g., enzymes, antibodies)2. *Based on function*:- Enzymes- Hormone-Structural proteins- Transport protein- Defense proteins Urea Cycle

...

See on Wikiteka »

22222222

Geography Branches – Physical = land/climate | Human = people/culture


Map Types – General-purpose | Thematic | Topographic


Location – Military grid = easting/northing | Latitude = horizontal | Longitude = vertical


Time Zones – 24 worldwide | 6 in Canada | We are EST


Map Scales – Direct: 1cm = 2km | RF: 1:200,000 | Line: bar scale


Compass – Cardinal: N/E/S/W | Ordinal: NE/SE/SW/NW



Population Patterns – Dispersed | Concentrated | Linear
Ecumene – Continuous = full area settled | Discontinuous

...

See on Wikiteka »

marpolenglish

1.The International Convention for the Prevention of Pollution from Ships (MARPOL 73/78) is an international agreement aimed at minimizing marine pollution caused by ships. It was adopted in 1973 and amended by a protocol in 1978, which introduced mandatory reporting of pollution-related incidents. The convention was developed following the 1967 disaster involving the tanker Torrey Canyon, which ran aground and spilled 120,000 tons of oil. MARPOL consists of six annexes: prevention of pollution

...

See on Student Notes »

mojooo

1. Définition du MoJo

  • Le journalisme mobile (MoJo) consiste à produire des contenus (texte, photo, vidéo, audio) uniquement avec un smartphone.

  • Il couvre toutes les étapes : planification, tournage, montage, publication.

  • Très utile en situation de crise (pandémie, guerre).

2. Principes clés

  • Le téléphone est tout-en-un : outil de production et de diffusion.

  • Le journaliste devient une équipe à lui seul.

  • Le public participe via le contenu généré (témoignages, vidéos).

...

See on Wikiteka »

again 3

🧾 1. Data Transfer Instructions

Used to move data between registers, memory, and I/O.

Instruction

Use

MOV

Transfer data between registers/memory

PUSH / POP

Stack operations (store/retrieve data)

XCHG

Exchange contents of two operands

IN / OUT

Input from or output to a port

LEA

Load effective address

LDS / LES

Load pointer and segment

XLAT

Translate byte using lookup table

2. Arithmetic Instructions

Perform basic math operations.

Instruction

...

See on Wikiteka »

again 2

🧠 What Is Virtual Memory?
Virtual memory is a memory management technique that gives programs the illusion of having a large, continuous block of memory—even if the physical RAM is limited. It allows the system to use disk space (like HDD/SSD) as an extension of RAM.
This enables:
- Running large applications
- Multitasking
- Memory protection and isolation

🧩 How Is It Implemented?
🔹 Paging
- Memory is divided into fixed-size blocks:
- Pages (virtual memory)
- Frames (physical memory)
- A page

...

See on Student Notes »