Understanding Money Supply, Inflation, and Economic Policy

Money Supply Aggregates

Old Aggregates (1977)

  • M1: Currency with public + Demand Deposits + Other deposits with RBI.
  • M2: M1 + Post office savings.
  • M3: M1 + Time deposits (Broad Money).
  • M4: M3 + Total post office deposits.

New Aggregates (1998)

  • M0: Reserve money (Monetary base).
  • NM1: Currency + Current deposits + Demand liabilities of savings + Other deposits with RBI.
  • NM2: NM1 + CDs + Short-term term deposits (up to 1 year).
  • NM3: NM2 + Long-term deposits (Broad Money).

Wholesale Price Index (WPI)

WPI is an indicator

Read More

Mastering Essential Exam Writing Skills for KUK Students

Mastering Essential Exam Writing Skills

With exams approaching in May and June, mastering formats for E-mail and Notice Writing is essential. These are high-scoring sections where marks are awarded for following the correct structure.

1. E-mail Writing

E-mails in a professional or academic context, such as Kurukshetra University exams, should be clear, concise, and formal.

The Standard Format

  • From: Your email address.
  • To: Recipient’s email address.
  • Cc/Bcc: Optional, usually left blank in exams.
  • Subject:
Read More

International Trade: Core Concepts and Global Dynamics

Understanding International Trade

International trade is the exchange of goods, services, and capital across national borders. It allows nations to obtain goods and services they cannot produce efficiently domestically and to sell surplus production to the global market.

Balance of Trade (BOT)

The Balance of Trade (BOT), or Trade Balance, is the difference between the monetary value of a country’s exports and imports of physical merchandise over a specific period.

Types of Trade Balance

  • Trade Surplus
Read More

Professional Profile and English Idioms for Engineers

Professional Profile

I am a 21-year-old student with training in laboratory work and industrial chemistry. I am serious, responsible, and motivated. I am eager to learn, improve my skills, and gain professional experience. I work well both in a team and independently. My studies have provided me with a foundation in laboratory protocols, safety regulations, chemical analysis, and equipment operation. I am organized, punctual, and committed to excellence. I look forward to contributing to your company

Read More

English Grammar Practice: Questions and Answers

Verb Tenses and Basic Sentence Structure

  • Choose the correct answer: My brother always plays football at weekends.
  • Choose the correct form for this sentence: “I have never been to Paris.”
  • Choose the correct passive form of the sentence “They will publish the results next week”: The results will be published next week.
  • Choose the correct preposition of place for this sentence: “The supermarket is between the office and the bank.”
  • Choose the correct sentence: This jacket is not thick enough for winter.
  • Choose
Read More

Marine Engine Fundamentals: Performance and Maintenance

1. Methods of Recharging Marine Engines

Marine engines can operate with natural aspiration or by means of supercharging. Turbochargers use exhaust gas energy to increase the intake air supply, improving power output and efficiency without increasing engine size. However, they suffer from slow response at low loads (turbo-lag) and involve higher operational and maintenance complexity.

2. Firing Order in Piston Engines

A common firing order example is 1-5-3-6-2-4. It is chosen to ensure smooth engine

Read More

Essential Java Enterprise Development Concepts

1. Object Relational Mapping (ORM)

ORM is a technique used to map Java objects to database tables. It allows developers to interact with databases using objects instead of raw SQL queries. Example: Hibernate is a popular ORM framework.

Advantages of ORM

  • Reduced SQL Coding: Uses an object-oriented approach.
  • Improved Productivity: Faster development with less code.
  • Database Independence: Code works across different databases with minimal configuration changes.
  • Maintainability: Clean, manageable code.

2.

Read More

Human Resource Management: Training, Motivation, and Retention

Training and Development

Training: The process of improving employees’ skills, knowledge, and performance.

Development: More long-term, focused on professional growth, career progression, and leadership.

Training vs. Development

  • Training: Short-term, focused on improving a specific skill for the current job.
  • Development: Long-term, focused on preparing employees for future roles.
  • Example of training: Learning how to use a new software.
  • Example of development: A leadership program for future managers.
Read More

Indian Constitutional Framework: Key Principles and Institutions

Parliamentary Government

Meaning: Parliamentary government is a system where the real executive is responsible to the legislature and remains in office only as long as it enjoys the confidence of the majority in the lower house. It is also known as the Cabinet or Westminster system.

Constitutional Basis in India

  • Article 74: Council of Ministers with the PM at the head to aid and advise the President.
  • Article 75(3): Council of Ministers is collectively responsible to the Lok Sabha.
  • Article 53: Executive
Read More

PIC Microcontroller C Programming Examples

Practical 1: LED Blinking Patterns

#include <xc.h>
#define _XTAL_FREQ 20000000

#pragma config FOSC = HS, WDTE = OFF, PWRTE = ON, LVP = OFF

void delay_ms(unsigned int time) {
    while(time--) __delay_ms(1);
}

void main(void) {
    ANSEL = 0x00; ANSELH = 0x00;
    TRISB = 0x00; PORTB = 0x00;
    while(1) {
        PORTB = 0xFF; delay_ms(500);
        PORTB = 0x00; delay_ms(500);
        PORTB = 0xAA; delay_ms(500);
        PORTB = 0x55; delay_ms(500);
    }
}

Practical 2: DC Motor Control

#
Read More