Organization Theory

ORGANIZATION THEORY
Study of how orgs function, structure themselves, make decisions, and interact with environment.

ORGANIZATION
Group of people working together to achieve common goals by coordinating resources.

PURPOSE OF ORGANIZATIONS
Achieve goals, create value, produce goods/services, adapt to environment, enable innovation, manage coordination.

TYPES OF ORGANIZATIONS
Profit: profit maximization via goods/services
Non-profit: social/service goals, no profit motive
Government: public service, policy

...

See on Wikiteka »

mandeep

Q1) WAP that accepts the marks of 5 subjects and finds the Sum and Percentage 

#include <stdio.h> 
int main() 

    int marks[5]; 
    int total = 0; 
    float percentage; 

    for(int i = 0; i < 5; i++) 
    { 
        scanf("%d", &marks[i]); 
        total += marks[i]; 
    } 

    percentage = (total / 5.0); 
    printf("Sum: %d\n", total); 
    printf("Percentage: %2.f%%\n", percentage); 

    return 0; 


Q2)  WAP that swaps value of two variables 

#

...

See on Student Notes »

unit 2

1. Define Clipper, and explain clipping at two independent levels?

A.A clipper (also known as a limiter) is an electronic circuit used to remove or "clip" portions

of a signal that exceed a certain threshold voltage level without distorting the remaining

part of the waveform. Clippers are used in various applications, such as signal conditioning,

waveform shaping, and protecting circuits from voltage spikes 

Clipping at Two Independent Levels:

Clipping at two independent levels involves limiting

...

See on Student Notes »

C PROGRAMMMING

wfSCE5je3rPDgAAAABJRU5ErkJggg==



2.4 Leap Year


#include <stdio.h>
int main()
{
    int y;
    scanf("%d", &y);
    if ((y % 4 == 0 && y % 100 != 0) || y % 400 == 0)
        printf("Leap Year");
    else
        printf("Not Leap Year");
    return 0;
}

2.5 Simple Calculator Using Switch

#include <stdio.h>
int main()
{
    char op;
    float a, b;
    scanf(" %c %f %f", &op, &a, &b);
    switch (op)
    {
        case '+': printf("%.2f", a + b); break;
        case '-': printf("%

...

See on Wikiteka »

ghrtdhrt

1. V-I Characteristics of a PN Junction Diode?

A.The voltage-current (V-I) characteristics of a PN junction diode describe

the relationship between the voltage applied across the diode and the resulting

current that flows through it. This relationship is highly nonlinear and is typically'

divided into three regions: forward bias, reverse bias, and breakdown. 

 Forward Bias Region:In the forward bias region, the positive terminal of the voltage

source is connected to the p-type material, and

...

See on Student Notes »

HRM OB

Golden rule:
HR is not admin. HR is a strategic system aligned to business outcomes.

Use words like:
Strategic alignment
Value creation
Human capital
Metrics
Fit with organizational goals

UNIT 1: INTRODUCTION AND CONTEMPORARY ROLE OF HR

Traditional HR vs Contemporary HR (WRITE THIS TABLE IF POSSIBLE)
Traditional HR: Administrative
Contemporary HR: Strategic partner

Traditional HR: Cost center
Contemporary HR: Value creator

Traditional HR: Transactional
Contemporary HR: Data driven

Traditional HR: Focus on

...

See on Student Notes »

dydaktyka

1.CZYM JEST DYDAKTYKA I CO STANOWI JEJ PRZEDMIOT BADAŃ?

DYDAKTYKA- nauka zajmująca się badaniem procesów nauczania oraz uczenia się i wartościami między nimi. Czego , jaki po co się uczyć

Przedmiotem badań jest:

proces nauczania–uczenia się (relację nauczyciel–uczeń),

  • cele kształcenia – po co uczymy i jakie efekty chcemy osiągnąć,

  • treści kształcenia – czego uczymy,

  • metody nauczania – jak uczymy,

  • formy organizacyjne nauczania (lekcja, praca grupowa, e-

...

See on Wikiteka »

software

ROLE OF SOFTWARE ENGINEER A software engineer is a professional who applies engineering principles, systematic methods, and tools to design, develop, test, deploy, and maintain software systems efficiently and reliably. The role of a software engineer covers the entire software development life cycle and focuses on producing high-quality software that satisfies user and business requirements. A software engineer is not only a programmer but also a planner, designer, tester, and maintainer of software...

See on Student Notes »

useEffect()

🧠 useEffect Cheat Sheet (Beginner → Confident)

1️⃣ What is useEffect? (Plain English)

useEffect lets you run side effects in a React component.

👉 Side effects = things that are not UI rendering

  • Fetching data

  • Calling APIs

  • Using localStorage

  • Timers (setTimeout, setInterval)

  • Event listeners

  • Updating document title

Rule of thumb:
If it touches the outside world, it goes in useEffect.


2️⃣ Basic Syntax (Memorize This)

useEffect(() => { // side effect code }, [dependencies]
...

See on Student Notes »