marketing

Consumer: The individual who uses or consumes a product or service. Customer: The individual or organization that purchases a product or service. Client: The individual or organization that receives personalized or professional services, often involving an ongoing relationship.

Consumer behavior all activities associated with the purchase, use, and disposal of goods and services, including the emotional, mental, and behavioral processes that precede and follow these activities. 

Internal Influences

...

See on Student Notes »

it mirco

Below are clear, slightly detailed (“little big”) answers to all Short Answer and Long Answer questions from the image.


Short Answer Type Questions

1. Explain the difference between internal audits and regulatory audits.

Internal audits are conducted by an organization’s internal audit team to evaluate internal controls, risk management, and operational efficiency. They focus on improving internal processes.

Regulatory audits are performed by external regulators or certified auditors...

See on Student Notes »

micro it

Short Answer Type Questions
1. Difference between internal audits and regulatory audits
•Internal audits are conducted by an organization’s own staff or consultants to evaluate the effectiveness of internal controls, risk management, and operational processes, guiding improvements for management. Regulatory (or statutory) audits are performed by external professionals and required by law, focusing on confirming compliance with regulations and standards, usually reporting findings to shareholders
...

See on Student Notes »

question

2. Features of Classroom Discussion
Classroom discussion is an interactive technique that promotes student thinking, participation, and collaborative learning. One of its major features is active involvement of learners. Instead of passively listening to the teacher, learners share ideas, opinions, and interpretations on a given topic. This helps them construct knowledge rather than merely receive it.
Another key feature is exchange of viewpoints. Students listen to multiple perspectives and learn
...

See on Student Notes »

Yfyfttfyffoguddt

A Python dictionary is a collection of key-value pairs used to store data in an unordered, mutable structure. You create a dictionary using curly braces `{}` with key-value pairs, for example: `my_dict = {"name": "Alice", "age": 25}`. You can also use the `dict()` constructor to create dictionaries. Accessing values is done by referring to their keys: `my_dict["name"]` returns `"Alice"`. 

You add or update items by assigning a value to a key, such as `my_dict["city"] = "New York"` to add new or

...

See on Student Notes »

Human anatomy and physiology -II

1.Saliva: Lubricates food for swallowing, moistens the mouth, and contains the enzyme Salivary Amylase (Ptyalin) which begins the digestion of carbohydrates (starches).HCl (Hydrochloric Acid): Maintains an acidic pH (1.5–3.5) in the stomach to activate pepsinogen into pepsin (for protein digestion) and kills ingested bacteria/microbes.

2.BMR : is the minimum amount of energy (calories) required by the body to maintain vital life functions (breathing, circulation, cell production) while at complete

...

See on Student Notes »

Python hello

🐍 Python Loop and Branching Statements
Python provides powerful structures for iteration (loops) and flow control (branching statements) that allow you to execute blocks of code repeatedly or conditionally.
Python Loop Statements
Loops are used to execute a block of code multiple times. The main loop types in Python are while and for.
1. The while Loop
The while loop repeatedly executes a block of statements as long as a given condition is True.
 * Syntax:
   while condition:
    # statement(s)

...

See on Student Notes »

ਹੈਲੋ ਵਰਡ

Keywords and identifiers are fundamental elements in programming languages used to define variables, functions, and other constructs, with keywords being reserved words that have special meanings, and identifiers being names given to user-defined entities.

Comments in programming serve the essential purpose of making the source code more understandable and maintainable by providing textual annotations that explain the logic, purpose, or any additional information about the code. They help programmers

...

See on Wikiteka »

CM1417

# **FGI**

## **Alkyl Halides**

- Alkyl halide or haloalkanes
- Compounds with a halogen atom bonded to a saturated sp3-hybridized carbon atom
- Halogens increases in size down the periodic table
- Lengths of corresponding carbon-halogen bonds increase accordingly, where the C-X carbon bond strengths decrease going down the periodic table.
- The carbon-halogen bond of alkyl halides is polarised with the carbon atom bearing a slight positive charge (d+) and the halogen a slight negative charge
...

See on Student Notes »