An accounting clerk for Christopher's Cheesecakes does not have access to the salary information for individual employees but wanted to know the salary of a new hire. He pulled total payroll expenses for the pay period before the new person was hired and then pulled the same expenses for the following pay period. He computed the difference between those two amounts to determine the individual's salary. What type of attack occurred?

A. Aggregation
B. Data diddling
C. Inference
D. Social engineering


Answer: C. Inference

Computer Science & Information Technology

You might also like to view...

What is the right code for the boolean empty() method?

A queue based on a linked list uses the following code ``` class Node { String element; Node next; Node (String el, Node n) { element = el; next = n; } } Node front = null, rear = null; ``` A) return front == null; B) if (rear == front) return true; else return false; C) if (front == null) throw new RuntimeException("Empty"); else return false; return true; D) return front == rear;

Computer Science & Information Technology

The VLOOKUP function finds values by searching across the first row of a table

Indicate whether the statement is true or false.

Computer Science & Information Technology

Vendor class is a(n) ________class used to identify a client's vendor type and configurationwhen obtaining a DHCP lease

Fill in the blank(s) with correct word

Computer Science & Information Technology

____________ is the generic term used in the description of biometric systems (e.g., face or iris) relating to their fundamental function.

A. recognition B. identification C. template D. verification E. none or the above

Computer Science & Information Technology