PROVA

1. Sobre a influência da temperatura no florescimento, assinale a alternativa correta:
a) A soja e o feijão toleram bem temperaturas acima de 32°C na floração.
b) A soja tolera até 35°C na floração sem prejuízo, enquanto o feijão tem tolerância semelhante.
c) A soja sofre aborto floral acima de 32°C, enquanto o feijão sofre aborto acima de 30–32°C.
d) O feijão é mais tolerante ao calor do que a soja durante o florescimento.
Resposta esperada: c
2. Qual das alternativas descreve
...

See on Wikiteka »

micro it

Short Answer Type Questions
1. Difference between internal audits and regulatory audits
•Internal audits are conducted by an organization’s own staff or consultants to evaluate the effectiveness of internal controls, risk management, and operational processes, guiding improvements for management. Regulatory (or statutory) audits are performed by external professionals and required by law, focusing on confirming compliance with regulations and standards, usually reporting findings to shareholders
...

See on Student Notes »

question

2. Features of Classroom Discussion
Classroom discussion is an interactive technique that promotes student thinking, participation, and collaborative learning. One of its major features is active involvement of learners. Instead of passively listening to the teacher, learners share ideas, opinions, and interpretations on a given topic. This helps them construct knowledge rather than merely receive it.
Another key feature is exchange of viewpoints. Students listen to multiple perspectives and learn
...

See on Student Notes »

Yfyfttfyffoguddt

A Python dictionary is a collection of key-value pairs used to store data in an unordered, mutable structure. You create a dictionary using curly braces `{}` with key-value pairs, for example: `my_dict = {"name": "Alice", "age": 25}`. You can also use the `dict()` constructor to create dictionaries. Accessing values is done by referring to their keys: `my_dict["name"]` returns `"Alice"`. 

You add or update items by assigning a value to a key, such as `my_dict["city"] = "New York"` to add new or

...

See on Student Notes »

Python hello

🐍 Python Loop and Branching Statements
Python provides powerful structures for iteration (loops) and flow control (branching statements) that allow you to execute blocks of code repeatedly or conditionally.
Python Loop Statements
Loops are used to execute a block of code multiple times. The main loop types in Python are while and for.
1. The while Loop
The while loop repeatedly executes a block of statements as long as a given condition is True.
 * Syntax:
   while condition:
    # statement(s)

...

See on Wikiteka »

ਹੈਲੋ ਵਰਡ

Keywords and identifiers are fundamental elements in programming languages used to define variables, functions, and other constructs, with keywords being reserved words that have special meanings, and identifiers being names given to user-defined entities.

Comments in programming serve the essential purpose of making the source code more understandable and maintainable by providing textual annotations that explain the logic, purpose, or any additional information about the code. They help programmers

...

See on Wikiteka »

afdasfd

## Hybrid Hash-Join — Step-by-Step Conceptual Explanation (Exam-Friendly)

Hybrid Hash-Join is an **improved version of Hash-Join** that reduces disk I/O by using memory more efficiently during the join operation.
It is particularly useful when:

* The **build relation is larger than memory**
* But memory is **still large enough** to hold **one or more partitions** fully

## Why Hybrid Hash-Join?

In a normal Hash-Join:

* All partitions of build relation are written to disk first
* Then read again for...

See on Student Notes »

spagnolo

Cuando un cliente llega al hotel, el recepcionista debe comprobar su reserva o la disponibilidad de habitaciones (si no ha reservado), preguntando los datos necesarios (fecha de salida, tipo de habitación y servicios solicitados).
Antes de asignarle una habitación, se debe pedir un documento. Los viajeros españoles suelen entregar el DNI (Documento Nacional de Identidad), pero se pueden aceptar también el pasaporte o el carné de conducir. Además, cada establecimiento turístico tiene la obligación

...

See on Apuntes & Cursos »

chetmod4

24(a) Meaning of Indiscernibility

  • Two objects are indiscernible if they have same values for a chosen set of attributes.

  • Forms equivalence classes (granules).

  • Basis for lower/upper approximations in Rough Sets.


24(b) Reduct & Core

Reduct

  • Minimum subset of attributes giving same classification power as full set.

  • Removing any attribute → information loss.

Core

  • Intersection of all reducts.

  • Contains attributes must for classification.

Example (Medical dataset)

  • Attributes:

...

See on Student Notes »