wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

202405 BGMC4543 Quiz 2

Total questions: 10

Worksheet time: 6mins

Name
Class
Date
1.

Which of the following CORRECTLY describe the Deterministic Model?

a)

The model has some uncertainty implemented with random variables.

b)

Most of the real system modelled usually include properties that are random.

c)

The model exhibits a complete predictable behaviour.

d)

Car-wash system with cars arrive at exact specific instants and have same exact specified service periods.

e)

Car-wash system with varying car arrivals and varying service demand.

2.

Which of the following is NOT one of the categories of the computational models?

a)

Conceptual Model

b)

Continuous Model

c)

Discrete Model

d)

Deterministic Model

3.

What is the equation of the number of links, Ln for the number of connected computers?

a)

Ln​ = Ln

b)

Ln​ = Ln​ + 1

c)

Ln​ = Ln​ + (n − 1)

d)

Ln​ = 100

4.

Which following is the library needed to describe the info dialog box?

a)

import tkinter

b)

import time

c)

import tkinter.messagebox

d)

no library import necessary

e)

import numpy

5.

Which of the following is NEEDED in the sketching the graph.

a)

Title Label

b)

X-Axis Label

c)

Y-Axis Label

d)

Creative Decorations

6.

Which of the following library is needed to plot graph in the Jupyter notebook using Python?

a)

import numpy as np

b)

import time as t

c)

import pandas as pd

d)

import matplotlib.pyplot as pp

7.

When computing the coefficients for the curve fitting polynomial, which Numpy's function is used?

a)

np.polyval(c, xc)

b)

np.polyfit(x, y, deg)

c)

np.linspace(xi, xf, M)

d)

np.array(y)

8.

Assumed that "import matplotlib.pyplot as pp" has been executed.

Which of the followings are the statements needed to correctly plot the graph in Jupyter Notebook?

a)

pp.ylabel("t values")

b)

pp.plot(x, y, marker='o', linestyle='none')

c)

pp.title("y values vs x values")

d)

pp.xlabel("x values")

e)

pp.fill(x, y)

9.

Based on the show plotted graph, what degree of polynomial that the graph is drawn?

a)

Degree = 0

b)

Degree = 1

c)

Degree = 2

d)

Degree = 3

e)

Degree = 4

10.

Which of the followings describes incorrectly on the Quadratic Growth model?

a)

The data values in Quadratic Growth model do not increase (or decrease) by a constant amount.

b)

Quadratic Growth model is the simplest type of mathematical models.

c)

The differences of the data in Quadratic Growth model change linearly.

d)

Quadratic Growth model has all the differences are all equal.

e)