accounting

Accounting Concepts and Conventions – 20

Accounting is called the language of business. To ensure that financial statements are prepared in a meaningful and uniform manner, accountants follow certain basic rules, assumptions, and principles. These are known as Accounting Concepts and Conventions. They provide a framework within which accounts are prepared so that they become reliable, comparable, and understandable for users.

PART – I : ACCOUNTING CONCEPTS
Accounting concepts are basic assumptions...

See on Student Notes »

data structures and algo

Lesson 2: OOP & Linked Lists

OOP Basics

  • Class = blueprint; Object = instance.

  • Attribute = variable in object; Method = function in class.

  • self refers to the object; init = constructor.

Example

class Car:
    def __init__(self, make, model, year):
        self.make=make; self.model=model; self.year=year
    def info(self):
        return f"{self.year} {self.make} {self.model}"

Linked List

  • Collection of nodes storing data + next pointer.

  • Head = first node; last node’s next = None.

...

See on Student Notes »

koojb

hsthssfffst

+A New Chapter with CrowdStrike - Grateful, Excited, and Still Growing! ++

On 7th July, I began a journey I had once only dreamed of officially joining CrowdStrike as an intern.

Getting here wasn't easy the selection process involved four challenging rounds that truly tested my patience, consistency, and determination. The day I received my offer, I couldn't stop smiling it felt like all the effort had finally paid off. My family and friends were just as excited, making the moment even

...

See on Student Notes »

portugues

Resumo Médio – Fernando Pessoa (Ortónimo)
Nascimento: 1888  Viveu Portugal durante: •O ultimato inglês (1890) •1.ª Guerra Mundial (1914 •Ditadura Militar (1926–1933)
Fernando Pessoa, enquanto ortónimo, explora temas ligados à consciência, ao pensamento e ao confronto entre o que se vive e o que se recorda. A sua poesia revela um sujeito dividido entre o desejo de regressar à simplicidade da infância e a dor provocada pela consciência adulta.
1. Nostalgia da Infância
Pessoa
...

See on Wikiteka »

tiago

 PRINCÍPIOS GERAIS DO DIP

Para Ferrer Correia, a segurança e a certeza jurídica são os valores predominantes do Direito Internacional Privado. Na esteira da segurança jurídica, Wengler elege em principio fundamental do DIP o da harmonia jurídica internacional.

(1) De acordo com o p rincipio da harmonia jurídica internacional o sistema jurídico (direito) aplicável ao caso concreto deve ser o mesmo aplicável para todos os Estados conexionados com a situação a regular. É certo que

...

See on Wikiteka »

math 211

easiest way to find the basis of row space: Reduce A to RREF, Identify the Basis: The nonzero row vectors of R (which contain the leading 1s, or pivots) form a basis for row(A)\

Procedure for Finding the Basis of the Kernel: The following four steps outline the most effective method for finding a basis for null(A):
1. Reduce A to RREF (R): Find the Reduced Row Echelon Form (R) of the matrix A.
2. Solve the Homogeneous System: Use the RREF, R, to solve the equivalent homogeneous system Rx=0.
3. Identify

...

See on Wikiteka »

Aaaaaqa

1. La Consolidación de la Monarquía Hispánica: Los Reyes Católicos

El ascenso de Isabel I de Castilla y Fernando II de Aragón sentó las bases para la unificación de España y la creación de un estado moderno. Su llegada al poder no estuvo exenta de conflictos, tanto diplomáticos como militares.

Acceso al Trono y Unificación del Poder

Tras la muerte de Enrique IV, hermanastro de Isabel, surgieron tensiones sobre el rol que Fernando de Aragón desempeñaría en el gobierno de Castilla. Para...

See on Xuletas »

NASIM

Meaning of Income Tax
‎Income tax is a compulsory financial contribution that individuals and entities must pay to the government based on their annual earnings. The revenue generated is the main source of government funding and is used for nation-building activities such as infrastructure development, healthcare, education, and national defense. 

‎Characteristics of Income Tax

‎Direct Tax: The burden of the tax falls directly on the person who earns the income and cannot be shifted to

...

See on Wikiteka »

Compiler Design

Phases of a Compiler

A compiler translates a high-level program (like C, Java) into machine code understood by the hardware.
The compilation process is divided into multiple phases, each with a specific role. These phases work together to convert source code into an efficient executable program.

The phases are generally grouped into:

  1. Front End – Analysis Phases

  2. Middle End – Optimization Phase

  3. Back End – Synthesis Phases

Below is the complete flow:

Source Program → Lexical Analysis

...

See on Student Notes »