Notes, summaries, assignments, exams, and problems for Vocational training

Sort by
Subject
Level

The Golden Age of Northern Basque Literature (17th Century)

Classified in English

Written on in English with a size of 3.55 KB

17th Century Basque Literature: Northern Renaissance

The 17th century marked a significant advance in Basque literature (liburugintza) within the Northern Basque Country (Iparralde). While publications existed in the South, they did not reach the quantity or quality level achieved in the North. This disparity is often traced back to economic reasons.

Profits generated from Newfoundland fishing were invested, leading to a significant improvement in the quality of life along the Lapurdian coast. Furthermore, the religious wars between Catholics and Protestants had subsided, and the Catholic majority regained prominence. Many authors were active during this century, particularly among the communities forming the triangle of Saint Loizune (referring... Continue reading "The Golden Age of Northern Basque Literature (17th Century)" »

X.25 Networks and Satellite Communications

Classified in Technology

Written on in English with a size of 3.08 KB

X.25 Networks

X.25 is a standard for wide area network (WAN) packet switching. It establishes mechanisms for routing between users, negotiation of communication features, and error recovery techniques. Public packet-switching services support numerous types of stations from different manufacturers. Therefore, it is of utmost importance to define the interface between the end user's computer and the network.

Levels of X.25

  • Physical Level: The recommendation for the X.25 packet level coincides with one of the recommendations of the third level of the OSI model. X.25 encompasses the third level and also the two lowest levels.
  • The Link Layer: In X.25, it is assumed that the link layer is LAPB (Link Access Procedure, Balanced). LAPB is responsible for
... Continue reading "X.25 Networks and Satellite Communications" »

Pascal Code Examples: Arrays, Matrices, and Logic

Classified in Computers

Written on in English with a size of 5.97 KB

Pascal Code Examples

1. String Search in Array

This program searches for a given name within an array of strings.

Program Pzim;
var
  vet1: array[1..10] of string;
  nome: string;
  i, j: integer;
begin
  j := 0;
  for i := 1 to 10 do
  begin
    write('Enter the names: ');
    readln(vet1[i]);
  end;
  write('Enter the name to be searched: ');
  readln(nome);
  for i := 1 to 10 do
  begin
    if (nome = vet1[i]) then
    begin
      writeln('FOUND');
      j := j + 1;
    end;
  end;
  if (j = 0) then
    writeln('NOT FOUND');
end.

2. Merging Two Arrays

This program merges two arrays (vet1 and vet2) into a third array (vetx).

Program Pzim;
var
  vet1: array[1..5] of integer;
  vet2: array[1..10] of integer;
  vetx: array[1..15] of integer;
... Continue reading "Pascal Code Examples: Arrays, Matrices, and Logic" »

Essential Tourism Terminology and Travel Definitions

Classified in Geography

Written on in English with a size of 3.32 KB

Key Definitions in Tourism and Travel

Tourism

The activities of persons traveling to and staying in places outside their usual environment for not more than one consecutive year for leisure, business, and other purposes.

Visitor

Any person who travels to a country other than that in which they have their usual residence, but outside their usual environment, for a period not exceeding 12 months, and whose main purpose of visit is other than the exercise of an activity remunerated from within the country visited.

A Tourist

A visitor who spends at least one night in the country visited.

Same-Day Visitor / Excursionist

A visitor who does not spend the night in a collective or private accommodation in the country visited.

Types of Tourism by Geographic Scope

  • Domestic

... Continue reading "Essential Tourism Terminology and Travel Definitions" »

Wireless Network Essentials: APs, WLCs, and Core Concepts

Classified in Computers

Written on in English with a size of 15.83 KB

Chapter 7: Wireless LAN Fundamentals

802.11 Architecture and Operations

1. What are the main planes in a WLAN architecture?

  • A) Management
  • B) Control
  • C) Data

2. Which plane handles signaling and coordination?

  • A) Control

3. Which plane handles configuration and monitoring?

  • B) Management

4. Which mechanisms are used for channel access in 802.11?

  • A) CCA (Clear Channel Assessment)
  • D) VCS (Virtual Carrier Sense)

5. What is the shortest interframe space in 802.11?

  • C) SIFS (Short Interframe Space)

6. How many address fields are typically in an 802.11 frame?

  • D) 4

7. What type of frame is sent by an AP in response to a client's probe request?

  • A) Probe Response

8. What is used to derive the encryption keys in WEP?

  • D) The WEP passphrase

9. What type of scanning involves listening

... Continue reading "Wireless Network Essentials: APs, WLCs, and Core Concepts" »

Key Concepts in Sustainable Business and Corporate Responsibility

Classified in Economy

Written on in English with a size of 3.32 KB

The Funnel Theory: Navigating Resource Scarcity

The Funnel Theory posits that businesses must innovate and adapt to declining resources and ecosystem services, coupled with increasing demand. This creates a challenging environment, a kind of funnel, through which businesses must navigate by being innovative, stakeholder-oriented, and long-term oriented.

Core Competencies for Sustainable Management

Effective sustainable management relies on several key competencies:

  • Corporate Social Responsibility (CSR): This relates to enterprises managing stakeholder relationships and adhering to a code of conduct.
  • Sustainable Development: This focuses on countries or global organizations addressing environmental concerns and the impacts of globalization.
  • Business
... Continue reading "Key Concepts in Sustainable Business and Corporate Responsibility" »

Mastering Passive Voice and Word Formation

Classified in Latin

Written on in English with a size of 3.38 KB

Two Objects: Active and Passive Voice Examples

I gave Pepito a huge and passionate kiss.

  • A) Pepito was given a huge and passionate kiss.
  • B) A huge and passionate kiss was given to Pepito.

Special Cases in Sentence Construction

People believe that Pepita is pregnant on a shoot of a gun.

  • A) It's said/believed/thought that Pepita is pregnant on a shoot of a gun.

Causative Verb Structures

The mechanic will repair Pepito's car.

  • A) Pepito will have his car repaired.

The teacher has painted her room.

  • A) Someone has had the teacher's room painted.

Verb, Noun, Adjective, and Adverb Word Families

VERBNOUNADJADV
enjoyenjoymentenjoyableenjoyably
originateoriginalityoriginaloriginally
playplayerplayed
useuserusefulusefully
profitprofitableprofitably
acceptacceptationacceptableacceptably
describedescriptiondescriptivedescriptively
devotedevotiondevoteddevotedly
VERBNOUN
... Continue reading "Mastering Passive Voice and Word Formation" »

Climbing Disciplines: Techniques, Gear, and Safety

Classified in Physical Education

Written on in English with a size of 3.94 KB

Understanding Climbing: Disciplines, Techniques, and Safety

Climbing and mountaineering are activities that involve ascending steep walls or rock faces, requiring significant physical strength and mental fortitude. Any upward movement is considered an ascent, whether easy, difficult, or highly challenging, depending on the individual's physical condition. Due to the considerable heights and inherent dangers, the use of protective equipment is crucial.

Types of Climbing Environments and Styles

Climbing encompasses many variations, categorized by the environment, equipment used, and other factors. Based on the climbing environment, several distinct types exist:

  • Outdoor Rock Climbing: Defined by ascending natural rock faces outdoors.
  • Crack Climbing:
... Continue reading "Climbing Disciplines: Techniques, Gear, and Safety" »

Software Modeling and Requirements Specification Principles

Classified in Computers

Written on in English with a size of 2.62 KB

A Model: Abstraction of a System

A model is an abstraction of a semantically closed system.

1.7.2.2 Modeling Language

A modeling language is used for specifying, constructing, visualizing, and documenting software systems. It is essential for capturing the semantics of any software system, especially in complex projects where understanding is difficult without a descriptive model.

Why is it Necessary?

  • Complex systems are hard to understand without a descriptive model.
  • A modeling language is essential for capturing the semantics of any software system during a project.
  • The representation of a model in a modeling language has significant value.

1.7.3 Partition Principle

The partition principle involves dividing a system into parts to reduce complexity.... Continue reading "Software Modeling and Requirements Specification Principles" »

Health Education, Promotion and Prevention for Better Health

Classified in Medicine & Health

Written on in English with a size of 3.11 KB

Health Education, Promotion and Prevention

To educate is to give someone the knowledge, resources, and instructions needed to achieve their development.

Education for Health: Purpose and Scope

The education for health aims to change knowledge, attitudes, and health behaviors of individuals, groups, and communities so they acquire the habits and attitudes necessary to protect and promote their own health and the environment.

It is important for people to adopt healthy habits to prevent illness or to cope with it.

Key Concepts

  • Habit: a behavior that, once learned, is consistently performed even if external circumstances change.
  • Routine: a behavior that may change if external circumstances change.
  • Prevention: actions aimed at enabling people to control
... Continue reading "Health Education, Promotion and Prevention for Better Health" »