олмнгонаг

вар 4

Задача 1 (0,5 балла)

•   Вопрос: Что в ячейке?
Решение:
Подставим данные в формулу:
ИЛИ(85<80; 150>140)
•   85<80 - это ЛОЖЬ
•   150>140 - это ИСТИНА
Оператор ИЛИ возвращает ИСТИНА, если хотя бы одно условие истинно. В данном случае ИСТИНА.
Следовательно, формула =ЕСЛИ(ИСТИНА; "Реанимация"

...

See on Wikiteka »

ASTR final

  • Largest planet: made of hydrogen+helium
  • Juno mission: orbiter, uses solar panels for power
  • Rotation: fast, every 10 hrs
  • Atmosphere; bright/reflective - colored cloud bands: water, ice, ammonia - color coming from org. Molecules. Caused by convection
  • Great Red Spot: anticyclonic storm caused by ammonia interacting with UV
  • Magnetic field: 20,000x stronger than Earth, aurorae near poles can be observed in the UV
  • Rings: thin, particles of rock dust. Less reflective in visible light (seen in IR)
  • 10
...

See on Student Notes »

Filosofia

resposta racionalista

Descartes é um filósofo racionalista, pois defende que a razão é a principal origem do conhecimento verdadeiro. Para alcançar uma verdade absolutamente segura, utiliza a dúvida metódica, duvidando de tudo: dos sentidos, do mundo exterior e até das verdades matemáticas. No entanto, descobre uma verdade impossível de negar: “Penso, logo existo” (Cogito, ergo sum). Mesmo que esteja a ser enganado, tem de existir para pensar.

Depois de provar a sua própria existência,

...

See on Wikiteka »

Hsuevhs

The Laws of Thought are the basic principles of logical thinking. These laws were mainly explained by the Greek philosopher Aristotle. They are considered fundamental rules that guide correct reasoning and help in distinguishing true statements from false ones. In logic, these laws are universal and apply to all forms of thinking, argument, and discussion. The three important Laws of Thought are: the Law of Identity, the Law of Non-Contradiction, and the Law of Excluded Middle. These laws form the...

See on Student Notes »

gerdfgfg

PRACTICAL 6

Co-Generation

Co-generation, also called Combined Heat and Power (CHP), is the process of producing electricity and useful heat simultaneously from the same fuel source. In conventional power plants, heat energy is wasted, but in co-generation this waste heat is utilized for industrial heating or steam generation. Due to this, the overall efficiency increases up to 80–90%.

Need for Co-Generation

1. Better fuel utilization

2. Higher plant efficiency

3. Reduction in fuel cost

4. Less

...

See on Student Notes »

🥲🙂🙂😍😍

Strategic Financial Management (SFM) integrates financial analysis with strategic planning to ensure that a firm’s long-term objectives are met through optimal capital allocation and risk management.
### 1. Introduction & Interface of Financial Policy
SFM is the "backbone" of corporate planning, defining the feasible area of operations for a business. The **interface** between financial policy and strategic management occurs when functional financial decisions (like debt levels or dividend payouts)

...

See on Student Notes »

Nitin 😅😅

Corporate restructuring involves the strategic modification of a company's capital structure, operations, or ownership to increase its overall value. This process is often driven by the need to improve financial performance, adapt to market changes, or respond to financial distress.
## 1. Financial Aspects of Corporate Restructuring
The financial core of restructuring centers on **valuation** and **capital allocation**. Companies must determine if the "sum of the parts" is greater than the whole.
 *

...

See on Student Notes »

Angielski

Technology has become an inseparable part of modern life, deeply influencing the way people live, work, and communicate. Nowadays, smartphones and social media are everywhere, creating a "global village" where information flows instantly. However, the impact of these advancements on human relationships is a subject of ongoing debate. While technology offers undeniable benefits, it also poses significant risks to genuine human connection.                        On the one hand, technology

...

See on Wikiteka »

edwefe

PRACTICAL 1

#include <xc.h>

#define _XTAL_FREQ 20000000

#pragma config FOSC = HS
#pragma config WDTE = OFF
#pragma config PWRTE = ON
#pragma config LVP = OFF

void delay_ms(unsigned int time)
{
    while(time--)
        __delay_ms(1);
}

void main(void)
{
    ANSEL = 0x00;     // Configure all pins as digital
    ANSELH = 0x00;

    TRISB = 0x00;     // PORTB as output
    PORTB = 0x00;

    while(1)
    {
        PORTB = 0xFF;
        delay_ms(500);

        PORTB = 0x00;
 

...

See on Student Notes »