Answer table

Comment on this blog post to submit your hacks.

Fill out the table with your full name and the LETTER of each answer for every question. In order to receive any credit you must fill out the answer table according to the directions! Each question is worth .1 points. To get >0.9/1 you can show your understanding in the area labeled extra.

Question Answer
Vardaan Sinha
1 N/A
2 N/A
3 C
4 B
5 C
6 A
7 A
8 N/A
9 B

Extra

Show your understanding. You could make a simple simulation, define vocab, etc.

EXTRA:

Based on the lesson today about simulations, I did some more research about simulations in the Python programming language.

When I did this research, I landed upon a Python package known as "SimPy". This Python framework allows for users to create virtual simulations that can solve problems, such as decidable/undecidable problems and even optimization problems, which focus on making a simulation more efficient.

The below line shows how you can set up the SimPy environment at the start of a program:

NOTE: You have to install the simpy package beforehand. This can be done using pip (which we have used prior in APCSP) with the command:

python3 -m pip install simpy

env = simpy.Environment()

WHAT QUESTIONS

3: What is not a reason to use a pseudo-random number generator when making a simulation?


A: To mock imperfections from the real world
B: To save resources
C: To make the simulation more accurate

4: Which of the following is the least likely factor to be removed from a flight(air traffic) simulation for functionality?
A: Weather
B: Other aircraft
C: Imperfections on aircraft

Experiment/Calculation or Simulation

5: What is not (usually) a difference between a experiment and a simulation?
A: Resources and time needed
B: Factors considered
C: Situation considered

For each situation answer: Would it make more sense to use a simulation or a experiment/calculation?

6: A car company needs to know how safe it's customers will be if it's new car crashes
A: Simulation
B: Experiment/calculation

7: A environmental group wants an accurate guess on the impact the greenhouse effect will have on the environment
A: Simulation
B: Experiment/calculation

9: A teacher want's to find the average score from a final
A: Simulation
B: Experiment/calculation