english 4 de atkins early american history

Allusion: An indirect reference to a person, place,
2. Archaic Language: Words or phrases that were once in common use
3. Archetypes: Character types  from different cultures
4. Audience: intended to read a piece of writing.
5. Creation Myth: A myth that typically describes how the universe, began
6. Emotional Appeals: Messages persuade by creating feelings.
7. Extended Metaphor: A comparison between two essentially unlike things 
8. Figurative Language: Language that communicates ideas 
9. Folk Literature:

...

See on Student Notes »

maintenance

Part 1: The "Method" Cheat Sheet (For Exercises 1 & 2)

When reading a scenario, ask yourself: Why are we touching the machine right now?

1. We are touching it BEFORE it breaks (Maintenance Préventive)

  • Systématique (Systematic/Periodic): The trigger is a strict number (Time, Kilometers, Operating Hours, Cycles). You don't care if the part still looks good; the schedule says change it.

    • Keywords to look for: "tous les X km" , "toutes les semaines" , "tous les mois" , "à 100 000 km" , "début

...

See on Student Notes »

Notes for practice

Program 7

n = int(input("Enter number"))

if n <= 1:

    print("Neither prime nor composite")

else:

    for i in range(2, n):

        if n % i == 0:

            print("Not prime but a composite no")

            break

    else:

        print("Is a prime no and not a composite")



Program 8

def rect(l,b):

    print("Area of rectangle:", l*b)

def square(s):

    print("Area of square:", s*s)

def triangle(b,h):

    print("Area of triangle:", 0.5*b*h)

while True:

...

See on Student Notes »

Sem 6 mid

import 'package:flutter/material.dart';
void main() {runApp(MyApp());}
class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp( home: EmployeeEntryScreen());} }
class Employee { String name, id, designation; double basicSalary;
  Employee(this.name, this.id, this.designation, this.basicSalary);}
List<Employee> employeeList = [];
/* -------- SCREEN 1 -------- */
class EmployeeEntryScreen extends StatefulWidget {
  @override
  State<EmployeeEntryScreen&

...

See on Student Notes »

Biology

SEXUAL REPRODUCTION 

1. What is Double Fertilization?

Answer: Double fertilization is a characteristic feature of angiosperms. In this process, two male gametes are involved in fertilization. One male gamete fuses with the egg cell to form a diploid zygote (syngamy). The other male gamete fuses with two polar nuclei to form a triploid primary endosperm nucleus (triple fusion). Thus, two fusions occur in the same embryo sac, so it is called double fertilization.

2. What is Triple Fusion?

Answer:

...

See on Student Notes »

osmansko carstvo

 Учвршћивање на Балкану

Средином XIV века Османска држава престаје да буде само гранична држава у Малој Азији. 1354. године осваја Галипоље → прво велико упориште у Европи. Одатле наставља продоре на Балкан. До краја XIV века осваја највећи део Балканског полуострва. Многе балканске

...

See on Wikiteka »

newjhkhkk

Q: What is the difference between if, elif, and else?
if checks a condition. elif checks another condition if the previous one is false. else runs if none of the conditions are true.

Q: When do we use a for loop instead of while?
We use for when we know the number of iterations. while is used when the condition controls the loop.

Q: What is an infinite loop?
A loop that never stops because its condition is always true.

Q: What is a function?
A reusable block of code that performs a specific task.

Q:

...

See on Student Notes »

Chp 13

                            Biodiversity.

1. Give an example of invasive weed species that threatens our native species?

Answer:- Parthenium hysterophorus (Congress grass) or Eichhornia crassipes (Water hyacinth).

2. Write the equation of Species–Area relationship in logarithmic scale?

Answer:-   log S = log C + Z log A

Where S = number of species, A = area, C and Z = constants.

3. Write scientific name of water hyacinth.?

Answer:  Eichhornia crassipes

4. What is ex-situ conservation?

...

See on Student Notes »

Chp 3

                       Reproductive health

1. Why Cu-T acts as an effective contraceptive?

Answer: Cu-T releases copper ions which reduce sperm motility and prevent fertilization. It also prevents implantation in the uterus.

2. What do you understand by reproductive health?

Answer: Reproductive health means a healthy reproductive system and the ability to reproduce safely without disease or complications.

3. What substances are present in semen?

Answer:  Semen contains sperm, fructose,

...

See on Student Notes »