Notes, summaries, assignments, exams, and problems for University

Sort by
Subject
Level

Laboratory parasitology

Posted by Anonymous and classified in Biology

Written on in English with a size of 90.88 KB

HISTORICAL INTRODUCTION:Intro:Microbiology is the science of living organisms that are only visible under the microscope*Medical microbiology deals with the causative agents of infectious diseases of man his reaction to such infections the ways in which they produce disease and the methods for their diagnosis*The disease is transmitted by contact from man was known since biblical time. Varo and columella (First century BC)*The credit for observation and description of bacterial goes a Antony-Van Leeuwersback (1632-1723)*Father of microbiology (Antony Van Leeuwen hoek (1632-1723) and Logis pastoor (1822-1895)**Scientific development of microbiology*SDM was us by Louis pasteure*perfection ion microbiological studies by robert koch*The Intro of... Continue reading "Laboratory parasitology" »

MSP430 Microcontroller Architecture and Embedded Systems Fundamentals

Posted by Anonymous and classified in Electronics

Written on in English with a size of 124.93 KB

Features of the MSP430 Microcontroller

  • 16-bit RISC Architecture: Offers efficient instruction execution, with most instructions completed in a single clock cycle.
  • Ultra-Low Power Consumption: Ideal for battery-powered applications, capable of operating with current in the microampere or even nanoampere range in sleep modes.
  • Multiple Low Power Modes (LPM0 to LPM4): Designed for energy-efficient operation using various power-saving configurations.
  • Flexible Clock System: Includes internal and external clock sources like DCO (Digitally Controlled Oscillator), VLO (Very Low-frequency Oscillator), and crystal oscillators for accurate timing.
  • On-chip Flash Memory: Used to store program code, with sizes up to 512 KB depending on the model.
  • On-chip SRAM:
... Continue reading "MSP430 Microcontroller Architecture and Embedded Systems Fundamentals" »

Bisection and Regula Falsi Methods in C Programming

Posted by Anonymous and classified in Computers

Written on in English with a size of 2.07 KB

Bisection Method Implementation

#include <stdio.h>
#include <math.h>

#define f(x) (cos(x) - (x * exp(x)))

int main() {
    float x0, x1, x2, f0, f1, f2, e;
    int step = 1;

    /* Inputs */
    up:
    printf("\nEnter two initial guesses:\n");
    scanf("%f%f", &x0, &x1);
    printf("Enter tolerable error:\n");
    scanf("%f", &e);

    f0 = f(x0);
    f1 = f(x1);

    if (f0 * f1 > 0.0) {
        printf("Incorrect Initial Guesses. Try again.\n");
        goto up;
    }

    printf("\nStep\t\tx0\t\tx1\t\tx2\t\tf(x2)\n");
    do {
        x2 = (x0 + x1) / 2;
        f2 = f(x2);
        printf("%d\t\t%f\t%f\t%f\t%f\n", step, x0, x1, x2, f2);

        if (f0 * f2 < 0) {
            x1 = x2;
            f1 = f2;
... Continue reading "Bisection and Regula Falsi Methods in C Programming" »

Evaluating Information Sources with the CRAAP Test

Classified in Spanish

Written on in English with a size of 3.84 KB

Currency: The Timeliness of the Information

  • When was the information published or posted? (Identify the year of publication)
  • Has the information been revised or updated? (Check if it has been revised or updated)
  • Is the information current or out-of-date for your topic? (Note: Older information may be outdated; however, consider the context)
  • Are the links functional? (Check the use of data and resources; normally present in both texts)

Relevance: The Importance of the Information for Your Needs

  • Does the information relate to your topic or answer your question? (Determine which topic is most relevant and which text explains it most clearly)
  • Who is the intended audience? (Identify if it is aimed at professionals in the field or those with no prior knowledge;
... Continue reading "Evaluating Information Sources with the CRAAP Test" »

Understanding Key Elements of Communication and Education

Classified in Electronics

Written on in English with a size of 3.17 KB

Explicit: the direct

Implicit: the hidden

Key Elements to Analyze:

Purpose: main goal (principal idea) of the text or speech

Tone: formal, informal, persuasive, neutral (how it makes you feel)

Audience: people who listen/read.

Cultural Context: where the action happens.

Oral Discourse: verbal communication, such as conversation, presentation, or debate.

Written Discourse: communication through texts, such as articles, emails, or books.

Interculturality: the interaction and exchange between people of different cultures, recognizing and respecting their differences.

Cultural Sensitivity: the ability to understand and appreciate cultural differences, avoiding judgments based on one's culture and showing respect for others.

Key Linguistic Tools:

Opinion Expressions:

... Continue reading "Understanding Key Elements of Communication and Education" »

Sistema de Gestión de Usuarios con Java Web

Classified in Computers

Written on in English with a size of 21.85 KB

Archivos HTML del Frontend

INDEX.HTML: Menú Principal del Sistema

<!DOCTYPE html>
<html>
<head>
    <title>Menú Principal del Sistema</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        h2 { color: #789; font-size: 45px; }
        select { color: brown; font-size: 30px; }
        h3 { color: #8b4513; font-size: 30px; }
    </style>
</head>
<body>
    <h2>Menú de Opciones del Sistema</h2>
    <h3>Seleccione una opción:</h3>
    <ol>
        <li><a href="Registro.html">Registrar Usuario</a></li>
        <li><a href="Acceso.html">Acceso
... Continue reading "Sistema de Gestión de Usuarios con Java Web" »

Foundations of Data Analytics, Databases, and Statistics

Classified in Mathematics

Written on in English with a size of 2.23 MB

Introduction to Data Analytics

Types of Data Analytics

  • Descriptive: Analyzes past trends.
  • Predictive: Applies past trends to current data to understand the future.
  • Prescriptive: Suggests actions and outlines potential impacts.

Project Stages

  1. Problem Specification:
    1. Understand the Problem Statement.
    2. Define the Project Scope.
  2. Data Gathering & Preprocessing:
    1. Define a system for data collection.
    2. Clean data with data processing.
  3. Descriptive Analytics:
    1. Perform Exploratory Data Analysis (EDA).
    2. Get a basic understanding of the dataset.
    3. Answer initial assumptions about the data.
  4. Machine Learning:
    1. Apply correct ML models depending on the scope/nature of the data and project.
    2. Train the ML model to assess its performance.
  5. Deployment:
    1. Consult with project stakeholders on
... Continue reading "Foundations of Data Analytics, Databases, and Statistics" »

The Impact of Chaucer on the English Language

Classified in Arts and Humanities

Written on in English with a size of 3.02 KB

The Father of English Literature

Geoffrey Chaucer, often regarded as the "Father of English Literature," made an unparalleled contribution to English letters by elevating the status of the English language and establishing it as a medium for literary expression. Born in the 14th century, Chaucer’s works reflect the socio-cultural, political, and religious milieu of medieval England while showcasing his mastery of narrative and poetic forms.

The Rise of Middle English

Chaucer’s most notable achievement was his use of Middle English at a time when Latin and French were the dominant languages of literature and courtly discourse. By choosing English, Chaucer not only gave voice to the common people but also paved the way for the development of... Continue reading "The Impact of Chaucer on the English Language" »

Core Graph Algorithms Pseudocode Reference

Classified in Computers

Written on in English with a size of 3.58 KB

Core Graph Algorithms Pseudocode

Kruskal's Algorithm for MST

def Kruskal(V, E):

  1. Sort E by increasing weight.
  2. For each vertex v in V: create a tree for each v.

MST = {}

For i from 1 to |E|:

  1. (u, v) ← lightest edge in E.
  2. If u and v are not in the same tree:
  • MST.add((u,v))
  • Merge u and v trees.

Return MST.

Huffman Tree Construction

BuildHuffman(characters[1..n], frequencies[1..n]):

  • Create nodes for each character.
  • For i ← 1 to n: create a min-heap Q with each node frequency as a key.

While(length(Q) > 1):

  1. x = pop minimum value from Q.
  2. y = pop minimum value from Q.
  3. Create new node z.
  4. z.key = x.key + y.key
  5. z.leftChild = x
  6. z.rightChild = y
  7. Insert z into Q.

Return the root value from Q.

Topological Sort

topological_sort(G):

Stack = []

While (unvisited Nodes):

helper_toposort(

... Continue reading "Core Graph Algorithms Pseudocode Reference" »

Business Phrases, Synonyms and Common Acronyms

Classified in Law & Jurisprudence

Written on in English with a size of 3.36 KB

Matched Business Actions

MATCH

  • to place → an order
  • to attach → a document
  • to dispatch → the merchandise
  • to pay → by installments
  • to request → a discount
  • to clear → an account
  • to fulfill → the terms and conditions
  • to render → a service
  • to reach → an agreement (a deadline)
  • to acknowledge → receipt
  • to allow → a discount
  • to conform to → the quality standards
  • to remit → payment
  • to furnish → information
  • to settle → a discount
  • to draw → a trade bill
  • to run out of → stock
  • to misplace → a document
  • to receive → remittance / notice / installments
  • to offer → apologies / patronage
  • to remind → deadline / agreement
  • to take → notice / settlement
  • to meet → deadline / agreement
  • to appreciate → patronage / remittance

Synonyms and Alternative

... Continue reading "Business Phrases, Synonyms and Common Acronyms" »