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

Sort by
Subject
Level

Combinational and Sequential Logic Circuits Explained

Classified in Computers

Written on in English with a size of 2.22 KB

Combinational Logic Circuits

Combinational logic is a type of digital logic implemented by Boolean circuits where the output is a pure function of present inputs only. These circuits are built to implement fixed digital logic and can be used to store a fixed set of instructions (ROM) or programmed to implement specific logic (PLD and PLA circuits).

Sequential Logic Circuits

Sequential logic differs in that the output depends not only on the present input but also on the history of all previous inputs, as these circuits possess memory.

Key Components

  • Clock: A signal added to indicate when to read instructions or fetch data to the combinational circuit.
  • Operations: Combining computing tasks with management to control when operations occur and how to
... Continue reading "Combinational and Sequential Logic Circuits Explained" »

Defining Computer Programming Languages and Their Structure

Classified in Computers

Written on in English with a size of 2.99 KB

Programming Language Fundamentals

A programming language is an artificial language designed to express computations that can be performed by a machine, particularly a computer. Programming languages can be used to create programs that control the behavior of a machine, to express algorithms precisely. Thousands of different programming languages have been created, mainly in the computer field, with many more being created every year. Most programming languages describe computation in an imperative style, i.e., as a sequence of commands.

Requirements and Objectives of a Programming Language

1. Function and Target

A computer programming language is a language used to write computer programs, which involve a computer performing some kind of computation... Continue reading "Defining Computer Programming Languages and Their Structure" »

Understanding SEO: A Comprehensive Guide to Search Engine Optimization

Classified in Computers

Written on in English with a size of 4.24 KB

Understanding Search Engine Optimization (SEO)

Crawling and Indexing

Web crawlers, also known as bots, robots, or spiders, are software programs designed to follow links, gather information, and send it back to search engines for indexing. This process allows search engines to understand the content and structure of websites.

Evolution of Google Search Algorithms

Over the years, Google has implemented various algorithm updates to improve search results and combat spam. Some notable updates include:

  • Google Dance (2002): Click-through rates started influencing search rankings.
  • Austin (2004): Targeted websites with keyword stuffing.
  • Google Suggest (2008) & Google Instant (2010): Introduced predictive search based on search history.
  • Hummingbird (2013)
... Continue reading "Understanding SEO: A Comprehensive Guide to Search Engine Optimization" »

Software Configuration Management Fundamentals

Classified in Computers

Written on in English with a size of 2.77 KB

Software Configuration Management (SCM)

Definition of Software Configuration Management

Software Configuration Management (SCM) is a set of management disciplines within a software engineering process used to develop a baseline. SCM encompasses the disciplines and techniques of initiating, evaluating, and controlling change to software products during development and maintenance.

Administering SCM

Administering Software Configuration Management is a crucial project function with the goal of making technical and managerial activities more effective. SCM can be administered in several ways:

  • Organization-wide: A single SCM team manages configuration for the whole organization.
  • Project-specific: A separate configuration management team is established
... Continue reading "Software Configuration Management Fundamentals" »

DIN 2345: A Comprehensive Guide to Translation Contracts

Classified in Computers

Written on in English with a size of 3.2 KB

What is the DIN 2345 Standard?

The DIN 2345 standard, published by the German Institute for Standardization in 1998, regulates translation contracts. It defines terms and activities to standardize and unify translation procedures, ensuring a smooth process. Key aspects include the organization of the translation process, handling of the source text (ST) and target text (TT), and revision of the TT.

Organization of a Translation Project

According to DIN 2345, organizing a translation project involves:

  • Translator selection
  • Client-translator agreements
  • Client support for the translator
  • Sub-contracting procedures
  • Documentation

Requirements Concerning the Source Text (ST)

DIN 2345 outlines specific requirements for the ST:

  • The client is responsible for the
... Continue reading "DIN 2345: A Comprehensive Guide to Translation Contracts" »

Using Voicemail, Intranet, and More

Classified in Computers

Written on in English with a size of 2.63 KB

Using Voicemail

  • Contact someone off the hook: Press this button
  • Delete: Press receiver
  • Dial a phone number: Record an outgoing message
  • Enter your access code: Replay
  • Fast forward: Retrieve
  • Listen to incoming messages: Review
  • Location: Rewind
  • Loud/Loudspeaker: Volume
  • Modify: Save

Using the Intranet

  • Attachment: doc. adjunto
  • Background: fondo
  • Bold: negrita
  • Bullet: viñeta
  • Column: Lower case letters: minúscula
  • Copy: Paragraph
  • Cut: Password
  • Desktop: Paste
  • Double click: Reply: contestar
  • Flow chart: organigrama
  • Font: Row: fila
  • Forward: reenviar
  • Heading: título
  • Icon: Italics: cursiva
  • Log in: iniciar sesión
  • Log out: cerrar sesión
  • Underline: subrayar
  • Upper case letters: mayúscula
  • Username:

Extra

  • Alignment: alineación
  • Flash: destello
  • Headset: auriculares
  • Hold: espera
  • Increased security:
... Continue reading "Using Voicemail, Intranet, and More" »

Implementación de Triggers SQL para Gestión de Prácticas y Vehículos

Classified in Computers

Written on in English with a size of 4.17 KB

Tarea 1: Registrar Kilometraje por Práctica Insertada

Requisito: Crear un TRIGGER donde, cada vez que se inserta una práctica a un alumno, se deben sumar 50 KMS al vehículo que tiene asignado el alumno.

Definición del Trigger PRAC (Inserción de Práctica)

CREATE TRIGGER PRAC
ON PRACTICA
FOR INSERT
AS
    DECLARE @CODMON INT;
    DECLARE @CODAL INT;

    -- 1. Obtener el ID del Monitor asignado al Alumno de la práctica insertada
    SELECT @CODAL = A.CodMon#
    FROM ALUMNO A
    INNER JOIN INSERTED I ON A.CodAl# = I.CodAl#;

    -- Nota: La siguiente selección es redundante o lógicamente incorrecta en este contexto:
    -- SELECT @CODMON = M.CodMon#
    -- FROM MONITOR M
    -- INNER JOIN ALUMNO A ON M.CodMon# = A.CodAl#
    -- WHERE M.
... Continue reading "Implementación de Triggers SQL para Gestión de Prácticas y Vehículos" »

Singly Linked List Data Structure in C: Full Implementation

Classified in Computers

Written on in English with a size of 9.45 KB

Singly Linked List Data Structure in C: Full Implementation

This document provides a comprehensive implementation of a singly linked list in C, demonstrating fundamental operations such as appending nodes, inserting nodes at specific positions, deleting nodes, calculating list length, and displaying list contents. Understanding linked lists is crucial for mastering dynamic data structures in C programming.

Understanding the Node Structure

A singly linked list is composed of individual elements called nodes. Each node contains two primary parts: the data it holds and a link (or pointer) to the next node in the sequence. The root pointer always points to the first node of the list, or is NULL if the list is empty.


#include <stdio.h>
#include
... Continue reading "Singly Linked List Data Structure in C: Full Implementation" »

Key Concepts in Information Systems and Technology

Classified in Computers

Written on in English with a size of 5.24 KB

Expert systems

have four major components. Which of the following is not one of the four?

  • Interference motor

Major categories of E-commerce

include all of the following except which one?

  • Business to department (B2D)

Computing environment

that is always present and is capable perceive the surroundings and offer recommendations based on individual need and requirement is known as:

  • Contextual computing

AI application

includes Bots, Virtual agents, and Intelligent virtual agents. Which of the following best describes this AI technology?

  • Intelligent agents

Application used in all the functions of a business

which supports decision making throughout the organization is known as___

  • Enterprise system

Four phases of the decision-making process

in a typical organization... Continue reading "Key Concepts in Information Systems and Technology" »

MIPS Hardware Multiplication and Branch Addressing Solutions

Classified in Computers

Written on in English with a size of 5 KB

MIPS Arithmetic and Addressing Solutions

This document provides detailed solutions for problems related to MIPS arithmetic hardware (non-optimized and optimized multiplication) and MIPS instruction addressing (beq, bne, and j instructions).

Multiplication Hardware Constants

  • UNSIGNED = 0
  • SIGNED = 1

Non-Optimized Multiplication Hardware

Unsigned Multiplication: 10111 × 01011

Use the non-optimized multiplication hardware to perform unsigned multiplication 10111 × 01011. Show the bit value of the multiplicand, the multiplier, and the product after Step 4, separated by commas.

Answer: 0101110000, 00000, 0011111101

Signed Multiplication: 1100111 × 0011011

Use the non-optimized multiplication hardware to perform signed multiplication 1100111 × 0011011.... Continue reading "MIPS Hardware Multiplication and Branch Addressing Solutions" »