Terraform

Get Help

terraform -help — Get a list of available commands for execution with descriptions. Can be used with any other subcommand to get more information.

terraform fmt -help — Display help options for the fmt command.

Show Your Terraform Version

terraform version — Show the current version of your Terraform and notifies you if there is a newer version available for download.

Format Your Terraform Code

This should be the first command you run after creating your

...

See on Student Notes »

Physical pharmaceutics 2

Newtonian Flow

Newtonian fluids exhibit a linear relationship between shear stress and shear rate, following Newton's law of viscosity:

τ = η * γ

Characteristics

1. *Constant viscosity*: Viscosity remains unchanged regardless of shear rate.

2. *Linear relationship*: Shear stress and shear rate have a direct, linear relationship.

Examples

1. Water 2.Gases 3.Simple oils

Non-Newtonian Flow

Non-Newtonian fluids exhibit a non-linear relationship between shear stress and shear rate.

Types

1. *Pseudoplastic

...

See on Student Notes »

DSE B3

Amitav Ghosh's The Shadow Lines offers a profound and distinctive analysis of Partition literature, moving beyond conventional narratives of direct violence and displacement to explore its psychological, historical, and philosophical dimensions.At its core, the novel introduces the concept of "shadow lines" – arbitrary and often invisible borders that divide nations, communities, and individuals. Ghosh argues that these lines, particularly those drawn during the 1947 Partition of India, are not

...

See on Student Notes »

Bcos185

1. What do you understand by creative salesmanship? Discuss the functions and duties of the salesman with the help of examples.

(5 + 15 = 20 marks)

Creative Salesmanship:

Creative salesmanship is the art of selling in a persuasive, innovative, and customer-centric manner. It goes beyond routine selling and involves understanding customer needs, presenting solutions effectively, and building long-term relationships. A creative salesperson doesn't just push a product but acts as a consultant, problem-

...

See on Student Notes »

tttttttttt

Financial Statement Analysis: Concepts, Objectives, and Tools

🔷 Introduction:

Financial statement analysis is a critical process in financial management that involves a detailed examination of the financial information contained in a company’s financial statements to assess its performance, financial health, and future prospects.

It helps stakeholders such as management, investors, creditors, and analysts to make informed decisions based on the company’s financial data.

🔷 Concept of Financial

...

See on Student Notes »

Biochem

[6/20, 8:54 AM] Omkar Shinde (Bpharm): Proteins

Proteins are complex molecules made up of amino acids. They perform various functions in the body, such as:

1. *Structural support* (e.g., collagen)

2. *Enzymatic activity* (e.g., lactase)

3. *Transport* (e.g., hemoglobin)

4. *Defense* (e.g., antibodies)

Classification of Proteins

1. *Based on structure*:

    - Fibrous proteins (e.g., collagen)

    - Globular proteins (e.g., enzymes, antibodies)

2. *Based on function*:

    - Enzymes

   ...

See on Student Notes »

Stack

Stack

#include <stdio.h>
#include <stdlib.h>

#define MAX 100

int stack[MAX];
int top = -1;

void push() {
    int val;
    if (top == MAX - 1) {
        printf("Stack Overflow! Cannot push more elements.\n");
    } else {
        printf("Enter the value to push: ");
        scanf("%d", &val);
        stack[++top] = val;
        printf("%d pushed to the stack.\n", val);
    }
}

void pop() {
    if (top == -1) {
        printf("Stack Underflow! No element to pop.

...

See on Student Notes »

22222222

Geography Branches – Physical = land/climate | Human = people/culture


Map Types – General-purpose | Thematic | Topographic


Location – Military grid = easting/northing | Latitude = horizontal | Longitude = vertical


Time Zones – 24 worldwide | 6 in Canada | We are EST


Map Scales – Direct: 1cm = 2km | RF: 1:200,000 | Line: bar scale


Compass – Cardinal: N/E/S/W | Ordinal: NE/SE/SW/NW



Population Patterns – Dispersed | Concentrated | Linear
Ecumene – Continuous = full area settled | Discontinuous

...

See on Wikiteka »

again 3

🧾 1. Data Transfer Instructions

Used to move data between registers, memory, and I/O.

Instruction

Use

MOV

Transfer data between registers/memory

PUSH / POP

Stack operations (store/retrieve data)

XCHG

Exchange contents of two operands

IN / OUT

Input from or output to a port

LEA

Load effective address

LDS / LES

Load pointer and segment

XLAT

Translate byte using lookup table

2. Arithmetic Instructions

Perform basic math operations.

Instruction

...

See on Wikiteka »