wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

QMMS Finals

Total questions: 50

Worksheet time: 25mins

Name
Class
Date
1.

What is the goal of model optimization?

a)

Maximizing error rates

b)

Minimizing profit

c)

Ignoring constraints

d)

Achieving the best performance according to a predefined criterion

2.

What are constraints in model optimization?

a)

Conditions that must be satisfied during optimization

b)

Variables adjusted during optimization

c)

Probabilistic models

d)

Methods used to find optimal values

3.

Which algorithm adjusts parameters in the direction of the negative gradient of the objective function?

a)

Gradient Descent

b)

Simulated Annealing

c)

Particle Swarm Optimization

d)

Genetic Algorithms

4.

What is the purpose of iterative optimization in model optimization?

a)

To validate the model

b)

To initialize parameters

c)

To set constraints

d)

To adjust the parameters iteratively

5.

What is the convergence check in model optimization?

a)

Selecting an optimization algorithm

b)

Initializing parameters

c)

Checking if the optimization process has converged to an optimal solution

d)

Determining the objective function

6.

Which application involves hyperparameter tuning for models like neural networks and decision trees?

a)

Machine Learning

b)

Finance

c)

Engineering

d)

Operations Research

7.

What tool provides utilities for hyperparameter tuning and model selection in Python?

a)

MATLAB

b)

Gurobi and CPLEX

c)

TensorFlow and Keras

d)

Scikit-Learn

8.

What is the objective of optimizing a machine learning model in the provided example?

a)

Maximize the prediction error

b)

Minimize the prediction error

c)

Ignore constraints

d)

Use Genetic Algorithms

9.

What is the purpose of validation in model optimization?

a)

To set constraints

b)

To initialize parameters

c)

To validate the optimized model using separate data

d)

To define the objective function

10.

Which algorithm uses probabilistic models to find the minimum of an objective function?

a)

Bayesian Optimization

b)

Simulated Annealing

c)

Genetic Algorithms

d)

Gradient Descent

11.

Which of the following is a widely used Pseudorandom Number Generator?

a)

Mersenne Twister

b)

Linear Congruential Generator (LCG)

c)

Fortuna

d)

Xorshift

12.

What is the formula for the Linear Congruential Generator (LCG)?

a)

X_{n+1} = (aX_n / c) mod m

b)

X_{n+1} = (aX_n * c) mod m

c)

X_{n+1} = (aX_n - c) mod m

d)

X_{n+1} = (aX_n + c) mod m

13.

Which method is used to convert two uniform random numbers into two normally distributed numbers?

a)

Box-Muller Transform

b)

Fisher-Yates shuffle

c)

Marsaglia Polar Method

d)

Inverse Transform Sampling

14.

What is the purpose of the Autocorrelation Test for pseudorandom numbers?

a)

Checks if the number of ones and zeros in a binary sequence are approximately equal

b)

Examines the correlation between elements in the sequence at different lags

c)

Analyzes the occurrence and length of runs of identical digits

d)

Uses the Fourier transform to detect periodic patterns in the sequence

15.

Which suite is designed for evaluating the randomness of binary sequences?

a)

NIST Statistical Test Suite

b)

SmallCrush

c)

TestU01

d)

Diehard Tests

16.

What is a good practice for seed initialization in Pseudorandom Number Generators?

a)

Use a seed based on the user's name

b)

Use a variable seed like system time

c)

Use a fixed seed for consistency

d)

Use a seed based on the current date

17.

Which PRNG is designed for cryptographic applications?

a)

Linear Congruential Generator (LCG)

b)

Mersenne Twister

c)

Xorshift

d)

Cryptographically Secure PRNGs (CSPRNGs)

18.

What is the purpose of the Frequency Test (Monobit Test) for pseudorandom numbers?

a)

Checks if the number of ones and zeros in a binary sequence are approximately equal

b)

Analyzes the occurrence and length of runs of identical digits

c)

Uses the Fourier transform to detect periodic patterns in the sequence

d)

Examines the correlation between elements in the sequence at different lags

19.

Which library is recommended for generating and transforming pseudorandom numbers?

a)

NumPy

b)

SciPy

c)

All of the above

d)

Python's `random` module

20.

What is the purpose of shuffling in pseudorandom number generation?

a)

Analyzes the occurrence and length of runs of identical digits

b)

Selects a random subset of elements from a larger set

c)

Randomly rearranges elements in a list

d)

Converts two uniform random numbers into two normally distributed numbers

21.

What do stochastic models incorporate in their predictions?

a)

Deterministic variables

b)

Randomness and uncertainty

c)

Fixed outcomes

d)

Constant variables

22.

Which type of variables result from random phenomena?

a)

Continuous variables

b)

Controlled variables

c)

Discrete variables

d)

Predictable variables

23.

Which distribution describes the likelihood of different outcomes for a random variable?

a)

Logistic distribution

b)

Exponential distribution

c)

Uniform distribution

d)

Normal distribution

24.

What is a collection of random variables indexed by time or space called?

a)

Controlled process

b)

Deterministic process

c)

Stochastic process

d)

Random process

25.

Which type of stochastic model describes systems that transition from one state to another in a memoryless process?

a)

Monte Carlo Simulation

b)

Markov Chains

c)

Poisson Processes

d)

Brownian Motion

26.

What does a Poisson Process model in terms of event occurrence?

a)

Events occur at a constant rate

b)

Events occur at a decreasing rate

c)

Events occur at a random rate

d)

Events occur at an increasing rate

27.

Which field uses stochastic models for option pricing and risk management?

a)

Operations Research

b)

Biology

c)

Engineering

d)

Finance

28.

What is the best practice for stochastic modeling that involves gaining a deep understanding of the system being modeled?

a)

Data Collection

b)

Sensitivity Analysis

c)

Understand the System

d)

Model Validation

29.

Which type of analysis assesses how sensitive the model is to changes in parameters and assumptions?

a)

Simulation Analysis

b)

Sensitivity Analysis

c)

Model Validation

d)

Data Analysis

30.

What are stochastic models powerful tools for capturing in many systems?

a)

Constant variables

b)

Deterministic outcomes

c)

Randomness

d)

Fixed predictions

31.

What is the core idea behind the Monte Carlo method?

a)

Using statistical modeling exclusively

b)

Using machine learning models

c)

Using random numbers to sample from a probability distribution

d)

Using deterministic algorithms

32.

Which field does not commonly use the Monte Carlo method?

a)

Biology

b)

Physics

c)

Operations research

d)

Finance

33.

What does the Law of Large Numbers state in relation to the Monte Carlo method?

a)

The sample mean decreases with the number of samples

b)

The sample mean remains constant regardless of the number of samples

c)

The sample mean diverges from the expected value as the number of samples increases

d)

The sample mean converges to the expected value as the number of samples increases

34.

Which application does not fall under the Monte Carlo method?

a)

Risk analysis and financial modeling

b)

Physics and engineering

c)

Machine learning

d)

Data visualization

35.

What is a key step in Monte Carlo simulation after defining the problem?

a)

Analyze results

b)

Generate random samples

c)

Perform simulation

d)

Implement variance reduction techniques

36.

What is an advantage of the Monte Carlo method?

a)

Complex implementation

b)

Limited applicability

c)

High convergence rate

d)

Ease of implementation

37.

What is a disadvantage of the Monte Carlo method?

a)

Random number quality

b)

Dependence on deterministic methods

c)

Fast convergence rate

d)

Low computational intensity

38.

Which technique is used to reduce variance in Monte Carlo simulations?

a)

Control Variates

b)

Random sampling

c)

Parallel Computing

d)

Importance Sampling

39.

What is a key aspect of Quasi-Monte Carlo methods?

a)

Dependence on deterministic algorithms

b)

High computational intensity

c)

Use of purely random samples

d)

Use of low-discrepancy sequences

40.

How can the Monte Carlo method be described in terms of handling uncertainty and complexity?

a)

It is ineffective in handling uncertainty and complexity

b)

It is only applicable to deterministic systems

c)

It is a powerful tool in tackling problems involving uncertainty and complexity

d)

It is limited to handling simple problems

41.

Which simulation software is primarily used for discrete event simulation and has features like visual modeling environment and statistical analysis tools?

a)

Vensim

b)

Stella Architect

c)

NetLogo

d)

Simul8

42.

What is the main application of the simulation software AnyLogic?

a)

Education

b)

Business strategy

c)

Healthcare

d)

Supply chains

43.

Which simulation system is designed for modeling and simulating integrated and complex systems based on the Modelica language?

a)

Simulink (MATLAB)

b)

Repast

c)

Dymola

d)

Arena

44.

What is the main application of the simulation software Aspen Plus?

a)

Supply chains

b)

Healthcare

c)

Petrochemical industries

d)

Automotive

45.

Which simulation system is known for its block diagram modeling and integration with MATLAB?

a)

MATLAB/Simulink

b)

Vensim

c)

AnyLogic

d)

Modelica

46.

What is the main application of the simulation software HYSYS?

a)

Business strategy

b)

Refining

c)

Logistics

d)

Education

47.

Which simulation software supports agent-based modeling, discrete event, and system dynamics modeling?

a)

AnyLogic

b)

Repast

c)

Simul8

d)

NetLogo

48.

What is the main application of the simulation software Simulink (MATLAB)?

a)

Automotive

b)

Healthcare

c)

Logistics

d)

Business strategy

49.

Which simulation system is a powerful tool for policy analysis and strategic planning?

a)

Arena

b)

Stella Architect

c)

Powersim Studio

d)

Vensim

50.

What is the main application of the simulation software Simul8?

a)

Manufacturing

b)

Education

c)

Automotive

d)

Social sciences