cheats for DBMS

The three-level (three-schema) architecture separates how data is physically stored, logically structured, and viewed by different users. This is the ANSI/SPARC architecture and it exists mainly to provide data abstraction and data independence.
External (View) level
• This is the level closest to the users; it defines multiple user views (external schemas).
• Each view shows only part of the database relevant to that user or application, hiding the rest (e.g., a “Student_View” showing only

...

See on Student Notes »

bible exam

Apoligetic-the reasoned defense and commendation of the faith(1pet 3;15).Theology-Divinity,the science of Gods and divine things,teaches character of God.Chrisitian-Areal disciple of Christ;one who belives the truth and leads with example; peity. Worldveiw-A commitment, oreintation of the heart that can be expressed in a story (relates to common peopel/you)or a set of propostions(list of truths:make what you belive clear).Doctrine-statements of truth and guidlines, boundries.Biblical story-flow...

See on Student Notes »

Bibiguugug

Life insurance is not just a commercial transaction; it is a "social contract" built on specific legal and ethical pillars. While it shares some principles with general insurance, others apply differently because human life cannot be replaced or valued purely in monetary terms.
Here are the core principles of life insurance in detail.
1. Principle of Utmost Good Faith (Uberrima Fidei)
This is the most critical principle. Unlike a standard market transaction where the rule is "buyer beware," life insurance

...

See on Student Notes »

Jjjjhhhhhhhhhh

The Indian banking system has undergone a massive transformation from a fragmented, private-dominated sector to a robust, technology-driven landscape. This evolution was fundamentally reshaped by two waves of nationalization in 1969 and 1980.
Key Features of the Indian Banking System (2025)
The modern Indian banking system is characterized by its diversity, stringent regulation, and rapid digital adoption.
 * Multilayered Structure: The system is supervised by the Reserve Bank of India (RBI) and is

...

See on Student Notes »

Hehhrhrhr

The National Bank for Agriculture and Rural Development (NABARD) is India’s apex development financial institution, established to provide and regulate credit for the promotion and development of agriculture, small-scale industries, cottage and village industries, handicrafts, and other rural crafts.
Established on July 12, 1982, under the NABARD Act 1981, it was created based on the recommendations of the B. Sivaraman Committee (CRAFICARD) to take over the agricultural credit functions of the

...

See on Student Notes »

Oififurjrr

Risk management is the ongoing, strategic process of identifying, assessing, and responding to potential threats that could harm an organization’s capital, earnings, or reputation. In insurance, it is the method used to decide which risks to keep and which to "transfer" to an insurance company.
1. Objectives of Risk Management
The objectives are generally divided into two categories: those focused on the period before a loss occurs and those focused on the period after.
Pre-Loss Objectives
 * Economy:

...

See on Student Notes »

Dbdbbebrbr

The Insurance Regulatory and Development Authority (IRDA) Act, 1999 was a landmark piece of legislation that transformed the Indian insurance industry. It ended the era of government monopoly (LIC for life and GIC for general insurance) and opened the doors for private players and foreign investment.
Here is a detailed breakdown of the Act and the Authority it created.
1. What is the IRDA Act, 1999?
The Act was passed following the recommendations of the Malhotra Committee (1994). Its primary goal

...

See on Student Notes »

Hogiggifiififi

In the world of insurance and finance, "risk" is the raw material. While everyday language often treats risk and uncertainty as the same thing, they are scientifically very different.
1. Concept of Risk
In insurance, risk is defined as the possibility of an adverse outcome or financial loss. It is not just the "chance" of something happening, but the potential for a negative deviation from what we expect.
Key components of the concept:
 * Peril: The cause of the loss (e.g., fire, flood, theft).
 *

...

See on Student Notes »

CP_all programs

SECTION 1: STRING PROGRAMS

1. Reverse individual characters of a string

C
#include <stdio.h>
#include <string.h>
int main(){
    char str[100];
    int length, i;
    printf("Enter a string: ");
    fgets(str, sizeof(str), stdin);
    length = strlen(str);
    if (str[length - 1] == '\n') {
        str[length - 1] = '\0';
    }
    printf("The string in reverse order is: ");
    for (i = length - 2; i >= 0; i--) {
        printf("%c", str[i]);
    }
    printf("\n");
    return
...

See on Student Notes »