Hindi

डॉ. पुष्पपाल सिंह द्वारा संपादित 'कबीर ग्रन्थावली' के आधार पर आपके द्वारा पूछे गए अंगों के विशिष्ट दोहे यहाँ प्रस्तुत हैं:
### 1. गुरुदेव कौ अंग
 * **दोहा 3:** हंउवावारी पांणीं विणुं, तिमि गुरु विणुं ग्यान

...

See on Wikiteka »

UHV ut

1(a) Human values & two basic aspirations

  • Human values are universally desirable feelings and goals that ensure mutual happiness and prosperity for all (e.g., trust, respect, love, justice).
  • Two basic aspirations of every human being: (i) Continuous Happiness and (ii) Continuous Prosperity (a feeling of having more than the required physical facilities).

1(b) Belief vs Understanding

  • Belief: Assuming something to be true based on an external source, without self-verification. It is liable
...

See on Student Notes »

С.Р А 06.05.2026

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

...

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 »