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

Sort by
Subject
Level

Digital Modulation, Network Topologies and IP Addressing

Classified in Computers

Written on in English with a size of 2.87 KB

Digital Modulation Techniques

FSK Modulation: Each set of bits is represented by a discrete frequency. In the simplest case, two frequencies are used: F0 and F1.

ASK Modulation: Each set of bits is represented by a discrete amplitude. Information is transmitted based on the amplitude of the carrier. If the bit is 0, it is sent as amplitude A0; if the bit is 1, it is sent as amplitude A1. In the case of ASK2, it reduces to phase modulation, as it changes the sign of the carrier (a 180-degree phase jump), which is the basis of QPSK.

PSK Modulation: Each set of bits is represented by a discrete phase of the carrier. Signaling 0 and 1 by sending the reference carrier and a 180-degree phase jump is commonly called BPSK modulation.

Voice Digitization

... Continue reading "Digital Modulation, Network Topologies and IP Addressing" »

Importing Bitmap Images into Fireworks: Supported Formats

Classified in Computers

Written on in English with a size of 2.59 KB

Importing Bitmap Images into Fireworks

Defining the Canvas

The first step is defining the work area or canvas (remember to have the negative area visible). Then, select the import option from the File menu.

A window like the one below will open.

Locating and Selecting the Image

In the Look in option, you'll search the folder where your image is saved. In the Files of type menu, the formats that Fireworks recognizes are shown. Once you select the file, click Open.

Placing the Image

The following mark will be displayed on the canvas, which means Fireworks is ready to bring in the selected image.

Simply click with your mouse or try to trace the desired size of the image.

That way, the image will appear on the canvas.

Image Properties

This image's properties... Continue reading "Importing Bitmap Images into Fireworks: Supported Formats" »

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

Database Essentials: Understanding Tables, Fields, and Queries

Classified in Computers

Written on in English with a size of 4.22 KB

Database Components: Fields and Records

What is a Table?

Tables are the most fundamental objects in a database. They are used to store data organized into specific categories, structured in rows and columns.

What is a Field?

A field is the most basic unit of a database, representing a single piece of data. The names of fields cannot start with a space or special characters. A collection of fields for a single item is called a record.

Common Database Field Types

Different types of fields are used to store various kinds of data:

  • Text: For alphanumeric characters, names, and descriptions up to 255 characters.
  • Memo (Long Text): Used to store text longer than 255 characters with rich formatting options. It is ideal for notes, long explanations, and formatted
... Continue reading "Database Essentials: Understanding Tables, Fields, and Queries" »

Network Devices Explained: Bridges, Switches, and Routers

Classified in Computers

Written on in English with a size of 3.34 KB

Bridges and Switches: Essential Network Elements

Bridges (Puentes) and Switches are network elements that possess control capabilities, storing and forwarding the frames they receive through their ports based on their content.

They are primarily used to interconnect similar or different Local Area Networks (LANs). A bridge isolates traffic between network segments.

For instance, if an Ethernet network needs to exceed 2.5 km in length, a bridge can be installed to segment the network. By assigning each segment a length not exceeding 2.5 km, a total network length of up to 5 km can be achieved.

OSI Layer 2 Operation

Bridges operate at OSI Layer 2 (Data Link Layer). Their basic unit of operation is the frame.

Phases in Frame Pathing Between Segments:

... Continue reading "Network Devices Explained: Bridges, Switches, and Routers" »

Essential Components and Architecture of Modern Computers

Classified in Computers

Written on in English with a size of 2.43 KB

Essential Components of a PC

Hardware

Hardware refers to the set of physical elements, machinery, and components (such as the microprocessor, monitor, and keyboard) that constitute a PC.

Software and Data

Software consists of programs or applications, along with the data or information they handle and store. Computers transform data (raw input) into information (processed results). To be useful, information must meet the following criteria:

  • Relevant: Applicable to the current situation.
  • Current: Updated and available when needed.
  • Right: Accurate in all details.
  • Concise: Condensed into a reasonable size.
  • Comprehensive: All important elements are covered.

Human Intervention and Procedures

People: Computers require human intervention to function effectively.... Continue reading "Essential Components and Architecture of Modern Computers" »

Essential Computer Hardware and Software Components Explained

Classified in Computers

Written on in English with a size of 2.23 KB

Understanding Computer Hardware and Software

Hardware refers to the physical, electronic components of a computer that you can touch. Software is the general term used to describe all programs that run on computer hardware.

Core Hardware Components

  • Power Supply Unit (PSU): Supplies power to the computer by converting AC current to DC current. It also regulates voltage to eliminate spikes and surges.
  • Motherboard: The main printed circuit board in the computer, designed to connect all internal components together.
  • Microprocessor (CPU): An electronic circuit that processes programs, stores information, and performs calculations.
  • Chipset: A group of microcircuits that orchestrate data flow between key components, including the CPU, main memory, secondary
... Continue reading "Essential Computer Hardware and Software Components Explained" »

Core Concepts in Robotics and Structured Programming

Classified in Computers

Written on in English with a size of 3.53 KB

Robotics Fundamentals

  • Machines involved in an assembly line, often appearing very smart, are known as industrial robots.
  • The third generation of robots is characterized by using computers for control and having environmental perception through sensors.
  • The word 'robot' originates from a term meaning servant or slave.
  • Robotics is the branch of science and technology that studies the design and construction of machines capable of performing tasks typically done by humans or requiring intelligence.
  • Light sensors and bumpers are devices that allow robots to locate themselves or objects in their environment.

Structured Programming and Algorithms

  • Structured programming requires that all programs are built from three basic control structures: sequence, selection,
... Continue reading "Core Concepts in Robotics and Structured Programming" »

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

Database Field Properties and Data Types

Classified in Computers

Written on in English with a size of 3.5 KB

Essential Database Field Properties

  • Validation Rule and Validation Text: This is a standard that all data in a field must meet. If data is entered that does not meet this standard, the tables will not be updated correctly. The Validation Text is the message that appears on the screen when you enter a figure that does not meet the validation rule; this message reports the specific error being committed.
  • Required: This option lets you choose whether the field will be mandatory. If you select "Yes," you cannot leave this field blank, and the table is blocked until it is filled.
  • Input Mask: This sets the default format that the data will take automatically. We use 0 for numbers and L for letters. Example: 91 881 14 000 00 00 79/00
  • Indexed: This lets
... Continue reading "Database Field Properties and Data Types" »