Notes, abstracts, papers, exams and problems of Baccalaureate

Sort by
Subject
Level

French-English Job Vocabulary Glossary

Classified in French

Written at on English with a size of 4.99 KB.

French-English Job Vocabulary

A

  • Agent de voyage: Travel Agent
  • Agent immobilier: Estate Agent
  • Apprendre vite: Be a Fast Learner
  • Arriver: Turn Up
  • Assistant social: Social Worker
  • A tout moment: At Any Time
  • Avoir besoin de: Require
  • Avoir de l'exp. en: Have Experience Of
  • Avoir honte: Feel Ashamed
  • Avoir l'idée de: Come Up With
  • Avoir les compétences: Possess Skills
  • Avoir une vue excellente: Have Excellent Eyesight

C

  • Candidat approprié: Suitable Candidate
  • Charpentier: Carpenter
  • Chercher du travail: Look for a Job
  • Commerce de détail: Retail
  • Compétences personnelles: Personal Skills
  • Comptable: Accountant
  • Compter sur: Rely On
  • Confus: Confused
  • Courageux: Brave

D

  • Dégoutant: Disgusting
  • Dégouté: Disgusted
  • Dég qqun de qqch: Put Somebody Off Something
  • Démissionner: Resign From
... Continue reading "French-English Job Vocabulary Glossary" »

Software Engineering Concepts: A Comprehensive Guide

Classified in Computers

Written at on English with a size of 7.04 KB.

Module 9: Firebase Application

Realtime Database

A cloud-hosted database. Data is stored as JSON and synchronized in real-time to every connected client. Provides easy-to-use services for authentication (email/password, 3rd-party providers like Google/Facebook).

Cloud Firestore

A flexible and scalable database for mobile, web, and development. It offers synchronization, offline support, and ACID transactions.

Cloud Functions

...

Hosting

CSS/JavaScript

Cloud Storage

Provides robust, secure file uploads and downloads for Firebase apps.

Module 10: UML Diagrams

Structural Diagrams

  • Class Diagram: Shows class hierarchy, fields/attributes, and relevant methods.

How to Read

  • Visibility:
    • +: Public
    • -: Private
    • #: Protected (accessed only by child classes)
  • Relationships:
... Continue reading "Software Engineering Concepts: A Comprehensive Guide" »

College vs University: Differences and Key Academic Terms

Classified in Other subjects

Written at on 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 at on 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 at on 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 at on 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 at on 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 at on 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 at on 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 at on 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" »