Hehhrhrhr

Data science is often called the "fuel" of the 21st century. It is an interdisciplinary field that uses scientific methods, algorithms, and systems to extract knowledge and actionable insights from both structured and unstructured data.
1. What is Data Science?
At its core, data science is the bridge between raw data and informed decision-making. It combines tools and techniques from several fields:
 * Mathematics & Statistics: To find patterns and validate findings.
 * Computer Science: To write

...

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 »

Fuchhc

1. Identify the subject and aims of the History of English

The History of English is a subject that studies how the English language developed over many centuries. It looks at how English changed in sounds, grammar, spelling, and vocabulary. The main aim is to understand why modern English has many irregular forms and why it sometimes looks different from the way it is pronounced. The subject also explains why English has Germanic roots but also many French and Latin words. Students learn how historical

...

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 »

Law Review 2

A1. THE INQUIRY PROCESS

Legal Significance

The importance of key legal principles, cases, social forces, and events in the evolution of law.

Continuity and Change

Analysis of how and why laws, justice system structures and practices, legal precedents, and legislative agendas change over time.

Interrelationships

How laws affect society and how society affects law.

Legal Perspective

Application of legal principles such as fairness, justice, equality, presumption of innocence, and the rule of law

...

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 »

Operations

#include<stdio.h> 

Int FCFS() 

int bt[15],n, i, wt[10]; 

float 

twt=0,tat=0,att,awt; 

printf("\n THE FCFS SCHEDULING\n"); 

printf("Enter the number of processes:"); 

scanf("%d",&n); 

printf("Enter burst time of all the processes:"); 

for(inti=0;i<n;i++) 

printf("P%d",i+1); 

scanf("%d",&bt[i]); 

}w 

t[0]=0; 

//for calculating waiting time of each process 

for(i=1;i<n;i++) 

wt[i]=bt[i-1]+wt[i-1]; 

printf("ProcessID BurstTime WaitingTime Turn Around Time ...

See on Wikiteka »

criminal procedure code

TOPIC : ARREST (INTRODUCTION) : Arrest is the first step in the criminal justice process. Article 5(1) of the Federal Constitution protects personal liberty and states that no one can be deprived of liberty unless it is according to law.Therefore, an arrest must be made lawfully and based on legal provisions. An arrest can be challenged in court if it has no valid reason or if excessive force is used. (Why is it important to determine whether there is an arrest?) Some rights of a suspect only

...

See on Student Notes »