Int dis

1 Arterial Hypermania’s. Epidemiology of aerial hypertension (Al), Classification of All, risk stratification, SCORE scale (assessmere of tardiorcatrukLaboratury and instrumental diagnostics of AH. Diagnostic oriental for arterial hypertension Diffnential diagnosis of elevated blood pressure Management tragy based on the degree of hypertension, risk groups, and consortidities.

Ans1 Arterial hypertension (AH) is a widespread chronic disease and a major cause of cardiovascular morbidity and

...

See on Student Notes »

nenhrhrhr

These tools allow you to connect different datasets and distill thousands of rows into a few meaningful numbers.
1. VLOOKUP and HLOOKUP -These functions search for a value in one column (or row) and return a corresponding value from another. * VLOOKUP (Vertical): Searches for data in columns. * Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])  * Logic: "Find this ID in this table, and give me the value from the 3rd column." * HLOOKUP (Horizontal): Searches for data in rows.

...

See on Student Notes »

ਨਰੱਜਰਜਫਜ਼ਜ਼ਰੀਰ

Descriptive statistics are the numbers that summarize a dataset, giving you a quick "snapshot" of its typical values and how much they vary. These are divided into Measures of Central Tendency (the middle) and Measures of Dispersion (the spread).
1. Measures of Central Tendency -These identify the "center" of your data where most values congregate.
 * Mean (Average): The sum of all values divided by the total count. It is the most common measure but is highly sensitive to outliers (extremely high

...

See on Student Notes »

Noodkdkd

जिग और फिक्सचर (Jig and Fixture)

a) परिभाषा:

जिग (Jig): यह एक ऐसा उपकरण है जो कार्य खंड (workpiece) को पकड़ता है और साथ ही कटिंग टूल को गाइड भी करता है।

फिक्सचर (Fixture): यह केवल कार्य खंड को मजबूती से पकड़ता है और लोकेट करता है,

...

See on Student Notes »

Ndjjdjfjrjrj

In data science, "importing" is the act of bringing external data into Excel for analysis, while "exporting" is saving your Excel data into a format that other programs can read.
1. Common File Formats -Understanding these formats helps you choose the right one for your task: * Excel Workbook (.xlsx): A binary file that stores everything—data, formulas, formatting, charts, and multiple sheets. Best for your "working" file.  * CSV (Comma-Separated Values): A plain text file where a comma separates

...

See on Student Notes »

Bpcc 103

SELF, IDENTITY & SELF-CONCEPT IN INDIAN PSYCHOLOGY

Indian Psychology views the self as spiritual, holistic, and continuous.

The self is not limited to personality or ego but rooted in consciousness.

Core Concepts of Self

Atman:

True self

Eternal, unchanging, pure consciousness

Beyond body and mind

Jiva:

Individual self

Atman associated with body, mind, desires, and karma

Purusha:

Witness consciousness

Observer of experiences, not the doer

Development of Self (Indian Traditions)

1. Identification

...

See on Student Notes »

Mcs024


Question 3

(a) Differentiate between Checked and Unchecked Exceptions in Java with suitable examples

(b) Write a file I/O Java program which reads a line of text from user, writes it to a file Myfile.txt, then reads the file and displays its content

Answer:

(a) Checked vs Unchecked Exceptions

Exceptions in Java are runtime errors that disrupt the normal flow of a program. They are classified into checked and unchecked exceptions.

Checked Exceptions are checked at compile time. The programmer must...

See on Student Notes »

7 c's of business communication

The 7 C’s of Business Communication
Effective communication is a vital component of business success, especially in the legal and corporate environment. Business communication ensures smooth coordination, builds professional relationships, and supports decision-making. For law students and legal professionals, mastering business communication is essential when dealing with clients, organizations, courts, and regulatory bodies. The 7 C’s of Business Communication—Clarity, Conciseness, Concreteness,

...

See on Student Notes »

,,dfea

abstract class Shape {
abstract double calculateArea();
abstract double calculatePerimeter();
}
class Circle extends Shape {
private double radius;
public Circle(double radius) {
this.radius = radius;
}
@Override
double calculateArea() {
return Math.PI * radius * radius;
}
@Override
double calculatePerimeter() {
return 2 * Math.PI * radius;
}}
class Triangle extends Shape {
private double side1;
private double side2;
private double side3;
public Triangle(double side1, double side2, double side3)
...

See on Student Notes »