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

Sort by
Subject
Level

Sociological Concepts: Definitions and Terminology

Classified in Social sciences

Written on in English with a size of 2.89 KB

Race

Physical characteristics, such as skin color, hair texture, and facial features.

Ethnicity

Refers to cultural differences that separate one group of people from another, including language, religion, and nationality.

Racialization

The process by which society assigns race to individuals and groups, where certain physical characteristics become associated with specific races.

Visible Minority

A term used in Canada to describe people who are not part of the racial majority.

Racialized Group

Groups singled out for unequal treatment based on their racial or ethnic characteristics.

Family (Fam)

Two or more people bound together by ties of mutual consent, birth, or adoption.

Diversity in Canadian Families

The variety of family forms in Canada, including

... Continue reading "Sociological Concepts: Definitions and Terminology" »

College vs University: Differences and Key Academic Terms

Classified in Other subjects

Written on in English with a size of 3.36 KB

College vs. University

College: Usually offers more narrow programs and may not have graduate studies at all. Some universities use the term "college" to highlight a specific school of study encompassed within its institution.

University: Denotes a school that offers full undergraduate and graduate programs. Universities often devote themselves to research and are more focused on a specific subject.

Key Differences Summarized

  • College:
    • Size: Smaller campuses and fewer students.
    • Program Types: 2-year and 4-year degrees.
    • Degrees Awarded: Certificates, Associate, and Bachelor's.
    • Enrollment: Open to all students.
    • Cost: Usually less expensive.
  • University:
    • Size: Larger campuses and more students.
    • Program Types: 4-year and usually graduate programs.
    • Degrees Awarded:
... Continue reading "College vs University: Differences and Key Academic Terms" »

Enzyme Regulation: Mechanisms and Examples

Classified in Biology

Written on in English with a size of 4.8 KB

Regulation of Enzyme Activity

Enzymes are the workhorses of cells, catalyzing the thousands of biochemical reactions that keep cells alive and functioning. The activity of enzymes is carefully controlled to ensure that the proper amount of product is produced at the right time.

Why Regulate Enzyme Activity?

There are several reasons why cells need to regulate enzyme activity. First, the concentration of substrates and products can vary widely within the cell. If enzyme activity were constant, the rate of the reaction would also vary wildly, depending on the availability of substrates. Regulation allows the cell to adjust the rate of the reaction to match the needs of the cell.

Second, the cell needs to coordinate the activities of different enzymes... Continue reading "Enzyme Regulation: Mechanisms and Examples" »

Inheritance and Method Overriding in Java: A Comprehensive Guide

Classified in Computers

Written on in English with a size of 2.3 KB

Inheritance in Java

Inheritance in Java is a mechanism where one object acquires all the properties and behaviors of another object. Inheritance represents the IS-A relationship, also known as a parent-child relationship.

Using inheritance, you can create a general class that defines common traits for a set of related items. This class can then be inherited by other classes, each adding its unique elements.

The keyword extends defines a new class from an existing class. The existing class is called the parent/base/superclass, and the new class is called the child/derived/subclass.

Here's a breakdown:

  • Child classes inherit all members of their parent class.
  • Child classes cannot access the private members of the parent class directly.
  • To access private
... Continue reading "Inheritance and Method Overriding in Java: A Comprehensive Guide" »

Java Arithmetic Operations Web App

Classified in Computers

Written on in English with a size of 1.24 KB

Arithmetic Operations in Java

Input Form

Enter number 1:
Enter number 2:
  • Addition
  • Subtraction
  • Multiplication
  • Division

<% String num1Str = request.getParameter("num1"); String num2Str = request.getParameter("num2"); String operation = request.getParameter("operation"); if (num1Str != null && num2Str != null && !num1Str.isEmpty() && !num2Str.isEmpty() && operation != null) { double num1 = Double.parseDouble(num1Str); double num2 = Double.parseDouble(num2Str); double result = 0; switch (operation) { case "add": result = num1 + num2; out.println("

Result: " + result + "

"); break; case "subtract": result = num1 - num2; out.println("

Result: " + result + "

"); break; case "multiply": result = num1 * num2; out.println("... Continue reading "Java Arithmetic Operations Web App" »

Understanding Data Storage and Binary Number Representation

Classified in Computers

Written on in English with a size of 221.76 KB

Data Storage Conversion:

  • 1 gigabyte (GB) equals 1,024 megabytes (MB).
  • 1 megabyte (MB) equals 1,024 kilobytes (KB).
  • To convert gigabytes to kilobytes, multiply by 1,024 twice. For example: 1 GB = 1,024 MB * 1,024 KB = 1,048,576 KB.
  • To convert gigabytes to megabytes, multiply by 1,024. For example: 1 GB = 1,024 MB
  • To convert 20 megabytes to bytes: 20 MB = 20 * 1,024 KB * 1,024 bytes = 20,971,520 bytes
  • To convert 2 gigabytes to kilobytes: 2 GB = 2 * 1,024 MB * 1,024 KB = 2,097,152 KB

Example: SHKRONJA A has a value of 1010, B - 1011, C - 1100, D - 1101, E - 1110, F - 1111.

Binary Number Representations

There are three main ways to represent signed numbers in binary:

1. Signed Magnitude

  • Positive Numbers: Standard binary representation.
  • Negative Numbers: The
... Continue reading "Understanding Data Storage and Binary Number Representation" »

Cybersecurity Essentials: Threats, Controls, and Encryption

Classified in Computers

Written on in English with a size of 4.71 KB

CIA Triad

The CIA Triad consists of Confidentiality, Integrity, and Availability. Related concepts include Authentication, Accountability, and Auditability.

Types of Harm

  • Interception
  • Interruption
  • Modification
  • Fabrication

Web Technologies

HTML

  • GET: Embeds parameters into the URL.
  • POST: Sends data directly to the server; more secure.

PHP

  • PUT: Used to create or replace a file at the specified URL. Sends data like POST, more suitable for uploading files.

Penetration Testing

5 Steps to Penetration Testing:

  1. Reconnaissance
  2. Scanning
  3. Gaining Access
  4. Maintaining Access
  5. Clearing Tracks

Security Controls

  • Prevention: Outright stopping an attack.
  • Deterrence: Making an attack harder.
  • Deflection: Making a target less attractive.
  • Mitigation: Lessening the harm.
  • Detection: Identifying
... Continue reading "Cybersecurity Essentials: Threats, Controls, and Encryption" »

Understanding Organizational Structures and Human Resource Management

Classified in Economy

Written on in English with a size of 2.98 KB

Shake Well Before Using

Support: On paper

Application: Press the body

Storage: Mint; store after use

Organizational Structures

Hierarchy Levels

  • Tall Vertical: Many levels
  • Flat Horizontal: Few levels

Span of Control

  • Narrow: Limited span
  • Wider: Increased span

Decision Making

  • Centralized: Decisions made at the top
  • Decentralized: Decisions made at lower levels

Chains of Command

  • Long: Multiple layers of authority
  • Shorter: Fewer layers of authority

Leadership

  • Autocratic: Authoritarian leadership style
  • Democratic: Participative leadership style

Delegation

  • Limited: Less delegation of authority
  • Increased: More delegation of authority

Types of Organizational Structures

  • Structure by Hierarchy: Senior, middle, junior management/supervisor-worker
  • Structure by Function: Board of
... Continue reading "Understanding Organizational Structures and Human Resource Management" »

Understanding Gap Junctions: Structure, Function, and Significance

Classified in Biology

Written on in English with a size of 2.64 KB

Gap Junctions

Gap junctions are specialized intercellular connections that allow direct communication and exchange of ions, small molecules, and signaling molecules between adjacent cells. These junctions play a crucial role in coordinating cellular activities in various tissues and are found in both animal and plant cells.

Key Points About Gap Junctions

1. Structure

  • Gap junctions are formed by connexins in animals and pannexins in plants.
  • Connexins and pannexins oligomerize to create connexons or pannexons, respectively.
  • Each connexon/pannexon is a hexamer, and two hemichannels (half of a connexon or pannexon) from adjacent cells align to form a gap junction channel.

2. Function

  • Gap junctions facilitate direct cell-to-cell communication, allowing
... Continue reading "Understanding Gap Junctions: Structure, Function, and Significance" »

Eukaryotic Cell Structure: A Comprehensive Overview

Classified in Biology

Written on in English with a size of 4.12 KB

The structural organization of eukaryotic cells is remarkably complex and compartmentalized, reflecting the diverse functions these cells perform. Eukaryotes encompass a wide array of organisms, including plants, animals, fungi, and protists. Below is a detailed exploration of the structural components of eukaryotic cells:

1. Cell Membrane (Plasma Membrane)

  • Composition: The cell's outer boundary is formed by a phospholipid bilayer with embedded proteins and other molecules.
  • Function: It regulates the passage of substances into and out of the cell, acting as a selective barrier.

2. Cell Wall (in some cells)

  • Present in: Plant cells, fungal cells, and some protists.
  • Composition: A rigid structure made of cellulose in plants and chitin in fungi.
  • Function:
... Continue reading "Eukaryotic Cell Structure: A Comprehensive Overview" »