gesch woorden

Rivaliteit Rivaliteit betekent dat landen met elkaar in machtsstrijd leven. In de periode vóór de Eerste Wereldoorlog zorgde dit ervoor dat Europese grootmachten met elkaar wedijverden om invloed, kolonies en controle over belangrijke gebieden zoals de Middellandse Zee. Duitse vlootbouw De Duitse vlootbouw was het uitbouwen van een grote Duitse oorlogsvloot vóór 1914. Dit gebeurde om te kunnen concurreren met Engeland op zee en werd door de Britten gezien als een directe bedreiging. Von Schlieffenplan

...

See on Wikiteka »

Finance Final

1. COST OF EQUITY (Dividend Growth Model)

Use when you are given: last dividend, growth rate, and stock price.

Steps

Find next year’s dividend:
Next dividend = Last dividend × (1 plus growth rate)

Cost of equity = Next dividend ÷ Stock price + Growth rate

Excel

=(D0*(1+g)/Price) + g

2. COST OF DEBT (YTM)

Your system almost always uses ANNUAL coupons, even if the bond says semiannual.

Steps

Coupon payment = Coupon rate × Par value

Discount each payment back using a trial interest rate until

...

See on Student Notes »

XCVCXV

# Practical 1: Car Class
# Purpose: Demonstrate basic OOP — creating a Car class with accelerate and brake methods.

class Car:
 def __init__(self, year, mpg, speed):
 self.year = year
 self.mpg = mpg
 self.speed = speed
 def accelerate(self):
 self.speed += 10
 print(f"The car speeds up. Current speed is {self.speed}")
 
 def brake(self):
 if self.speed >= 10:
 self.speed -= 10
 else:
 self.speed = 0
 print(f"The car slows down. Current speed is {self.speed}")
car1 = Car(2024, 24, 50)
car1.accelerate(

...

See on Student Notes »

Math exam

P(x) = -4x^2+632x-4000, x>10,X is number produced, total prodcution for 800 dollars, WORK: 0 =-4x^2+632x-4800** Plug into quad formula** ANS: X=150    

relative maximum F(x) = ln (2x-8.4)-.25(x+4)^2+ 9.83 ANS: 10.2 at x = 5.5 

 real zeros  3-2 log base 5 Square root x^2 +2x+3 , three decimal place ANS: x=-12.091, x-10.091

2500 yr old estimate carbon 14 decrease from 20 grams to 12 so 60%remains, P(t)=2=eA^-0.00012t ANS: t =4256.8 yrs

72 feet per sec, h(t) = -16t^2 +72t , WRK: x=-b/...

See on Student Notes »

BPCC-105: FINAL 20-POINT REVIEW CHECKLIST I. FOUNDATIONS AND ETHICS Goals of Research: The four goals are to Describe (what), Explain (why/cause), Predict (when/relationship), and Control (influence behavior). Scientific research must achieve these s

​BPCC-105: FINAL 20-POINT REVIEW CHECKLIST

​I. FOUNDATIONS AND ETHICS

  1. Goals of Research: The four goals are to Describe (what), Explain (why/cause), Predict (when/relationship), and Control (influence behavior). Scientific research must achieve these systematically.
  2. Characteristics of Science: Research must be Empirical (based on observation), Objective (unbiased), Verifiable (replicable), and Systematic (planned steps) to maintain scientific rigor and credibility.
  3. Ethical Issues (
...

See on Student Notes »

Ehtics

SECTION 1: THE THREE APPROACHES TO JUSTICE

Welfare (Utilitarianism)
Freedom (Libertarianism, Kant, Rawls)

Virtue (Aristotle, MacIntyre, Communitarianism)

Justice is about distributing income, wealth, rights, duties, powers, opportunities, offices, and honors.

SECTION 2: HOW TO IDENTIFY EACH THEORY QUICKLY (HIGH-YIELD MCQ CLUES)

Utilitarianism:

Looks at consequences

Maximize total welfare or happiness

“Greatest good for the greatest number”

Cost-benefit analysis; efficiency; overall outcomes

Libertarianism:...

See on Student Notes »

HLTH 292 Final Exam

Defining Wellness:

Wellness is the process by which health is achieved, involving choices that we make to improve or maintain health, or more broadly, improve our existence. Wellness, like health, exists across various dimensions. 


Dimensions of Wellness (Dr. Bill Hettler):

Intellectual: expanding knowledge, engaging in creative and stimulating activities

Physical: self care and health enriching behaviors

Spiritual: appreciation for like and natural forces in the universe

Emotional: awareness

...

See on Student Notes »

Hjfjjfjfjf

The Auditor's Report is a formal, written opinion issued by an independent external auditor after examining a company's financial statements. Its purpose is to provide assurance to stakeholders (investors, creditors, regulators) regarding the fairness and reliability of the financial statements in accordance with the applicable financial reporting framework (like GAAP or IFRS).
It is a critical component of financial reporting that adds credibility to the information presented by the management.
🌎

...

See on Wikiteka »

Gggggggggg

A Cash Flow Statement (CFS) is a key financial document that reports the detailed changes in a company's cash and cash equivalents over a specific period, such as a month, quarter, or year. It tracks the movement of cash inflows (money deposited) and cash outflows (money spent) within the business.
🎯 Purpose of Preparing a Cash Flow Statement
The primary purpose of preparing a CFS is to provide insight into a company's liquidity and financial health by showing where its cash came from and how it

...

See on Student Notes »