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

Sort by
Subject
Level

English Grammar and Vocabulary Practice Exams with Solutions

Classified in Spanish

Written on in English with a size of 4.23 KB

English Language Practice: Unit Exams with Solutions

Unit 1: Foundational English Concepts

I. Personal Information

  1. A: What's your marital status?
    B: I’m single.
  2. A: Hello, I'm Rosa.
    B: What's your name?
  3. A: Nice to meet you.
    B: Nice to meet you, too.
  4. My name is Catherine.
    Please call me Cathy.
  5. A: What's your name?
    B: It’s Maria Contreras.

II. Greetings and Farewells

  1. A: Hello, Carol.
    B: Hi, Robert. Good to see you.
  2. A: Things are fine. And you?
    B: Pretty good.
  3. A: Bye Carol, see you later.
    B: See you around.

III. The English Alphabet

  1. A: Good morning, Miss Kate.
    B: Good morning, Mr. Smith. How are you today?
  2. A: I’m very well, thank you.
    B: Quite all right, thank you.
  3. VICTORIA (V-I-C-T-O-R-I-A)
  4. SANTIAGO (S-A-N-T-I-A-G-O)
  5. ADRIANA (A-D-R-I-A-N-A)
  6. READ (R-E-A-D)
... Continue reading "English Grammar and Vocabulary Practice Exams with Solutions" »

Mastering English Conditionals, Tenses, and Voice Structures

Classified in English

Written on in English with a size of 12.5 KB

Zero Conditional (Simple Present)

Structure

  • If + subject + simple present verb + complement
  • Subject + simple present verb + if + complement

Examples

  • If I go to Six Flags, I eat nachos.
  • I eat nachos if I go to Six Flags.

First Conditional

Structure

  1. If + subject + simple present verb + complement
  2. Subject / pronoun + will, be going to, or might + infinitive + complement

Examples

  • If I study hard, I will pass the exam.
  • If I visit my grandpa, I am going to eat out with him.
  • If she goes to Paris, she might visit the Louvre Museum.

Second Conditional (Simple Past / Would)

Structure

  1. If + subject / pronoun + simple past + complement
  2. Subject / pronoun + would + infinitive + complement

Examples

  • If I had 50 million pesos, I would buy a house in Cancún.
  • If I won the lottery,
... Continue reading "Mastering English Conditionals, Tenses, and Voice Structures" »

Brecht's Title Paradox: Morality and Capitalism in "The Good Woman of Szechwan"

Posted by Anonymous and classified in Arts and Humanities

Written on in English with a size of 2.9 KB

The Multifaceted Mirror: Analyzing Brecht's Title Choice

Bertolt Brecht's choice of "The Good Woman of Szechwan" as his play's title is far more than a simple descriptor; it is a meticulously crafted, multi-layered reflection of the play’s central themes and Brechtian principles. At first glance, it presents a seemingly straightforward paradox: how can one be "good" in a system that forces moral compromise? Yet, a deeper analysis reveals its ironic, interrogative, and ultimately didactic functions, underscoring Brecht's critique of capitalist society and his exploration of human morality.

Ironic Function: Goodness as a Commodity

The most immediate impact of the title is its inherent irony. "Goodness" in Brecht's Szechwan is not an intrinsic... Continue reading "Brecht's Title Paradox: Morality and Capitalism in "The Good Woman of Szechwan"" »

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" »

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" »

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" »