non conventional 1

Importance of Maintenance

Maintenance is the activity of keeping machines, equipment, and systems in proper working condition so that they perform efficiently and safely throughout their service life.

Importance of maintenance:

  1. Increases equipment life – Regular maintenance reduces wear and tear.

  2. Improves reliability – Machines work smoothly with fewer breakdowns.

  3. Ensures safety – Prevents accidents due to machine failure.

  4. Reduces breakdown cost – Early detection avoids major repair

...

See on Student Notes »

chemistry cheat sheet

1. VOLUMETRIC ANALYSIS (Titration)
----------------------------------
Experiment: KMnO4 vs Mohr’s Salt (Ferrous Ammonium Sulphate)
Indicator: Self-indicator (KMnO4)
End Point: Colourless -> Permanent Light Pink
Ionic Equations:
  Reduction: MnO4- + 8H+ + 5e- -> Mn2+ + 4H2O
  Oxidation: Fe2+ -> Fe3+ + e-
Rapid Viva Qs:
1. Why add dilute H2SO4?
   - Provides acidic medium and prevents KMnO₄ from getting reduced to MnO₂ (brown ppt.)
2. Why not HCl?
   - HCl reduces KMnO4, producing
...

See on Student Notes »

vaewrgvwa

/// min array jumps

int minimumJumps(const vector<int>& a) {

    int n = static_cast<int>(a.size());

    if(n==1) return 0;    

    if(a[0]==0)  return -1;

    int jumps = 0;

    int currentEnd = 0;

    int farthest   = 0;

    for(int i=0;i<n-1;++i){   

        farthest = max(farthest,i + a[i]);

        if(farthest<=i) return -1;

        if(i==currentEnd){

            ++jumps;

            currentEnd...

See on Student Notes »

direito ii

facto jurídico- qualquer acontecimento que produza efeitos juridicos, pode ser: voluntário(depende da vontade humana) ex: celebrar um contrato; involuntário(independente da vontade humana) ex: nascimento, morte, um desastre natural; ato juridico- ato humano voluntario, vontade humana consistente dirigida a produzir efeitos juridicos;teorias sobre o estado de natureza- jean-jaques rousseau: ser humano naturalmente bom, no e.n. viveria sozinho, livre e feliz, quand entra em sociedade é corrompido

...

See on Wikiteka »

Ggggggggggg

The Solar System is our "cosmic neighborhood." It is a gravitationally bound system consisting of one star—the Sun—and every object that orbits it, either directly or indirectly. Formed about 4.6 billion years ago from a giant cloud of gas and dust, it has evolved into a complex arrangement of planets, moons, and smaller icy or rocky bodies.
1. The Center: The Sun -The Sun is the heart of the system. It is so massive that it contains 99.8% of the total mass of the entire solar system. Its powerful

...

See on Wikiteka »

Ιστορία

β. Εσωτερική αναδιοργάνωση

Για την αποτελεσματικότερη διακυβέρνηση του κράτους επιδιώχθηκε μια εκτεταμένη διοικητική μεταρρύθμιση, η δημιουργία των θεμάτων. Τα θέματα αρχικά ήταν στρατιωτικές μονάδες, μετακινούμενες ανά την επικράτεια. Όταν οι μονάδες αυτές απέκτησαν μόνιμη

...

See on Wikiteka »

Bdhhdhfhr

The Geological Time Scale (GTS) is the "calendar" for Earth's 4.54-billion-year history. It organizes the vast expanse of deep time into nested units based on major geological events (like mountain building) and biological shifts (like mass extinctions).
Scientists use chronostratigraphy (stacking rock layers) and geochronology (radiometric dating) to refine these dates.
Hierarchy of Time Divisions
Geological time is divided into units of varying lengths, from the massive Eons to the more specific

...

See on Student Notes »

networking

#Topic : Write a program to show up and Mac address of the system and also check up address is ipv4 or ipv6 

import java.net.*;

public class SimpleNetworkInfo {
    public static void main(String[] args) {
        try {
            InetAddress ip = InetAddress.getLocalHost(); 
            System.out.println("IP Address: " + ip.getHostAddress());

            String ipType = (ip instanceof Inet4Address) ? "IPv4" : "IPv6";
            System.out.println("IP Type: " + ipType)

...

See on Student Notes »

Bsa cheat

SECTIONS

1. Short title, application and commencement.

2. Definitions.

PART II

CHAPTER II

RELEVANCY OF FACTS

3. Evidence may be given of facts in issue and relevant facts.

Closely connected facts

4. Relevancy of facts forming part of same transaction.

5. Facts which are occasion, cause or effect of facts in issue or relevant facts.

6. Motive, preparation and previous or subsequent conduct.

7. Facts necessary to explain or introduce fact in issue or relevant facts.

8. Things said or done by conspirator...

See on Student Notes »