С.Р А 06.05.2026

Вариант B1 1.Задание: Выберите функцию, графиком которой является гипербола. Решение: График гиперболы имеет вид y = k/x. Из предложенных вариантов этому соответствует б) y = -14/x. 2.Задание: Найдите значение аргумента, при котором значение функции y = x³ равно 8. Решение: Нужно решить

...

See on Wikiteka »

wasdwasdwas

ARANY JÁNOS – BALLADÁK

  • műfaj: epikus + lírai + drámai
  • jellemzők: tömörség, kihagyás (balladai homály), tragikum

csoportosítás:

  • nagykőrösi: A walesi bárdok, Szondi két apródja
  • Őszikék: Vörös Rébek, Híd avatás

Ágnes asszony:

  • népies, körkörös szerkezet
  • bűn: férjgyilkosság
  • bűnhődés: lelkiismeret → őrület
  • motívum: véres lepedő = bűn

V. László:

  • történelmi, többszólamú
  • bűn: Hunyadi kivégzése
  • bűnhődés: lelkiismeret

GOGOL – A KÖPÖNYEG...

See on Wikiteka »

wwwwww

🟣 Shakespeare – Rómeó és Júlia

  • reneszánsz dráma → nincs hármas egység
  • téma: szerelem vs gyűlölet
  • helyszín: Verona, Mantova
  • alapkonfliktus: Montague ↔ Capulet

cselekmény:

  • alap: szerelmesek ellenséges családokból
  • bonyodalom: titkos házasság
  • fordulat: Tybalt halála → száműzetés
  • tetőpont: kripta → kettős öngyilkosság
  • megoldás: családok kibékülnek

értékrend:

  • fiatalok: szerelem, szabadság
  • család: hagyomány, gyűlölet

kulcsszereplők:

  • Rómeó: érzelmes,
...

See on Wikiteka »

Eca end sem

... Procedure: •Consider one source at a time. •Replace other sources: -Voltage source → short -Current source → open •Find response due to each source. •Add all responses algebraically. Important Note: Power cannot be directly calculated using superposition. Limitations: •Only for linear circuits •Not applicable for power calculations directly. The Maximum Power Transfer Theorem states that a resistive load will abstract maximum power from a network when the load resistance (RL)

...

See on Student Notes »

Software Testing

1)Explain testing principles in detail.

Software testing follows certain fundamental principles that help improve the effectiveness of testing.

1) Testing shows presence of defects

Testing can reveal defects (bugs) in the software.

Example: Even after testing, some hidden bugs may remain.

2) Exhaustive testing is impossible It is not possible to test all inputs, conditions, and paths.Testing is done on selected test cases.

3) Early testing - Testing should start as early as possible in the development

...

See on Student Notes »

OOSE

1)What is risk management in project management. 

• project risk management is the process that project manager use to manage potential risk that may affect a project in way both positively and negatively. 

• the goal is to minimise the impact of these risk. 

• risk management is applicable to large and small project in different ways. 

• negative risk is the one which may damage of project.

5. Link - A link is an instance-level connection between two objects in an object diagram,

...

See on Student Notes »

exam123

import torch

import torch.nn as nn

import torch.nn.functional as F

from transformers import AutoTokenizer

from datasets import load_dataset

tokenizer = AutoTokenizer.from_pretrained("bert-base-uncased")

class SelfAttention(nn.Module):

def __init__(self, embed_dim, num_heads):

super().__init__()

self.num_heads = num_heads

self.head_dim = embed_dim // num_heads

self.qkv = nn.Linear(embed_dim, 3 * embed_dim)

self.out = nn.Linear(embed_dim, embed_dim)

def forward(self, x):

B, T, C = x.shape

qkv = self....

See on Student Notes »

Hhsfhh

1. Algebraic System

An algebraic system is a non-empty set together with one or more operations (like addition or multiplication) defined on it.
Example: A set AAA with an operation ∗*∗ is written as (A,∗)(A, *)(A,∗).


2. Semigroup

A semigroup is a set SSS with a binary operation ∗*∗ that is associative:

(a∗b)∗c=a∗(b∗c),∀a,b,c∈S(a * b) * c = a * (b * c), \quad \forall a,b,c \in S(a∗b)∗c=a∗(b∗c),∀a,b,c∈S


3. Monoid

A monoid is a semigroup that has an identity element

...

See on Student Notes »

Markdown Cheatsheet

Tema

Uso

Dica

Exemplo

Resultado

Títulos

Estruturar documentos

Use # para hierarquia

# Título 1

## Título 2

### Título 3

Título 1

Título 2

Título 3

Ênfase

Destacar partes importantes

Use negrito para destaque

*itálico*

**negrito**

***ambos***

~~riscado~~

itálico

negrito

ambos

riscado

Listas

Organização de ideias

Use listas para organizar

- Item

- Subitem

1. Primeiro

  • Item

  • Subitem

  1. Primeiro

Checklist para tarefas

GitHub, tarefas

...

See on Wikiteka »