Notes, abstracts, papers, exams and problems

Sort by
Subject
Level

Key Terms in Production and Inventory Management

Classified in Design and Engineering

Written at on English with a size of 4.14 KB.

Inventory Management

Safety Stock: The amount of inventory carried in addition to the expected demand.

Stock Keeping Unit (SKU): A common term used to identify an inventory item.

Material Requirements Planning (MRP)

Available to Promise: A feature of MRP systems that identifies the difference between the number of units currently included in the master schedule and actual (firm) customer orders.

Bill of Materials (BOM): A computer file that contains the complete product description, listing the materials, parts, and components, and the sequence in which the product is created.

Closed-loop MRP: The use of actual data from the production system to continually update the MRP system. This feedback is provided so that planning can be kept valid at all... Continue reading "Key Terms in Production and Inventory Management" »

T.S. Eliot's The Waste Land: A Deep Dive

Classified in Arts and Humanities

Written at on English with a size of 2.7 KB.

The Waste Land by T.S. Eliot

1. Sections and Summaries

This poem comprises five sections:

  • The Burial of the Dead

    Part I conveys a sense of apprehension and incomprehension among various characters in different situations. Madame Sosostris, a fortune-teller, adds to the confusion with enigmatic pronouncements that only gain clarity later in the poem. The city, particularly London, is depicted as a grim place inhabited by people unable to live fully or escape their deadness.

  • A Game of Chess

    Part II presents two scenes showcasing the desolation of people's lives. The first depicts a richly decorated room where a wealthy lady's constant questions reveal her anxiety and lack of control. The second scene unfolds in a London pub, where two women discuss

... Continue reading "T.S. Eliot's The Waste Land: A Deep Dive" »

Isabel II's Reign in Spain: A Historical Analysis

Classified in History

Written at on English with a size of 3.86 KB.

The Reign of Isabel II (1833-1868)

The reign of Isabel II can be divided into two main phases: her minority, with two regencies (her mother, Maria Cristina of Naples, who was soon confronted by the Carlist Wars, and General Espartero), and her majority, which went through three stages: the Moderate Decade, the Progressive Biennium, and the Liberal Union.

Regency of Maria Cristina (1833-1840)

Maria Cristina faced two major problems: war and the institutional organization of the liberal regime.

a) The Carlist Wars

The country was divided between Carlists and Isabellinos (Elizabethans). Traditionalists were loyal to Don Carlos, while those who supported Isabel had to align themselves with the liberals. The Carlist monarchists were traditionalists,... Continue reading "Isabel II's Reign in Spain: A Historical Analysis" »

Passive / REproted

Classified in English

Written at on English with a size of 2.51 KB.

Active Passive Tense
Present simple Writes / write is / are written
P. Continuous is / are writing is / are being written
Past simple wrote was / were written
Continuous Ps was / were writting was / were being -
Present Perfect has / have written has / have been --
Past perfect Had written had been written
Simple Future will write will been written
Future perfect will have will have been written -
conditional would write would be written
would have written would have been written
Infinitive to write to be written
to have written to have benn written
-ing form writing being written
written having been written havin


Impersonal
It + passive + to + v1 equal
staff
S2 + v1 + v2 passive + to infinitive


REPORTED SPEECH
Work -------
... Continue reading "Passive / REproted" »

Kjuy

Classified in English

Written at on English with a size of 1.22 KB.

All happen when The doctor goes to the beach to visit some relatives when he was young. Then was when he met Rafael. Rafael was a mad man who lived in a house-boat near the beach.
When The doctor grows, he decide to go back, and is then when he know rafaels story.
Rafael was in love with Anita, but then a soldier from another country, who had borned on a rich family, starts to be interesting for her, and she ends leaving Rafael alone. Rafael, who was now really sad, tries to get back anitas love killing the soldier, but a fail on his plains makes Anita and the soldier die together. Rafael ends mad, without his lovely girl and without nothing else to do on the world.

* Rafael is a dirty sad man, who lives under a boat in the beach. He is very

... Continue reading "Kjuy" »

Carthago Nova. Archeology and epigraphy in the city walls.

Posted by Javi and classified in History

Written at on English with a size of 77.51 KB.

Sebastian F. Ramallo Asensio (Universidad de Murcia)

Militum deinde quod eos non conlaudavit virtutem eruptio hostium, non altitudo moenium, Stagni inexplorata non vada, non castellum in high Tumulo situm, non munitissima arx deterruisset quo minus transcenderent omnia perrumperentque.

(T. Livy, XXVI, 48, 4)

This text of the History of Rome Livy clearly expresses components of the defensive apparatus of the city founded by Hasdrubal: the height of its walls, the shallow lagoon unexplored, the fortress located on high hill and the well-defended fortress components, all of which, coupled with the excellent conditions of its harbor and its strategic position in the communication routes to Africa and Italy through the Balearic Islands (Appian,

... Continue reading "Carthago Nova. Archeology and epigraphy in the city walls." »

Verb to Be, Family, Clothes, and More in English

Classified in Spanish

Written at on English with a size of 3.47 KB.

Verb To Be: Present Simple

The verb "to be" is fundamental in English. Here's its present simple form:

Personal PronounVerb To Be (+)Short Form (+)Verb To Be (-)Short Form (-)Interrogative
IamI'mam not-Am I?
YouareYou'reare notAren'tAre you?
HeisHe'sis notIsn'tIs he?
SheisShe'sis notIsn'tIs she?
ItisIt'sis notIsn'tIs it?
WeareWe'reare notAren'tAre we?
YouareYou'reare notAren'tAre you?
TheyareThey'reare notAren'tAre they?

Adverbs of Frequency

These words describe how often something happens:

  • 0%: Never
  • 20%: Rarely
  • 50%: Sometimes
  • 70%: Often
  • 90%: Usually
  • 100%: Always

Family Members

Here are some common family words in English and Spanish:

  • Aunt - Tía
  • Brother - Hermano
  • Children - Niño (Note: "Children" is plural. The singular is "Child")
  • Cousin - Primo/a
  • Daughter - Hija
  • Father
... Continue reading "Verb to Be, Family, Clothes, and More in English" »

C++ Code Examples: Essential Algorithms & Programs

Classified in Computers

Written at on English with a size of 5.54 KB.

C++ Code Examples: Essential Algorithms & Programs

Here are some fundamental C++ code examples covering various algorithms and programming concepts:

Factorial Calculation

#include <iostream>
using namespace std;

long factorial(int x) {
 int i, f = 1;
 for (i = 1; i <= x; i++) {
 f = f * i;
 }
 return f;
}

int main() {
 int n;
 cout << "Enter the number: ";
 cin >> n;
 if (n < 0) {
 cout << "Factorial is not defined for negative numbers";
 } else {
 cout << "Factorial = " << factorial(n);
 }
 return 0;
}

String Length Finder

#include <iostream>
using namespace std;

int main() {
 int length = 0, i;
 char s[20];
 cout << "Enter the string: ";
 cin.getline(s, 20);
 for (i = 0; s[i] != '\0'
... Continue reading "C++ Code Examples: Essential Algorithms & Programs" »

Synthesis and Sources of Aromatic Hydrocarbons

Classified in Chemistry

Written at on English with a size of 3.14 KB.

Preparation of Naphthalene

Naphthalene is a fused-ring aromatic hydrocarbon with two benzene rings. It can be prepared via the following methods:

  • From Coal Tar: Coal tar, a by-product of coal processing, is a major source of naphthalene. It is extracted and purified using distillation followed by crystallization.
  • Synthesis from Benzene: Benzene undergoes a series of reactions to form naphthalene:
    • Alkylation: Benzene reacts with alkyl halides (like methyl chloride) to form methylbenzene (toluene).
    • Cyclization: Toluene undergoes further reaction with chlorine and heat to form naphthalene.

Preparation of Anthracene

Anthracene is a tricyclic aromatic hydrocarbon consisting of three fused benzene rings. It is mainly obtained from coal tar but can also... Continue reading "Synthesis and Sources of Aromatic Hydrocarbons" »

Insect Biology: Adaptations, Behaviors, and Ecology

Classified in Biology

Written at on English with a size of 5.34 KB.

Insect Defenses Against Predators

Three Plant Mechanisms to Defend Against Insects

  • Physical: Thick walls
  • Chemical: Phytochemicals that kill insects
  • Entrapment: Pitcher plants

How Insects Overcome Physical Defenses

  • Specialized mandibles
  • Evolution
  • Immunity to phytochemicals
  • Specialization to survive the digestive liquid of pitcher plants

Insect Parasitism

Endoparasites

Approximately 20% of insect orders include endoparasites. Some orders that include endoparasites are:

  • Hymenoptera
  • Diptera
  • Strepsiptera

Ectoparasites

Some orders that include ectoparasites are:

  • Anoplura
  • Mallophaga
  • Siphonaptera

Three Challenges Faced by Endoparasites

  • Respiration
  • Excretion/getting rid of toxic nitrogenous waste without killing the host
  • Avoiding the host's endocrine system

Insect Social Behavior

Subsocial

... Continue reading "Insect Biology: Adaptations, Behaviors, and Ecology" »