part 9 Flashcards

1
Q

how do we do internal control (house)

A

monitoring, information & communication (risk assessment, control activities), control environment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

record-to-report process

A

Inventory account, AP, AR, Cash account

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

AR analysis to check the reliability of data

A

check if cash_not_ar = 1 have a collection_date

is the end balance of AR correct recorded (internal control weaknesses)

can AR be collected (impact liquidity)

sales recorded in the right period (wrong financial statement)

transaction information match trial balance information

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

ceiling function

A

used to ensure that the resulting values are integers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

rnorm(nrow(sku), 2, 1)

A

random normal distribution with a mean of 2 and a standard deviation of 1.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

abs()

A

takes the absolute value of each element (ensures it to be positive)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

ceiling()

A

rounds each positive value up to the nearest integer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

nrow()

A

determines the number of random values to be generated from a … distribution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

rpois

A

generates random samples from a poisson distribution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

rbinom

A

generates random numbers from a binomial distribution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

rbinom(no_of_sales, 1, 0.2)

A

no_of_sales is random samples you want to create, 1 = number of trials for each sample –> binary (0 or 1) indicating whether … was a succes or not
0.2 = probability of succes for each trial

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

replace = T

A

= TRUE, means that an element can be selected more than once. (FALSE means that each element can only be selected once)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

sample()

A

function used for random sampling in R

How well did you know this?
1
Not at all
2
3
4
5
Perfectly