Operations

2. CORE FORMULAS

Control Limits:
UCL = μ + 3σ
LCL = μ − 3σ

1–10–100 Rule → Early detection saves exponential cost.

Cost of Quality = POC + PONC
POC = Prevention + Appraisal
PONC = Internal failure + External failure

3. TQM PRINCIPLES (WRITE IN 3–4 LINES EACH)

1. Customer Focus
TQM places customer satisfaction at the center of all activities. Organizations must understand VOC and align processes to meet CTQ requirements.

2. Process Management
Quality problems arise from faulty processes,

...

See on Student Notes »

Operations

1. KEY DEFINITIONS

Forecast = Estimate of future demand using past data + judgment
Independent demand = External | must forecast
Dependent demand = Derived from BOM | MRP handles

Time Series = Data over time → components: Trend (T) | Seasonality (S) | Cyclical (C) | Random (R)

Stationary series = Mean, variance constant | no trend/seasonality

Error (eₜ) = Aₜ − Fₜ

Good forecast → unbiased | low error | stable

Short term = days/weeks | Long term = years

Judgmental methods = Delphi | Sales

...

See on Student Notes »

music

  • Staff – The five lines and four spaces where music is written.

  • Clef – Symbol at the start of a staff that indicates pitch range (e.g., treble, bass).

  • Time Signature – Shows the number of beats per measure and which note gets one beat (e.g., 4/4).

  • Key Signature – Sharps or flats at the beginning of a staff indicating the key.

  • Measure (Bar) – Segment of music containing a set number of beats.

  • Beat – The basic unit of time in music.

  • Tempo – Speed of the beat (e.g., Allegro

...

See on Wikiteka »

Computer 2

1.Write the code in c++ to declared and intialize a pointer

Ans:

#include <iostream>

int main() {

    int num = 10;    

    int *ptr = &num;  

    cout << "Value of num: " << num << endl;

    cout << "Address of num: " << &num << endl;

    cout << "Pointer ptr stores: " << ptr << endl;

    cout << "Value pointed by ptr: " << *ptr << endl;

    return 0;

}

 2.Write a c++ program to add two matrix

...

See on Wikiteka »

Psycholinguistics

Formulation

This stage transforms the idea into linguistic form.

a) Grammatical Encoding

•Selection of lemmas (words with syntactic info).

•Assignment of grammatical roles (subject, object).

•Construction of syntactic structure.

•Agreement features (tense, number).

b) Phonological Encoding

•Retrieval of phonological form.

•Syllabification.

•Stress assignment.

•Phoneme ordering.

Articulation

•Motor cortex activates speech muscles.

•Speech is physically produced.

•Highly automated

...

See on Student Notes »

njjjj

Imagine being prepared for adulthood before you are allowed to figure yourself out. In Jamaica Kincaid’s “Girl,” patriarchal social values are introduced through a mother’s constant instructions, as Kincaid uses the story’s single-sentence structure, repetition, and minimal dialogue to demonstrate how gender expectations are imposed on girls through constant pressure that teaches them their value depends on domestic skills and controlled behavior. Control often begins by limiting a girl’s...

See on Wikiteka »

Computer

* Derived Class: A class that inherits properties (data and methods) from another class. It represents the "Child" in an inheritance relationship.

 * Base Class: The original class whose properties are inherited by another class. It acts as the "Parent" or "Blueprint."

 * Constructor: A special member function that is automatically called when an object of a class is created. Its main job is to initialize the object.

 * Destructor: A special member function that is automatically called when an...

See on Student Notes »

Major 9

                                                             #)FOREIGN POLICY : MEANING

Foreign policy, also known as external policy, is the set of strategies and actions a state employs in its interactions with other states, unions, and international entities. It encompasses a wide range of objectives, including defense and security, economic benefits, and humanitarian assistance. The formulation of foreign policy is influenced by various factors such as domestic

...

See on Student Notes »

xxvvds

IF – Grammar Cheat Sheet

1️⃣ First Conditional

If + present simple → will + verb

👉 real / possible future result

Example:

  • If you break the law, you will pay a fine.


2️⃣ Second Conditional

If + past simple → would + verb

👉 unreal / imaginary situation

Example:

  • If I were rich, I would hire a lawyer.


Key notes

  • Use will only in the main clause, not after if.
    ❌ If you will steal…
    ✅ If you steal…

  • You can swap the order:

    • If you study, you will pass.

    • You will

...

See on Wikiteka »