chimica

Diagramma tensione-deformazione per l’acciaio

Prova di trazione

Nel tratto OP l’andamento è lineare: la deformazione è di tipo elastica. La pendenza del tratto retto definisce il modulo elastico E del materiale. Nel tratto PE iniziano a verificarsi deformazioni permanenti di lieve entità. Il punto E rappresenta il limite del campo elastico, oltre il quale avviene la deformazione plastica. Nel tratto ES si osserva un graduale passaggio dal campo elastico a quello plastico. Il punto S, detto

...

See on Wikiteka »

fgergergergerg

🧪 Chemistry Review Sheet


🔹 1. Math & Measurement in Chemistry

  • Chemistry uses math for measuring, calculating, and comparing data.

  • Uses SI Units (grams, liters, meters, kelvin, etc.).

  • Conversions are common (like grams to kilograms).

  • Accuracy and precision matter in all experiments.

Example: Measuring 25.0 mL of water = precise data.


🔹 2. The Scientific Method & Data

  • Steps: Ask a question → Form a hypothesis → Experiment → Collect data → Analyze → Conclude.

...

See on Student Notes »

cost accounting

Meaning of Strategic Financial Management

  • Managing financial resources to achieve long-term organizational goals.

  • Integrating financial strategy with overall corporate strategy.

Scope of Strategic Financial Management

Financial Planning and Forecasting: Aligning financial goals with the strategic plan.

  1. Investment Decisions (Capital Budgeting): Selecting long-term projects that align with strategic objectives.

  2. Financing Decisions (Capital Structure): Determining the optimal mix of debt

...

See on Student Notes »

mrnjao

Nikvistov kriterijum zahteva da frekvencija semplovanja mora biti bar dva puta viša od
najviše frekvencije sadržane u ulaznom signalu. Ukoliko ovaj uslov nije ispunjen dolazi do
pojave tzv. alijaze (alliasing). Sledi potpunija definicija Nikvistovog kriterijuma:
 Signal sa maksimalnom frekvencijom fa mora biti semplovan frekvencijom fs > 2fa. Ovim
se garantuje da će u digitalni domen biti preneta potpuna informacija o signalu.
 Alijaza nastaje kada je fs < 2fa
 Signal sa frekventnim

...

See on Wikiteka »

essay

National Security Assessment & Constitutional Questions Surrounding the TikTok Act

Introduction

TikTok’s American future hs become a controversy exposing deep tensions between constitutional balance, free speech, & national security. 2 interrelated claims organize this debate. 1st, there R legitimate national security reasons 4 changing Americans’ relationship with TikTok, & the course materials R biased toward this claim. 2nd, George Washington & James Madison would approve

...

See on Student Notes »

cheatsheet

# **Program 1: NumPy Array Operations**
import numpy as np
arr=np.array([[1,2,3],[4,5,6],[7,8,9]])
print("Sum of all columns:",np.sum(arr,axis=0))
print("Product of all rows:",np.prod(arr,axis=1))
print("Last two rows and columns:\n",arr[1:,1:])
arr2=np.array([[9,8,7],[6,5,4],[3,2,1]])
print("Element-wise addition:\n",arr+arr2)
.
.

# **Program 2: Vowel Frequency in Each Word**
sentence=input("Enter a sentence in lowercase: ")
vowels='aeiou'
for w in sentence.split():
    print(f"{w}: {sum(w.count(v) for v...

See on Student Notes »

Java

## **1. a) Define Java Bytecode. Justify that Java is platform independent

**Java Bytecode** is the intermediate code generated by the Java compiler after compiling a Java program. When you write a Java source file (`.java`) and compile it using `javac`, the compiler converts it into a bytecode file (`.class`). This bytecode is not specific to any machine and can be executed by the **Java Virtual Machine (JVM)** on any platform.

**Platform independence** means that a Java program can run on any

...

See on Student Notes »

Cloud computing

Cloud computing is a transformative technology that enables users to access computing resources over the internet rather than on physical devices or local servers. Below is a detailed note on cloud computing, covering key concepts, types, benefits, and use cases.

1. What is Cloud Computing?

Cloud computing refers to the delivery of various services over the internet, including storage, processing, networking, databases, software, and more. It allows businesses and individuals to use computing resources...

See on Student Notes »

Law Exam

Q1

Principles of Non-Discrimination in International Trade Law
In international trade law, non-discrimination is a fundamental principle that ensures equal treatment of goods, services, and service suppliers from different countries. The two main principles of non-discrimination in international trade law are:

### 1. Most-Favored-Nation (MFN) Principle
- Definition: The MFN principle requires that a country treats goods, services, and service suppliers from one country no less favorably than it treats

...

See on Wikiteka »