--------------- GRAPHS CHEATSHEET: ------------------ GRAPH: Shows connections. G = (V, E) where V = nodes/vertices and E = edges/links. NODE / VERTEX: The thing/object. EX: person, city, website. EDGE: The connection. EX: friendship, road, hyperlink. DIRECTED EDGE: Has arrow. Order matters. (A, B) means A points to B. UNDIRECTED EDGE: No arrow. Order does not matter. {A, B} means A and B are connected both ways. PATH: Route between nodes. Path length = number of edges. SIMPLE PATH: No repeated
...Introduction to Noam Chomsky
Noam Chomsky (born 1928) is an American linguist, philosopher, political activist, and social critic. He is widely known for his contributions to linguistics as well as his criticism of media, capitalism, imperialism, and foreign policy. Chomsky is considered one of the most influential intellectuals of the modern era.
Along with Edward S. Herman, Chomsky developed the theory of “Manufacturing Consent,” which explains how mass media influences public opinion in favour...
Ans: An entrepreneur is a person who identifies a business opportunity, takes initiative to start a new venture, organizes resources (land, labour, capital, etc.), and assumes the risks involved in order to earn profit and create value.
In simple words, an entrepreneur is someone who starts and runs a business with innovation and risk-taking ability.
Ans: Two well-known role model entrepreneurs are:
• Ratan Tata
• Dhirubhai
PART – A
1. Define Psychology and state its goals. Psychology is defined as the scientific study of behaviour and mental or cognitive processes. As a science, it has four main goals: describing and measuring behaviour, predicting future behaviour based on measurements, controlling and modifying behaviour, and ultimately explaining the causes of behaviour by formulating theories.
2. What is reinforcement? Reinforcement is any stimulus or event that affects the likelihood that a behaviour will be...
Create table emp1 and dept1 same as emp and dept. Create a trigger which will delete all records from emp1 table of corresponding department deleted from dept1 table
CREATE TABLE emp1 AS
SELECT * FROM emp;
CREATE TABLE dept1 AS
SELECT * FROM dept;
CREATE OR REPLACE TRIGGER trg_delete_emp1
AFTER DELETE ON dept1
FOR EACH ROW
BEGIN
DELETE FROM emp1
WHERE deptno = :OLD.deptno;
END;
/
Create table totalsal as select deptno, sum(sal) sal from emp1 group by deptno; Write a trigger which will update
Knowledge Management (KM) is the process of creating, storing, sharing, using, and managing the knowledge and information of an organization. It involves capturing knowledge from various sources, organizing it systematically, and making it accessible to employees for better decision-making and innovation. Key Points: Helps in managing organizational knowledge. Converts data into useful knowledge. Improves efficiency and innovation. Supports better decision-making. Prevents knowledge loss
Main Activities
Modernity
Modernity refers to a social, political, economic, and cultural condition that emerged in Europe after the Renaissance, the Enlightenment, and the Industrial Revolution. It is associated with the rise of rational thinking, scientific knowledge, industrial development, democracy, secularism, capitalism, and individual freedom. Modernity represents a transformation from traditional society, where life was mainly controlled by religion, customs, and monarchy, to a modern society based on reason,...
To implement cloud-native security controls including Encryption, Access Management, and Network Security.
Encryption: Protects data at rest (stored) and in transit (moving).
Access Management (IAM): Ensures the Principle of Least Privilege by managing user roles and Multi-Factor Authentication (MFA).
Network Security: Uses VPCs, Firewalls, and DDoS protection to isolate resources and filter malicious traffic.
At Rest: Use