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

Sort by
Subject
Level

Information Security Essentials: Concepts and Practices

Classified in Computers

Written on in English with a size of 8.2 KB

Fundamentals of Information Security

Core Security Principles

  • Confidentiality (Privacy): Ensures information is not accessible to unauthorized individuals.
  • Integrity: Guarantees information can only be modified by authorized personnel.
  • Availability (Operability): Ensures information is accessible and usable when needed.

Common Information Security Threats

Software and System Vulnerabilities

  • Bug: An error or flaw in a computer program or system that causes it to produce an incorrect or unexpected result, or to behave in unintended ways.
  • Trojan: A type of malware that disguises itself as legitimate software, allowing external users unauthorized access to a computer system.

Network and Data Attacks

  • IP Spoofing: The act of creating Internet Protocol (IP)
... Continue reading "Information Security Essentials: Concepts and Practices" »

Parcial_2_antonio_B

Classified in Computers

Written on in English with a size of 3.52 KB


Criteria to organize files · quick-access necessary when a single record is accessed. -not needed if a file will be processed in batches. Easy to update-a file on CD-ROM updates and never ease storage is not considered economic. -minimum data redundancy. -redundancy can be used to speed up access. · a single-index · Maintenance cheaper. -fewer errors.· Reliability A directory can have subdirectories, thus forming a hierarchical structure in the shape of an inverted tree, is symbolized by a bar of division (/) Some directories on Linux:/ bin Contains executable programs that are part of the Linux operating system . Many Linux commands like cat, cp, ls, more and tar are located in this directory. • / bootIt contains the kernel (or... Continue reading "Parcial_2_antonio_B" »

Network Topologies, Protocols, and Architectures

Classified in Computers

Written on in English with a size of 2.42 KB

Network Topologies

Ring Topology

Connects hosts in a physical ring. The last host connects to the first.

Star Topology

Connects all cables to a central point.

Extended Star Topology

Connects individual stars using hubs or switches, extending network coverage.

Hierarchical Topology

Similar to extended star, but uses a computer to control traffic instead of hubs/switches.

Mesh Topology

Provides maximum protection by connecting each host to others, ensuring service continuity.

Network Communication Methods

Broadcast

Each host sends data to all others on the network. Access is first-come, first-served (e.g., Ethernet).

Transmission Tokens

Controls access via sequential token transmission. Hosts send data when they have the token (e.g., Token Ring, FDDI).

Network

... Continue reading "Network Topologies, Protocols, and Architectures" »

Essential Component Properties and Event Handling Techniques

Classified in Computers

Written on in English with a size of 3.32 KB

Fundamental Component Configuration and Interaction

Defining and Displaying the Context Menu

The context menu is created using the PopUpMenu component. To ensure it appears correctly when clicked on a form, you must set the form's PopupMenu property to reference the created PopUpMenu component.

Purpose of the Execute Method

The Execute method is used to create and display a dialog box.

Execute Method Return Values and Conditions

The Execute method returns a Boolean value:

  • True is returned if the user:
    • Triggers the OK button.
    • Double-clicks a file name.
    • Presses Enter on the keyboard.
  • False is returned if the user:
    • Triggers the Cancel button.
    • Presses Esc.
    • Closes the dialog box.

Defining Short and Long Component Hints

Hints (short and long tips) are defined using... Continue reading "Essential Component Properties and Event Handling Techniques" »

ArcView GIS Data Management and Mapping Techniques

Classified in Computers

Written on in English with a size of 4.17 KB

This document provides practical instructions and solutions for common tasks and challenges encountered when working with ArcView GIS, covering topics from database integration and map creation to geocoding and spatial analysis.

Core ArcView GIS Operations

Joining External Data in ArcView GIS

To join an external database with attributes of the current theme:

  • Open the properties of the item table (theme).
  • Open the external table to be joined.
  • Identify the common field in both tables.
  • Select the common field in the external table.
  • Select the corresponding common field in the item table's properties.
  • Click the Join icon.
Adding and Arranging Themes in ArcView

To add a new theme to a view and display it in the background:

  • Add the theme using the Add Theme
... Continue reading "ArcView GIS Data Management and Mapping Techniques" »

TCP/IP Transport Layer Quiz: Port Numbers and Flow Control

Classified in Computers

Written on in English with a size of 4.11 KB

Chapter 4: Transport Layer Concepts

Networking Questions and Answers

  1. Transport Layer Header Analysis (Choose two)

    On the basis of the transport layer header shown in the diagram, which of the following statements describe the established session? (Choose two.)

    1. This is a UDP header.
    2. This contains a Telnet request.
    3. This contains a TFTP data transfer.
    4. The return of this packet will have a remote host acknowledgment number of 43,693.
    5. This is a TCP header.
  2. TCP/IP Well-Known Port Numbers Range

    In the TCP/IP data encapsulation, which range of port numbers identifies all known applications?

    1. 0–255
    2. 256–1022
    3. 0–1023
    4. 1024 to 2047
    5. 49,153 to 65,535
  3. Purpose of Port Numbers in TCP Header

    Why are port numbers included in the TCP header of a segment?

    1. To indicate the correct
... Continue reading "TCP/IP Transport Layer Quiz: Port Numbers and Flow Control" »

System Design, Development, and Project Management

Classified in Computers

Written on in English with a size of 2.58 KB

Technical Design of Systems

At the end of this activity, the following items are obtained:

  • Modular design of the system.
  • Description of interfaces between system modules.
  • Description of interfaces to other system modules.
  • Definition of the user interface.
  • Description of system components.

Structured Programming Techniques

Data Entry:
This part of the program consists of instructions that take information from an input/output device and transfer it to main memory for further processing.
Process or Algorithm:
The set of instructions that process the input data to obtain new information.
Output Results:
This consists of instructions that send the results of a process to an input/output device.

System Technology Environment: Objectives

The objectives include:... Continue reading "System Design, Development, and Project Management" »

Leveraging AI for Index Recommendations and Regular Path Queries

Classified in Computers

Written on in English with a size of 4.45 KB

AI Meets AI: Leveraging Query Executions to Improve Index Recommendations

How artificial intelligence (AI) can benefit automated indexing (AI)?: Comparing the execution cost of two plans (different index configurations of same query) is key for index tuning. Instead of using optimizer’s estimates for such comparison, formulating it as a classification task in machine learning results in significantly higher accuracy.

MOTIVATION:

  • Being able to fully automate index recommendation and implementation is a significant value-add for improving query execution cost.
  • Requirement: creating or dropping indexes should not cause significant query performance regressions - users enforce a no query regression constraint.
  • Using the optimizer’s estimates to
... Continue reading "Leveraging AI for Index Recommendations and Regular Path Queries" »

MS-DOS Memory Management: Conventional, Upper, Expanded

Classified in Computers

Written on in English with a size of 3.53 KB

MS-DOS Memory Management

The memory management depends on the version of MS-DOS we use and the CPU that we have.

Processor Memory Limits

Processors have different address limits:

  • 8088 / 8086 (XT): handle up to 1 MB
  • 286 (AT): handle up to 16 MB
  • 386: handle up to 4096 MB

Conventional Memory

Conventional memory is where programs run; you must manage it properly and release memory when possible.

0 Kb

S.O.

Contains the interrupt table, computer specification, etc.

2 KB

Core MS-DOS Files

The core files include (examples by version):

  • IO.SYS (depending on the version)
  • MSDOS.SYS (system)
  • Other variable core components

Order File (CONFIG.SYS)

Configuration directives and settings found in CONFIG.SYS:

  • BUFFERS
  • FCBS
  • FILES
  • LASTDRIVE
  • STACKS

Device Drivers

Device drivers loaded via

... Continue reading "MS-DOS Memory Management: Conventional, Upper, Expanded" »