Accounting Concepts: Assets, Liabilities, and Equity Explained
Classified in Mathematics
Written on in
English with a size of 3.29 KB
Accounting Concepts: Real Value Recording
Cost Concept: To record the real value and not the estimated value.
Classified in Mathematics
Written on in
English with a size of 3.29 KB
Cost Concept: To record the real value and not the estimated value.
Classified in Mathematics
Written on in
English with a size of 4.19 KB
Classified in Mathematics
Written on in
English with a size of 4.08 KB
To identify and revoke public privileges, use the following query:
SQL> SELECT table_name FROM dba_tab_privs WHERE owner='SYS' AND privilege = 'EXECUTE' AND grantee='PUBLIC' AND table_name LIKE 'UTL%';SQL> SELECT grantee FROM dba_role_privs WHERE granted_role = 'DBA';SQL> SELECT * FROM V$PWFILE_USERS;Check the current audit parameters:
SHOW PARAMETER AUDIT_FILE_DEST || AUDIT_SYS_OPERATIONS || AUDIT_TRAIL;Common Audit Commands:
SQL> AUDIT session;SQL> AUDIT session by user;SQL> AUDIT TABLE BY hr WHENEVER NOT SUCCESSFUL;SQL> AUDIT DROP ANY TABLE BY hr BY SESSION;SQL> AUDIT UPDATE ON hr.employees BY ACCESS;Classified in Mathematics
Written on in
English with a size of 3.17 KB
Represents the difference between budgeted (incurred) and actual (allocated) fixed manufacturing costs.
when demand is low the risk of loss is high
Gross Margin will always be greater than contribution margin.
changes in the quantity of units actually sold
Increases when the contribution margin per unit decreases, all other things being equal
Nonmanufacturing costs are expensed in the future under variable costing.... Continue reading "Understanding Production Volume Variance and Costing Methods" »
Classified in Mathematics
Written on in
English with a size of 3.31 KB
Goal/purpose: Evaluate mean difference between 2 or more treatments
Notations:
k= # of treatment condition
T= sum of squares for each treatment
G= grand total of all scores in study
N= total number of scores
kn= when all samples are same size
n1,n2= # of scores in each treatment
Post
... Continue reading "Understanding Anova and Correlation in Research Studies" »Classified in Mathematics
Written on in
English with a size of 2.78 KB
The COUNTIF function counts cells that meet a single criterion.
The COUNTIF function can be used to count cells with dates, numbers, and text that match specific criteria.
The COUNTIF function supports logical operators (>, <, <>, =) and wildcards (*, ?, "") for partial matching.
To count cells that match specified criteria.
A number representing the count of cells.
COUNTIF counts the number of cells in the specified range that contain numeric values less than a given 'X' and returns the result as a number.
Classified in Mathematics
Written on in
English with a size of 4.42 KB
Private Sub c1_Change()
cantidad = c1
End Sub
This procedure calculates the total price based on the selected product and quantity, applies conditional discounts, and determines the final amount payable, including VAT (19%).
Private Sub calcular_Click()
Dim total As Double
Dim dcto As Double
' Calculate base total based on product price
If producto = "Arroz" Then
total = 890 * cantidad
End If
If producto = "Fideos" Then
total = 580 * cantidad
End If
If producto = "Torta Piña" Then
total = 2690 * cantidad
End If
' Apply conditional... Continue reading "Implementing Pricing Logic and Data Storage in Excel VBA" »Classified in Mathematics
Written on in
English with a size of 4.96 KB
3.11. QUESTIONNAIRE DESIGN
1.Roles of questionnaires: Primary purpose: facilitate the extraction of data from a respondent. Secondly: It serves as an ‘aide memoire’ to the interviewer.Thirdly: It provides consistency in the way the interview is conducted. Without a questionnaire: questions would be asked in a haphazard way at the discretion of the individual.
2.Types of questionnaires: Structured questionnairesconsist of closed or prompted questions (with predefined answers) that require the designer to anticipate all possible answers. Semi-structured questionnaires comprise a mixture of closed and open questions used in B2B market research where there is a need to accommodate a large range of different responses from companies.Unstructured... Continue reading "JOJO" »
Classified in Mathematics
Written on in
English with a size of 2.32 KB
Alternatives are options for a decision. Outcomes are influenced by random factors beyond control, known as states of nature. Prior probabilities indicate the likelihood of each state. Each alternative and state combination yields a payoff, often monetary.
Choose the alternative with the highest possible payoff.
Choose the alternative with the lowest possible cost.
Choose the alternative with the best worst-case payoff.
Choose the alternative with the lowest worst-case cost.
Minimize the maximum regret by constructing a regret table.
Classified in Mathematics
Written on in
English with a size of 5.23 KB