Total Quality Management (TQM) Implementation Guide

Evolution & Scope of the QA Concept

A. Inspection-Oriented Assurance

Initially, quality assurance (QA) was heavily focused on inspection. Japan banned defective products, while the West and Hong Kong equated QA with inspection. This stemmed from the assumption that strict supervision of workers was necessary, leading to the creation of independent inspection divisions. The authority of inspectors increased, as did the percentage of inspectors compared to line workers (1-5% in Japan, 15% in the

Read More

DS220 Exam 1 Notes: Relational Databases & SQL

DS220 Exam 1 Notes:

Ch. 1, 2, 3 Key Terms:

A Relation is a 2D table with rows and columns. Columns contain attributes, each with a unique name and the same datatype. Rows contain data about cases, cells hold one value, and no two rows can be identical.

Relational Databases join tables together using values to:

  • Reduce redundancy
  • Preserve relationships
  • Allow for partial data

Keys represent data in a relational database and are one or more columns that identify a row. Composite keys contain 2 or more columns.

Read More

Understanding Canine Body Language: A Guide

Understanding Dog Body Language

Introduction

Dogs, our beloved four-legged companions, communicate with us in various ways, primarily through their body language. Understanding their subtle cues can significantly enhance our relationship with them, allowing us to anticipate their needs and respond appropriately. This guide will delve into the intricacies of canine body language, providing insights into their emotions, intentions, and overall well-being.

Tail Wags: Not Always Happy

While a wagging tail

Read More

C++ Programming Examples: Templates, Data Structures, and Algorithms

C++ Programming Examples

Templates

Maximal Function

This template function returns the larger of two items:

template<typename item>
item maximal(item a, item b) {
    if (a > b)
        return a;
    else
        return b;
}

Swap Function

This template function swaps the values of two items:

template<typename item>
void swap(item& x, item& y) {
    item temp = x;
    x = y;
    y = temp;
}

Linked Lists

Bag Class

This template class implements a bag data structure using a linked list:

Read More

Assembly Language Examples: Calculators, Palindrome, Loaders

CALCU

Assumptions:

  • ss: Stack Segment
  • cs: Code Segment
  • ds: Data Segment

Procedure:

Initialization:

  1. Display a message using a macro.
  2. Initialize necessary messages and variables in the code segment.

Code Segment:

  1. Specify the address of the data segment to the data register.
  2. Read the choice using the read procedure.
  3. Compare the choice:
    • If the choice is 1: Read values into registers, add them using the add operator, call the print procedure, and jump to exit.
    • If the choice is 2: Read values into registers, subtract
Read More

Web Development Tutorial: HTML, CSS, JavaScript, PHP & AJAX

Web Development Basics

HTML

HTML (HyperText Markup Language) is the foundation of web pages. It provides the structure and content of a webpage using elements like headings, paragraphs, images, and links.

Forms

HTML forms allow users to input data, which can then be submitted to a server for processing. They are essential for tasks like user registration, login, and data collection.

Input Fields

Input fields within forms collect specific types of data, such as text, numbers, or selections. They are defined

Read More