shawn

In ground wave propagation, radio waves travel along the surface of the Earth, following the curvature of the planet. Freq Range: 30 kHz to 300 kHz (Low Freq). Key Points: Travels along the ground. Strongly attenuated by terrain, trees, buildings, etc. Limited to short distances (few hundred km). APPS: AM radio (MW band). Navigation systems & military communication.In sky wave propagation, radio waves R transmitted towards the ionosphere, which reflects or refracts them back to Earth. Freq Range:

...

See on Wikiteka »

Global

🏺 1. CULTURAS PREHISPÁNICAS

Mesoamérica:

  • Zona geográfica y cultural que incluye parte de México y Centroamérica.

  • Características: agricultura (maíz), politeísmo, escritura jeroglífica, calendario.

Cosmovisión:

  • Relación entre dioses, naturaleza y humanos.

  • Ciclicidad del tiempo y sacrificios como ofrenda a los dioses.

Aportaciones de 3 culturas:

  • Olmeca: calendario, escritura, cabezas colosales.

  • Maya: sistema numérico con el cero, astronomía, arquitectura avanzada.

...

See on Wiki Historia »

Hziudhdndn

InsertData.java

import java.sql.*;

import java.util.Scanner;

public class InsertData {  

    public static void main(String[] args) {  

        try {  

            // to create connection with database

            Class.forName("com.mysql.jdbc.Driver");  

            Connection con = DriverManager.getConnection("jdbc:mysql://localhost/mydb", "root", "");  

            Statement s = con.createStatement();  

            // To read insert data into

...

See on Student Notes »

Vsiisjdh

import java.io.*;

public class RandomAccessFileExample {

    public static void main(String[] args) {

        try {

            // Create a RandomAccessFile object with read-write mode

            RandomAccessFile file = new RandomAccessFile("data.txt", "rw");

            // Write data to the file

            String data1 = "Hello";

            String data2 = "World";

            file.writeUTF(data1);

            file.writeUTF(data2);

         

...

See on Student Notes »

nano tech

Chemical vapour deposition, a hybrid method using chemicals in vapour phase is conventionally used to obtain coatings of a variety of inorganic or organic materials.It is widely used in industry because of relatively simple instrumentation, ease of processing, possibility of depositing different types of materials and economical viability.Under certain deposition conditions nanocrystalline films or single crystalline films are possible. There are many variants of CVD like Metallo Organic CVD (MOCVD)

...

See on Student Notes »

Discreate Math

Problem: what is the power set P(S) of S=(a,b,c) Solution: ∅, {a}, {b}, {c}, {a, b}, {a, c}, {b, c}, {a, b, c}}.  |p ∨ (p ∧ q) ≡ p|, |p ∧ (p ∨ q) ≡ p|, |p → q ≡ ¬p ∨ q|, |p → q ≡ ¬q → ¬p|, |p ∨ q ≡ ¬p → q|, |p ∧ q ≡ ¬(p → ¬q)|, |¬(p → q) ≡ p ∧ ¬q|, |(p → q) ∧ (p → r) ≡ p → (q ∧ r)|, |(p → r) ∧ (q → r) ≡ (p ∨ q) → r|, |(p → q) ∨ (p → r) ≡ p → (q ∨ r)|, |(p → r) ∨ (q → r) ≡ (p ∧ q) → r|, |p ↔ q ≡...

See on Student Notes »

module2

Management Characteristics/2 approaches/theory Traditional,popular POSDC –

Planning, Organizing, Staffing, Directing, Controlling POLC – Planning, Organizing, Leading, Controlling

  • Planning:The process that develops, creates, and implements

    strategies for the accomplishment of objectives. Planning

    process begins with the creation of strategic plans for the entire

    organization, then divided up into planning elements.Strategic: Long term (5+ years),Tactical: Short term (1–5 years), 

  • Operational:

...

See on Student Notes »

sdwfwert

Mental health is a prevalent issue in youth today

Enablers

Plays basketball

  • Helps her stay physically active
  • Builds social connections with her team
  • Affects her as it builds relationships and accomplishment (Perma)
  • Moves her to the ease end of the river of live

 Clear goal – Physiotherapist

  • Gives a sense of purpose and direction
  • Encourages her to feel motivated and focused
  • This gives her meaning in her studies (Perma)
  • Keeps her on health range of the mental health continuum


Barriers

Procrastinates

...

See on Wikiteka »

GenAi

1) from gensim.models import KeyedVectors

from gensim.downloader import load

word_vectors = load('glove-wiki-gigaword-100')

# Example 1: Animal relationship (kitten → cat, puppy → dog)
result = word_vectors.most_similar(positive=['kitten', 'dog'], negative=['cat'], topn=1)
print("Result of 'kitten - cat + dog':", result[0][0])

# Example 2: Fruit relationship (orange → fruit, mango → tropical fruit)
result = word_vectors.most_similar(positive=['orange', 'tropical'], negative=['fruit'], topn=

...

See on Student Notes »