Answer:
C
Explanation:
Decision Support Systems (DSSs) model information using OLAP, helps in providing assistance to evaluate and choose among different course of action.
For option A, an insurance company using DSS to evaluate risk of providing insurance to drivers who doesn't have perfect records and option B and D medical doctor entering symptoms into a system to aid in diagnosing and treating patients and dentist entering symptoms into a system to help diagnose and treat patients respectively
Two-way communication is when one person is the sender and they transmit a message to another person, who is the receiver. When the receiver gets the message, they send back a response, acknowledging the message was received.
Answer:
it is a field of study concerned with the theory and technique of psychological measurement.
or
Medición de las funciones mentales en general y de las características psíquicas de los individuos en particular.
Explanation:
Answer:
Each time you insert a new node, call the function to adjust the sum.
This method has to be called each time we insert new node to the tree since the sum at all the
parent nodes from the newly inserted node changes when we insert the node.
// toSumTree method will convert the tree into sum tree.
int toSumTree(struct node *node)
{
if(node == NULL)
return 0;
// Store the old value
int old_val = node->data;
// Recursively call for left and right subtrees and store the sum as new value of this node
node->data = toSumTree(node->left) + toSumTree(node->right);
// Return the sum of values of nodes in left and right subtrees and
// old_value of this node
return node->data + old_val;
}
This has the complexity of O(n).
Explanation: