Notes, summaries, assignments, exams, and problems for University

Sort by
Subject
Level

jQuery Functions and HTML Form Management

Posted by Anonymous and classified in Computers

Written on in English with a size of 15.61 KB

jQuery Selectors

jQuery selectors are used to select and access HTML elements in a webpage. They help in finding elements so that different operations like hiding, showing, styling, and event handling can be performed easily. Selectors in jQuery are similar to CSS selectors and start with the dollar sign $().

Basic Syntax

$(selector).action();

  • $: Defines jQuery
  • selector: Selects HTML elements
  • action(): Performs operations on selected elements

Example: $("p").hide(); (This hides all paragraph elements.)

Types of jQuery Selectors

1. Element Selector

This selector selects elements based on the tag name.

Syntax: $("tagname")

Example: $("h1").hide(); (It hides all <h1> elements.)

  • Selects all elements of the same type
  • Easy to use

2. ID Selector

This selector... Continue reading "jQuery Functions and HTML Form Management" »

Evolution of the English Language: From Old to Modern

Classified in Arts and Humanities

Written on in English with a size of 18.41 KB

Nature of Linguistic Change

Definition: The replacement of one linguistic element by another (variant), or the creation of a new one leading to co-existence or replacement.

  • Continuum: Language change is constant, gradual, and often imperceptible.
  • Rebalancing: Changes never prevent immediate communication; modifications at one primary level automatically trigger re-structuring across others.

Classification of Languages

Genealogical: Maps historical descent into families based on common lineage.

  • Shared Innovation: A unique structural change proving daughter languages split from a single proto-language.
  • Lineage of English: Proto-Indo-European (PIE) to Germanic to Anglo-Frisian to Old English.

Typological: Groups languages by structural patterns, independent... Continue reading "Evolution of the English Language: From Old to Modern" »

Discourse Analysis of Interviews and Recipes

Classified in Electronics

Written on in English with a size of 4.54 KB

Linguistic Analysis of an Interview Transcript

This analysis examines how conversation is managed in real time, focusing on hesitations, interruptions, repairs, discourse markers, laughter, and turn-taking in spoken discourse.

Genre Theory (Swales)

The text is a semi-structured spoken interview. According to Swales, this genre is a communicative event with a shared structure, used to obtain information about Brad's professional life.

Register Analysis (Halliday)

  • Field: Entrepreneurship, graphic design, and local business, established through lexical chains (which create cohesion).
  • Tenor: Interviewer to interviewee (informal and collaborative).
  • Mode: Spoken.

Speech Acts (Austin and Searle)

Speech acts are actions performed through language:

  • Directives:
... Continue reading "Discourse Analysis of Interviews and Recipes" »

E-commerce Models, Security, and Digital Payment Systems

Posted by Anonymous and classified in Other subjects

Written on in English with a size of 116.6 KB

Understanding E-commerce Models

E-commerce (electronic commerce) refers to the buying and selling of goods or services over the internet. It is categorized into four primary models—B2B, B2C, C2C, and C2B—based on the parties involved. These models form the backbone of the modern digital economy, driving global trade, consumer convenience, and new income streams.

Primary Types of E-Commerce

  • Business-to-Business (B2B): Transactions conducted between two businesses, such as a manufacturer and wholesaler, or a wholesaler and retailer. Examples include Alibaba, Grainger, and Faire. B2B is the largest segment by transaction value, offering unparalleled convenience in bulk procurement and supply chain management.
  • Business-to-Consumer (B2C): Businesses
... Continue reading "E-commerce Models, Security, and Digital Payment Systems" »

Mastering English Grammar: Passive Voice, Modals, and Conditionals

Classified in English

Written on in English with a size of 3.48 KB

Passive Voice Structures

  • Simple Present: Object + am/is/are + past participle. Example: The lesson is explained by the teacher.
  • Present Continuous: Object + am/is/are + being + past participle. Example: The dinner is being served by Axel.
  • Present Perfect: Object + have/has + been + past participle. Example: The baby has been showered by my mom.
  • Present Perfect Continuous: Object + has/have + been + being + past participle. Example: My phone has been being stolen.
  • Simple Past: Object + was/were + past participle. Example: The bridge was built.
  • Past Continuous: Object + was/were + being + past participle. Example: The homework was being checked.
  • Past Perfect: Object + had + been + past participle. Example: The computer had been fixed.
  • Past Perfect Continuous:
... Continue reading "Mastering English Grammar: Passive Voice, Modals, and Conditionals" »

Sociolinguistics Essentials: Key Concepts and Theories

Classified in Language

Written on in English with a size of 3.46 KB

1. Core Definitions

  • Dialect: A regional or social variety with unique grammar, vocabulary, and pronunciation.
  • Variety (Code): A neutral umbrella term for any form of language, including dialects and registers.
  • Repertoire: The full toolbox of linguistic resources an individual can use.
  • Register: Specialized language for specific jobs or topics (e.g., Legalese).
  • Style: Language variation based on context, goals, or the audience.

2. The Big Four: Style and Units of Analysis

William Labov (1st Wave)

  • Style: Attention to speech. Monitoring yourself makes you more formal.
  • Unit: Speech Community. A group sharing the same language norms and rules.

Alan Bell

  • Style: Audience Design. You adapt your speech based on your listeners.

Lesley Milroy (2nd Wave)

  • Unit: Social
... Continue reading "Sociolinguistics Essentials: Key Concepts and Theories" »

Post-War American Literature: From Beat Generation to Realism

Classified in Arts and Humanities

Written on in English with a size of 2.5 KB

Unit 1: The Beat Generation and Post-War Culture

The post-WWII era was defined by the Cold War, the Red Scare, suburbanization, and the rise of consumerism. In response, the Beat Generation (including the New York Beats and Beatniks) emerged, challenging social norms through themes of self-expression, madness, non-conformity, and alternative realities.

  • Jack Kerouac: Author of On the Road (1957). He utilized "spontaneous prose" to capture raw thought and experience. His work features the roman-à-clef style, travel narratives, and the archetype of the Beat hero.
  • Joyce Johnson: Author of Minor Characters (1983). Her memoir offers a female reinterpretation of the Beat era, focusing on the experiences of women within the male-dominated literary circle
... Continue reading "Post-War American Literature: From Beat Generation to Realism" »

Sorting Algorithms and Hashing Techniques

Posted by Anonymous and classified in Computers

Written on in English with a size of 1.17 MB

Sorting

Stable vs In-Place

Stable: The relative order of elements with the same key value is preserved by the algorithm.

If after the first sort, an element is at its final position and subsequent iterations do not change its position, it is considered stable.

In-Place: Requires only a constant amount, i.e., O(1), of extra space during the sorting process.

Assigning a temporary variable takes up a small amount of constant space but is still counted as in-place.

sy6xAAAAABJRU5ErkJggg==

tjMaqeYQAAAABJRU5ErkJggg==

Sorting Explanations

Merge Sort: For arrays, it requires significant space, but for Linked Lists, due to pointer manipulations, it does not require extra space.

Selection Sort: In each iteration, find the smallest element and swap it with the first index. Subsequent iterations process n-1 elements... Continue reading "Sorting Algorithms and Hashing Techniques" »

Operations Management Concepts: Forecasting, Quality, and Inventory

Posted by Anonymous and classified in Other subjects

Written on in English with a size of 6.08 KB

Q1. Time Series Forecasting Methods Comparison

Time Series Components

  • Trend (T)
  • Seasonality (S)
  • Cyclical (C)
  • Random (R)

Forecasting Methods

Naïve Method

Formula: Ft+1 = At

  • Assumes next demand equals last demand.
  • Used as a benchmark.

Simple Moving Average (n)

Formula: Ft+1 = (At + At-1 + … + At-n+1) / n

  • Smooths random variation.
  • A higher 'n' increases lag.

Weighted Moving Average

Formula: Ft+1 = w1At + w2At-1 + … + wnAt-n+1

  • Sum of weights (Σw) equals 1.
  • Recent data is given a higher weight.

Exponential Smoothing

Formula: Ft+1 = αAt + (1−α)Ft

  • Where 0 < α < 1.
  • A higher α increases responsiveness.
  • Most widely used method.

Comparison Summary

The Naïve method is the simplest. The Moving Average (MA) smooths noise. The Weighted Moving Average (WMA) is more... Continue reading "Operations Management Concepts: Forecasting, Quality, and Inventory" »

Feminist Resistance and Mythic Justice in Indian Literature

Classified in Philosophy and ethics

Written on in English with a size of 3.13 KB

Remains: Challenging Patriarchy and Caste

With the rise of the Bharatiya Janata Party (BJP) and Hindu fundamentalism, Indian feminists criticize so-called development. Under globalization and economic success—especially in the IT sector—women and minorities are often neglected. Feminist resistance, therefore, targets more than just patriarchy. Indian society celebrates shakti (the divine feminine creative power), yet controls women through sharam (shame/modesty). A woman’s sexuality is tied to izzat (family honor), meaning women carry the responsibility for male behavior, female desire is policed, and patriarchal control is naturalized.

In The Remains of the Feast, Rukmini, a 90-year-old Brahmin widow, has lived a life shaped by:

  • Gender
... Continue reading "Feminist Resistance and Mythic Justice in Indian Literature" »