ECHOGR

// Instructions des ultrasons avec les tissus // • Reflections // • Refraction // • Transmise // • Diffusion // // Interaction des US avec la matière // Le faisceau acoustique présente sur son trajet un phénomène d’atténuation : // 1. Onde réfléchie // 2. Onde transmise // Atténuation : // L’intensité décroît plus rapidement dans les premiers centimètres qu’en profondeur. // NB : // • Fréquence augmente → pénétration US diminue // Organe Fréquence recommandée /

...

See on Wikiteka »

cheat sheet

1. P&G – “THE LOOK”  This campaign is NOT trying to sell a product. It’s trying to change how people think and feel. That means it fits under institutional advertising, advocacy advertising, and cause marketing. It deals with brand image, emotion-based positioning, and public relations, even though it's structured like a paid ad. What makes this ad powerful is that it uses emotional appeal (especially empathy and discomfort) to engage viewers. It doesn’t have a slogan or price tag

...

See on Student Notes »

310- crib

Journaling Motiv8on – fsck ensures metadata consistency after crashes but is slow & requires deep file system knowledge. Recovery time should ideally depend on d # of recent writes. File System Transactions – Transactions provide ACID guarantees: A2micity, Consistency, Isol8on, Durability. Used 2 treat file system ops (like file cre8on) as transactions. Recovery ensures committed transactions R applied & uncommitted 1s R discarded. ext3 Overview – A journaling file system using physical

...

See on Wikiteka »

Business law

a) Social Responsibilities of Companies:Meaning:Social responsibility refers to the obligation of companies to act in ways that benefit society while conducting business operations. It involves going beyond profit-making to consider the welfare of employees, customers, society, and the environment.Key Aspects of Social Responsibility:1.Towards Shareholders:Ensure fair returns on investment, transparent disclosure, and good governance.2.Towards Employees:Provide fair wages, job security, safe working

...

See on Student Notes »

Faijdnke

1. State Legislatures: Vidhan Sabha & Vidhan Parishad

India's state legislatures can be unicameral (only Vidhan Sabha) or bicameral (Vidhan Sabha & Vidhan Parishad). Their structure and functions are outlined in Articles 168-212 of the Constitution.

Composition & Strength

Vidhan Sabha (Legislative Assembly): Directly elected members from territorial constituencies. Strength varies from 60 to 500, with exceptions for smaller states.

Vidhan Parishad (Legislative Council): A permanent

...

See on Student Notes »

fvdgb

Here’s the Design Thinking-based summary of Case Study 2: Floresia’s Elderly Nutrition Crisis in bullet points, perfect for writing in exams:


Design Thinking Summary: Floresia Case (Bullet Points)


1. Empathize

  • Floresia is a highly elderly-friendly country, once ranked top 5 globally for elder care.

  • Despite high government funding (2% of GDP) and clean, accessible canteens, nutritional stats are alarming.

  • 80% of elders live in old-age homes, most rely on subsidized meals.

  • 60% suffer

...

See on Wikiteka »

Computer network

Here are the answers for the 7 questions, 2 marks each, totaling 14 marks:


1. For 10.0.0.0/9:

  • Subnet Mask: 255.128.0.0
  • No. of Possible Networks: 2 (since only 1 bit is used for subnetting from Class A default /8 to /9)
  • No. of Possible IP Addresses per Network: 2³¹ = 2,147,483,648 (for /9 total IPs)
  • No. of Hosts per Network: 2²³ – 2 = 8,388,606 (23 host bits in /9)

2. Interface Identifier (EUI-64 Format):

To convert Ethernet MAC to EUI-64:

  1. Split MAC into two parts
  2. Insert FF:FE in the middle
...

See on Student Notes »

Software engineer


1) What is Software? Explain all Software Myths.

Definition of Software: Software is a set of instructions, data, or programs used to operate computers and execute specific tasks. It is the intangible component of computers, as opposed to hardware.

Types of Software:

  • System Software – e.g., Operating Systems
  • Application Software – e.g., MS Word, Web Browsers
  • Programming Software – e.g., Compilers, Editors

Software Myths:


2) Incremental Model with Diagram, Advantages & Disadvantages

...

See on Student Notes »

webapp

12

public abstract String toString();

}

    private ArrayList<String> courses;

    public Undergraduate(String name, int id, int graduationYear) {

        super(name, id);

        this.graduationYear = graduationYear;

        this.courses = new ArrayList<>();

    }

    public void displayStudentLevel() {

        System.out.println(name + " is an undergraduate student.");

    }

    public void registerCourses() {

        Random...

See on Student Notes »