Notes, summaries, assignments, exams, and problems

Sort by
Subject
Level

"tax relationship" taxable event taxable person

Posted by Anonymous and classified in Economy

Written on in English with a size of 10.64 KB

Here are the solutions to the questions presented in the images, based on the provisions of the Indian Income Tax Act, 1961.
Q. 2. Income Tax is charged on the Previous year Income. Do you agree? If not Give exceptions.
Agreement: Yes, I agree. The fundamental principle is that income earned in the Previous Year (P.Y.) is taxed in the next financial year, known as the Assessment Year (A.Y.).
Exceptions to the General Rule (P.Y. Income Taxed in P.Y.)
In certain specific cases, income is assessed and taxed in the same P.Y. Itself, primarily to ensure tax recovery:
 * Non-Resident Shipping Business (Sec. 172): To tax freight income before the ship leaves India.
 * Persons Leaving India (Sec. 174): Individuals leaving India with no intention of returning.... Continue reading ""tax relationship" taxable event taxable person" »

Foundations of Indian Civilization: Polity, Science, and Environmental Ethics

Posted by Anonymous and classified in Social sciences

Written on in English with a size of 19.84 KB

The concepts of Janapada and Gram Swaraj represent two distinct yet linked dimensions of Indian polity: the historical evolution of territorial states in antiquity and the philosophical ideal of decentralized governance in the modern era.
🏛️ Janapada: The Ancient Territorial State
The term Janapada is a compound Sanskrit word: Jana (people, tribe) and Pada (foot, settlement). It literally means "the foothold of a tribe" or "the place where the tribe has settled." It represents the early form of a territorial state in ancient India, emerging during the later Vedic period.
Key Features of Janapadas
 * Transition from Tribe to Territory: The formation of Janapadas (c. 1500 BCE - 6th Century BCE) marked a fundamental shift from a tribal, pastoral... Continue reading "Foundations of Indian Civilization: Polity, Science, and Environmental Ethics" »

Python String Methods and Iteration Techniques

Posted by Anonymous and classified in Computers

Written on in English with a size of 4.56 KB

Essential Python String Manipulation Methods

1. strip()

  • Purpose: Removes any leading (start) and trailing (end) whitespace or specified characters from a string.
  • Example: " hello ".strip()"hello"
  • Use Case: Useful for cleaning input data.

2. ljust(width)

  • Purpose: Left-justifies the string in a field of given width, padding with spaces on the right.
  • Example: "Hi".ljust(5)"Hi "
  • Use Case: Formatting output neatly.

3. rindex(substring)

  • Purpose: Returns the last occurrence index of the given substring in the string. Raises an error if the substring is not found.
  • Example: "hello world".rindex("o")7
  • Use Case: Finding positions of characters or words starting from the end of the string.

4. isspace()

  • Purpose: Returns True if the string contains
... Continue reading "Python String Methods and Iteration Techniques" »

Financial Derivatives: Mechanics of Futures, Swaps, and Options

Classified in Economy

Written on in English with a size of 169.28 KB

Introduction to Financial Derivatives

Definition of a Derivative

Financial instruments allow contracting parties to buy or sell an underlying asset at a future date at a price agreed upon at the time of contracting. The underlying asset may be an equity asset, bonds, currencies, interest rates, commodities, and more. The effective purchase is only made on the maturity date and settlement, in some cases by physical delivery and in others by cash settlement for differences between the price originally agreed and that prevailing on the date of settlement or maturity of the transaction.

With these types of derivative instruments, it is possible to act in a leveraged manner since their purchase or sale does not require the availability of funds or... Continue reading "Financial Derivatives: Mechanics of Futures, Swaps, and Options" »

Raja Ram Mohan Roy and Lord Bentinck: Social and Administrative Reforms in India

Posted by Anonymous and classified in Social sciences

Written on in English with a size of 2.32 KB

Raja Ram Mohan Roy: Father of Modern India

Raja Ram Mohan Roy, known as the Father of Modern India, was the earliest leader of India’s social and intellectual awakening in the 19th century. He fought against major social evils such as:

  • Sati
  • Child marriage
  • Polygamy
  • Caste rigidity
  • Superstition

He used rational ideas and reinterpretation of ancient texts to drive change. Roy promoted women’s rights, especially widow protection and female education, and strongly supported freedom of speech and the press.

Brahmo Samaj Foundation

In 1828, he founded the Brahmo Samaj, which preached monotheism, rejected idol worship, opposed ritualism, and encouraged moral and spiritual reform. Roy also played an important role in shaping modern education by supporting... Continue reading "Raja Ram Mohan Roy and Lord Bentinck: Social and Administrative Reforms in India" »

Global City Dynamics, Migration, and Sustainability in Globalization

Posted by Anonymous and classified in Social sciences

Written on in English with a size of 18.52 KB

Global City Dynamics and Globalization

Global city dynamics lie at the very heart of globalization, shaping the economic, social, political, and cultural forces that define how major urban centers function in an increasingly interconnected world. As globalization accelerates the movement of goods, capital, information, and people across borders, cities have become the central hubs where these flows converge. In this sense, global cities do not just participate in globalization—they actively drive and structure it.

The rise of global cities is directly linked to the transformation of the world economy. In the past, nation-states dominated global processes, but today urban centers such as New York, London, Tokyo, Singapore, and Hong Kong function... Continue reading "Global City Dynamics, Migration, and Sustainability in Globalization" »

Concept of education

Posted by Anonymous and classified in Philosophy and ethics

Written on in English with a size of 19.67 KB

Concept of bhartvash 
Here is a breakdown of the concept:
1. Origin and Meaning
 * Etymology: The word is derived from two Sanskrit terms:
   * Bharata: Refers to a legendary emperor mentioned in texts like the Mahabharata and Puranas. He is traditionally regarded as the ancestor of the Indian people, and the land was named after him. The name is also mentioned in the Rig Veda associated with the Bharata tribe.
   * Varsha: Means a land, region, or division of the earth.
 * Translation: Bharatvarsha literally translates to "The Land of Bharata" or "The Homeland of Bharata."
2. Geographical Scope
 * Ancient Context: In Puranic geography, Bharatvarsha was considered a part of the larger continental landmass called Jambudvipa (the "Island of the... Continue reading "Concept of education" »

Core Java Concepts: Inheritance, Polymorphism & OOP

Posted by Anonymous and classified in Computers

Written on in English with a size of 10.07 KB

Q1. Inheritance in Java (10 Marks)

Inheritance is an important feature of object-oriented programming that allows one class to acquire the properties and methods of another class. The class that gives its features is called the parent class or superclass, and the class that receives them is called the child class or subclass. In Java, inheritance is implemented using the extends keyword.

There are three main types of inheritance in Java:
(1) Single-level inheritance – one parent and one child class.
(2) Multilevel inheritance – one class inherits another, and another class further inherits it.
(3) Hierarchical inheritance – one parent class is inherited by multiple child classes.

Java does not support multiple inheritance using classes to... Continue reading "Core Java Concepts: Inheritance, Polymorphism & OOP" »

Essential Software Design Patterns and Testing Techniques

Posted by Anonymous and classified in Computers

Written on in English with a size of 6.26 KB

Domain Model

  • Shows concepts only: classes, attributes, associations, and multiplicities.
  • No methods, no UI, and no controllers are included.
  • Purpose: To understand the real-world objects involved in the system.

Use Case Model (Module 6)

  • Focuses on Actor ↔ System interaction.
  • Uses the Verb + Noun naming convention.
  • Format: Defines Actor steps versus System steps.
  • Use cases serve as input for sequence diagrams, which inform class diagrams.

UML Class Diagram (Module 7)

  • Class Components: Name, attributes, and methods.
  • Association: Line connecting classes with multiplicity (1, 0..1, *, 1..*).
  • Inheritance: Represented by an open triangle arrow symbol.
  • Interface: Indicated by the «interface» stereotype.
  • DCD (Design Class Diagram): Explicitly includes methods
... Continue reading "Essential Software Design Patterns and Testing Techniques" »

Mastering C Pointers, Structures, and Unions

Posted by Anonymous and classified in Computers

Written on in English with a size of 8.51 KB

Pointers in C

A pointer is a variable that stores the memory address of another variable. They are essential in C for dynamic memory allocation, array manipulation, and implementing complex data structures.

1. Declaring and Initializing Pointers

A pointer variable must be declared to hold the address of a specific data type.

A. Declaration

The asterisk (*) is the dereference operator or value-at-address operator. When declaring a pointer, it signifies that the variable is a pointer to a specific type.

data_type *pointer_name;
  • Example: int *ip; // Declares ip as a pointer that can hold the address of an integer variable.

B. Initialization

A pointer is initialized by assigning it the address of a variable using the address-of operator (&).

int num
... Continue reading "Mastering C Pointers, Structures, and Unions" »