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 »

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 »

Cheat

1.Consider the following grammar for hexadecimal integers:

⟨hex literal⟩::= 0x⟨number⟩

⟨number⟩::= ⟨number⟩⟨number⟩|⟨digit⟩

⟨digit⟩::= 0 |1 |2 |3 |4 |5 |6 |7 |8 |9 |A |B |C |D |E |F

String 0xF3 is an element of the language generated by this grammar.1 How many distinct

derivation sequences exist for this string?2 How many distinct parse trees exist for this string?

Show all parse trees.

There exist 6 derivation sequences:

⟨hex literal⟩⇒0x⟨number⟩⇒0x⟨number⟩⟨number⟩⇒0x⟨digit⟩⟨number⟩⇒0x⟨digit⟩⟨digit⟩⇒0xF⟨digit⟩⇒0xF3...

See on Wikiteka »

Public Law

Chapter 1: Introduction to Constitutional Law

  • A constitution is an expression of a nation's fundamental political and legal values

  • Constitutional law is built on a core set of values:

    • Social Order

    • Prevention of Tierney

  • 27 Amendments Since 1789

    • The first 10, the Bill of rights 1791

Federalists: people who support a strong centralized government; A political party that advocates a strong, centralized government. 

Anti-Fed: people who oppose the establishment of a strong centralized...

See on Student Notes »