CS620 Past Papers
CS620 Past Papers
Key Difference:
OR
Event: An action or occurrence that triggers a response or change in a system (e.g., a purchase).
Examples:
An entity is a distinct object or concept within a system that holds data and has specific
characteristics or attributes. Entities are typically the "things" that events affect or
involve.
OR
Entity: A distinct object or concept in a system with attributes (e.g., customer, product).
Examples:
Relationship:
Events often occur as actions or changes involving entities. For instance, the event
"placing an order" (event) involves the "customer" and "product" (entities).
Example:
Such models are used in fields like finance, healthcare, and supply chain management
to analyze complex, unpredictable systems.
1. Stress Reduction: Stimulating tapping points helps lower cortisol levels and
reduce stress.
2. Emotional Relief: Can alleviate negative emotions like anxiety, anger, or fear.
3. Improved Focus: Clears mental blocks, aiding concentration and clarity.
4. Pain Management: May reduce physical pain by improving energy flow in the
body.
5. Self-Empowerment: Offers a quick, self-administered tool for emotional
regulation and well-being.
Tapping points are linked to energy meridians, helping restore balance and promote
relaxation.
Long Questions:
Key Features:
Example:
Traffic Simulation:
By simulating these interactions, ABM can help analyze traffic flow, identify bottlenecks,
and test policies like signal timing or lane restrictions.
This approach is also widely applied in economics, biology, social sciences, and urban
planning.
Q2. How can we simulate a coin toss using Excel?
You can simulate a coin toss in Excel using the RAND or RANDBETWEEN function.
Here's how:
Steps:
1. Using RANDBETWEEN:
o In a cell, enter the formula:
=IF(RANDBETWEEN(0,1)=0, "Heads", "Tails")
o This generates a random number (0 or 1).
0 represents "Heads."
1 represents "Tails."
2. Using RAND:
o In a cell, enter the formula:
=IF(RAND()<0.5, "Heads", "Tails")
o This generates a random decimal between 0 and 1.
Values less than 0.5 are "Heads."
Values 0.5 or higher are "Tails."
3. Simulating Multiple Tosses:
o Drag the formula down in multiple cells to simulate multiple coin tosses.
Optional:
Use the COUNTIF function to count the occurrences of "Heads" and "Tails."
Example:
o =COUNTIF(A1:A100, "Heads")
o =COUNTIF(A1:A100, "Tails")
This method gives you a quick and easy coin toss simulation!