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

Sort by
Subject
Level

Computer Hardware and Software Components

Classified in Computers

Written on in with a size of 3.85 KB

Computer Hardware and Software Components

Computer hardware is the collection of physical elements that constitutes a computer system. It refers to the physical parts or components of a computer, such as the monitor, mouse, keyboard, etc. All of these are physical objects that can be touched. In contrast, software is a set of instructions that can be stored and run by hardware. Software is any set of machine-readable instructions that directs a computer's processor to perform specific operations. A combination of hardware and software forms a usable computing system.

Operating System (OS)

An operating system (OS) is a collection of software that manages computer hardware resources and provides common services for computer programs. The operating

... Continue reading "Computer Hardware and Software Components" »

Pentium P5 Pipelining and Control Word Architecture

Classified in Computers

Written on in with a size of 2.78 KB

Pentium P5 Processor Pipelining Stages

The Pentium processor, specifically the Pentium Classic (P5) architecture, featured a five-stage pipeline. The five stages of pipelining in the Pentium processor are as follows:

  1. Instruction Fetch (IF): This stage is responsible for fetching instructions from the memory. The instruction pointer determines the next instruction to be fetched, and the instruction cache is utilized to improve performance by storing frequently accessed instructions.
  2. Instruction Decode (ID): In this stage, the fetched instruction is decoded. The opcode and operands are identified, and any necessary data dependencies or control hazards are resolved.
  3. Execution (EX): The execution stage performs the actual computation or operation specified
... Continue reading "Pentium P5 Pipelining and Control Word Architecture" »

Essential Web and Software Terminology Definitions

Classified in Computers

Written on in with a size of 3.47 KB

Essential Web and Software Terminology

Web Navigation and Structure

  • External Hyperlink

    A hyperlink that opens a webpage located on a remote computer. External hyperlinks provide the links that tie the Web together and rely on HTML anchor tags.

  • Back Button

    A basic control used across various technologies. In a web browser, a back button allows an end user to navigate to a previously viewed webpage. A back button is also a feature of smartphone software and other consumer-oriented technologies.

  • Navigation Structure

    When using navigation requests, for each BSP application, determine the initial page, the navigation methods, and the target pages in a table with navigation paths.

  • Refresh

    An act or function of updating the display on a screen.

Web Elements

... Continue reading "Essential Web and Software Terminology Definitions" »

Understanding Operating Systems: File, Task, and User Management

Classified in Computers

Written on in with a size of 2.74 KB

File Management

File management is the system an operating system uses to organize and keep track of data. The operating system stores data in units called files, determines how files are stored, efficiently uses available storage space, creates a record of all file usage, and carries out every task related to files and folders.

File names typically have this structure:

filename.extension

Task and User Management

Task Management

Task management is the part of the operating system that controls the running of one or more programs on a computer simultaneously. Today's widely used operating systems support multitasking, allowing multiple tasks to run concurrently, taking turns using the computer's resources.

User Management

With user management, the operating... Continue reading "Understanding Operating Systems: File, Task, and User Management" »

Digital Certificates, HTTPS, and Spyware Protection Explained

Classified in Computers

Written on in with a size of 2.2 KB

Understanding Digital Certificates

A digital certificate (or electronic certificate) is a computer file generated by a certification authority that associates identity data with a natural person, organization, or company, confirming their digital identity on the internet.

What Is Code Signing?

Code signing is a method that uses a certificate-based digital signature to sign executables and scripts. This process verifies the author’s identity and ensures the code has not been altered or corrupted since it was signed. This helps users and software determine whether an application can be trusted.

HTTPS and SSL Encryption

HTTPS (Hypertext Transfer Protocol Secure) is an extension of HTTP that utilizes SSL (Secure Sockets Layer) encryption. It creates... Continue reading "Digital Certificates, HTTPS, and Spyware Protection Explained" »

C++ Loops and File Handling: A Deep Dive

Classified in Computers

Written on in with a size of 4.31 KB

C++ Loops: While, Do-While, and For

While Loop Format

while (condition)
{
    statements(s);
}

How While Loop Works

If the condition is true, the statement(s) are evaluated again. If false, the loop is exited.

While Loop Example

int val = 5;
while (val >= 0)
{
    cout << val << " ";
    val = val - 1;
}

A while loop is a pretest loop (the condition is evaluated before the loop executes).

  • If the condition is initially false, the statement(s) in the body of the loop are never executed.
  • If the condition is initially true, the statement(s) in the body will continue to be executed until the condition becomes false.

The loop must contain code to allow the condition to eventually become false so the loop can be exited. Otherwise, you have... Continue reading "C++ Loops and File Handling: A Deep Dive" »

Windows Server Configuration Scenarios for IT Professionals

Posted by vinnyaguiar and classified in Computers

Written on in with a size of 4.8 KB

Trey Research

  • Deploy a Network Load Balancing (NLB) cluster using an .msi file.
  • Minimize the number of Virtual Machines (VMs).
  • Configure Special Auditing.
  • Install Remote Server Administration Tools (RSAT).
  • Configure Distributed File System (DFS) Replication.
  • Configure a DFS Namespace.

Proseware, Inc.

  • Create Data Collector Sets.
  • Configure settings on a Remote Desktop (RD) Virtualization Host.
  • Use dynamically expanding Virtual Hard Disks (VHDs).
  • Deploy applications using RemoteApp.
  • Apply Windows Management Instrumentation (WMI) filtering to Group Policy Objects (GPOs).
  • Manage Local Users and Groups.
  • Configure Windows Search Service on the file server and add the Legal share to the index for legal department clients.

School of Fine Art

  • Configure printer driver
... Continue reading "Windows Server Configuration Scenarios for IT Professionals" »

Understanding MapReduce Design Patterns

Classified in Computers

Written on in with a size of 18.71 KB

MapReduce is a computing paradigm for processing data that resides on hundreds of computers, which has been popularized recently by Google, Hadoop, and many others. The paradigm is extraordinarily powerful, but it does not provide a general solution to what many are calling “big data,” so while it works particularly well on some problems, some are more challenging. This book will teach you what problems are amenable to the MapReduce paradigm, as well as how to use it effectively. At first glance, many people do not realize that MapReduce is more of a framework than a tool. You have to fit your solution into the framework of map and reduce, which in some situations might be challenging. MapReduce is not a feature, but rather a constraint.... Continue reading "Understanding MapReduce Design Patterns" »

Python Programming Basics: Essential Code Snippets

Classified in Computers

Written on in with a size of 4.07 KB

Python Fundamentals: Practical Code Examples

This document presents a collection of basic Python code snippets, demonstrating fundamental programming concepts such as conditional statements, loops, data input, and list manipulation. Each example is designed to illustrate a specific programming principle, making it ideal for beginners learning Python.

Compare Car Top Speeds with Python

This Python script compares two user-entered car speeds to determine which is faster, showcasing basic input and conditional logic.

car_a = int(input("Please enter the top speed of a Ferrari: "))
car_b = int(input("Please enter the top speed of a Lamborghini: "))

if car_a >= car_b:
    print("The fastest car is a Ferrari.")
elif car_b > car_a:
    print("The
... Continue reading "Python Programming Basics: Essential Code Snippets" »

Mastering the Unified Process Transition Phase

Classified in Computers

Written on in with a size of 3.53 KB

Transition Phase

The transition phase is entered when a baseline is mature. A usable subset of the system has been built with acceptable quality levels and user documentation. It can be deployed to the user community.

  • For some projects, the transition phase marks the starting point for another version of the software system.
  • For other projects, the transition phase signifies the complete delivery of the software system to a third party responsible for operation, maintenance, and enhancement.

Objectives of the Transition Phase

  • Achieve user independence (users can support themselves).
  • Ensure the deployment baseline is complete and consistent with the criteria in the project agreement.
  • Ensure the final baseline can be built as rapidly and cost-effectively
... Continue reading "Mastering the Unified Process Transition Phase" »