python

1

# Hw *8
addition = float(input("Enter the annual addition of public residential land (in sq land):"))
years = 0 
current_total = initial_total 
while current_total < target_total:
    years += 1 
    private_residential = private_residential*1.03
    public_residential = public_residential + addition 
    current_total = private_residential + public_residential + rurual_settlement 

print(f"It will take at least {years} year(s) for the residential land in Hong Kong to double in size.")

...

See on Student Notes »

bu

Reinaert (Lhamo): Majesteit, wat een indrukwekkend welkom. Zoveel ogen op mij gericht… ik voel mij bijna belangrijk.

Jij (Lina – Tybaert):
Tybaert: Belangrijk? Jij bent een leugenaar en een bedrieger! Je hebt iedereen hier lang genoeg misleid!


🎭 SCÈNE 2

(Voor jou – Tybaert cue):
Koning Nobel (Svea): Tybaert, jij begint.

Jij (Lina – Tybaert):
Tybaert: Majesteit, ik vertrouwde hem. Hij liet mij geloven dat hij mij zou helpen, dat hij wist waar voedsel was. Maar alles wat hij deed, was mij

...

See on Wikiteka »

Volumetric Analysis: Key Definitionsi. Primary Standard Solution: A solution of exactly known concentration prepared by dissolving a known mass of a primary standard substance (like Oxalic acid or Sodium carbonate) in a fixed volume of solvent. ii.

    1. Acidimetry: The analytical process of determining the concentration of an unknown acid by titrating it with a standard base solution.

    2. Acidity of a Base: The number of replaceable hydroxyl ($OH^-$) ions present in one molecule of a base.

    3. Alkalimetry: The analytical process of determining the concentration of an unknown base by titrating it with a standard acid solution.

    4. Basicity of an Acid: The number of replaceable hydrogen ($H^+$) ions present in one molecule of an acid.

    5. Decimolar

...

See on Wikiteka »

sadsadasdsad

PROBABILITY BASICS
P(A∪B) = P(A) + P(B) - P(A∩B)
P(A') = 1 - P(A)
P(B|A) = P(A∩B)/P(A)   (if P(A)>0)
Law of total probability: P(B) = Σ P(B|Ai)P(Ai)
Bayes: P(Ak|B) = P(B|Ak)P(Ak) / Σ P(B|Ai)P(Ai)
Independence: P(A∩B)=P(A)P(B)  →  then P(A|B)=P(A)

COUNTING
Multiplication: n1×n2×...
Permutation (order): nPr = n!/(n-r)!
Combination (no order): C(n,r) = n!/(r!(n-r)!)
Distinguishable permutations: n!/(n1! n2! ...)
Probability (equal outcomes): P(A)= (#favourable)/(#total)

DISCRETE DISTRIBUTIONS
Mean:

...

See on Wikiteka »

Byyy Nitin

In cost accounting, managing materials is a massive undertaking because materials often account for 50% or more of the total cost of production. Here is a breakdown of how costs are classified and how material inventory is managed.
## **1. Classification of Costs** Costs can be classified in several ways to help management understand their behavior and impact.
### **By Nature or Element** **Material:** The cost of commodities supplied to an undertaking.
 * **Labor:** The cost of remuneration (wages/

...

See on Student Notes »

Hello Nitin

Cost accounting is a specialized branch of accounting that focuses on capturing a company's total costs of production by assessing the variable costs of each step of production, as well as fixed costs. It is an essential tool for management to make informed decisions.
## **1. Nature of Cost Accounting**
Cost accounting is both an art and a science, serving as a critical internal subsystem of an organization's information system.
 * **Internal Focus:** Unlike financial accounting, which provides information

...

See on Student Notes »

sdsdfs

1. Number Systems & Data Types

Question 1: What is the decimal equivalent of 0xBEEF?

  • 48879

Question 2: What is the decimal number equivalent of the octal value 0465?

  • 309

Question 3: What is the binary equivalent of decimal 135?

  • 0b10000111

Question 4: What is the octal equivalent of 0x5EED?

  • 057355

Question 5: What is the binary equivalent of 0xBEAD?

  • 0b1011111010101101

Question 6: What is the range of an unsigned byte?

  • 0 to 255

Question 7: What is the range of a signed

...

See on Wikiteka »

RTIT-paper

Q)Explain RDD and its operations.

-RDD (Resilient Distributed Dataset)

An RDD (Resilient Distributed Dataset) is the fundamental data structure of Apache Spark. It is a fault-tolerant collection of elements that is distributed across multiple nodes in a cluster and can be processed in parallel.

RDDs are called resilient because they can automatically recover lost data using lineage information (i.e., how the data was created).

Key Features of RDD:

Distributed: Data is split across multiple machines.

...

See on Student Notes »

Interview

║         GOOGLE DATA CENTER TECHNICIAN L3 — MASTER INTERVIEW CHEAT SHEET        ║

THE INTERVIEW PROCESS
STAGE 1 — Recruiter Screen
  • Background check, location confirm, basic fit questions
  • "Why Google?" "Are you OK with shift work?" "Can you relocate?"
  • Takes ~46 days avg from apply to hire

STAGE 2 — Technical Phone Screen
  • Rapid-fire fundamentals: protocols, commands, definitions
  • 20-30 questions, short answers expected
  • No NDA — questions are mostly...

See on Student Notes »