Filo kant

La clasificación kantiana de los juicios

Kant, en su obra Crítica de la razón pura, establece una clasificación de los juicios basada en dos criterios fundamentales: el origen del conocimiento y la relación entre sujeto y predicado.

Según su origen:

Juicios a priori: Son aquellos que no dependen de la experiencia, sino que son universales y necesarios. Ejemplo: "La suma de los ángulos de un triángulo es igual a 180°".

Juicios a posteriori: Son los que derivan de la experiencia y tienen

...

See on Xuletas »

wedfghjk

Chapter 15

Content Vocabulary

Girder – The girder supports the floor joists by carrying the weight of the structure above it.

Box sill – A box sill is constructed by placing the sill plate on the foundation and attaching the band joist.

Subflooring – The subflooring is secured to the joists to provide a stable base for the finished flooring.

Crown – The crown of a joist should always be positioned upward to account for deflection over time.

Bridging – Bridging between floor joists prevents...

See on Student Notes »

RTOS FULL

RTOS – Module 1 

Operating System – Types, Objectives, and Functions

Definition of Operating System – Software managing hardware and software resources, acts as interface between user and hardware, enables application execution.

Objectives of OS
Convenience – user-friendly interaction,
Efficiency – optimum use of CPU, memory, I/O devices,
Ability to Evolve – integrate new system functions,
Security & Protection – prevent unauthorized access, protect data,
Resource Allocation

...

See on Student Notes »

aaaaaa

2. Define entrepreneurship?

Entrepreneurship is the process of designing, launching, and running a new business, which often initially is a small business. The people who create these businesses are called entrepreneurs. It involves identifying a need or opportunity and then marshaling resources (financial, human, intellectual) to bring a new venture to life. Entrepreneurship is characterized by innovation, risk-taking, and a strong drive to succeed. It's not just about starting a business; it's...

See on Student Notes »

legal

Q1. Law of contract: Definition, features of a valid contract, features of a valid offer & acceptance, consideration, capacity, free consent, legality of object, rules related to performance & discharge, breach and remedies (with case laws)

Definition of Contract (Section 2(h)):  A contract is an agreement enforceable by law.

Essential Features of a Valid Contract (Section 10):

  1. Offer and Acceptance – Must be lawful and absolute.

  2. Intention to Create Legal Relationship – Must intend

...

See on Student Notes »

Ascol

Define Data structure. Explain ADT with example.

A data structure is a specialized format for organizing, processing, and storing data in a computer so that it can be accessed and modified efficiently. Data structures are essential for managing large amounts of data and are fundamental to computer science and programming. They provide a way to manage data in a way that enables efficient algorithms to operate on that data.

Abstract Data Type (ADT)

An Abstract Data Type (ADT) is a theoretical concept

...

See on Student Notes »

Programs

1. #include <stdio.h> 
int stringLength(char str[]) 

 int length = 0;
 while (str[length] != '\0') 
 { 
 length++;
 } 
 return length;

void stringConcatenate(char str1[], char str2[]) 

 int i = 0, j = 0;
 while (str1[i] != '\0') 
 { 
 i++;
 } 
 while (str2[j] != '\0') 
 { 
 str1[i] = str2[j];
i++;
 j++;
 } 
 str1[i] = '\0';

int main() 

 char str1[100], str2[100];
 int choice;
printf("Enter the first string: ");
 scanf("%s", str1);
 
 printf("Enter the second string:...

See on Student Notes »

ENTRE

MOD-4 1. Project Evaluation (2 Marks)

Project evaluation is a systematic assessment of a project’s relevance, design, implementation, and outcomes.

It is carried out to determine the effectiveness, efficiency, impact, and sustainability of a project, and to draw lessons for future planning.

It helps in:

Measuring performance

Ensuring accountability

Enhancing learning for future projects

2. Objectives of Project Evaluation (1 Mark)

To assess whether the project has met its intended goals and objectives

...

See on Wikiteka »

1920m2

Risk Management Basics

Risk: Probability of loss or disruption, Asset: Item of value (e.g., data, systems), Threat: Entity exploiting a weakness., Vulnerability: Weakness that can be exploited., Risk Management: Identifying, evaluating, reducing, or accepting risks.

Types of Threat Actors

Script Kiddie: Uses pre-written code, lacks technical skill, wants fame, Hacktivist: Politically motivated, defaces sites or networks, Nation State/APT: Government-backed, highly sophisticated, Organized Crime:

...

See on Student Notes »