Answer:
B. The program has a compile error because you attempted to invoke the GeometricObject class's constructor illegally.
Explanation:
To call a superclass constructor, the user must use super(). This is necessary unless default constructors are used. Also, it is vital to make sure if their are appropriate argument to be used while invoking the superclass constructor.
Answer:
Answer explained below
Explanation:
void bubbleSort(int X[], int Y[], int n)
{
int i, j;
for (i = 0; i < n-1; i++)
// Last i elements are already in place
for (j = 0; j < n-i-1; j++)
if (X[j] > X[j+1])
{
swap(X[j],X[j+1])
swap(Y[j],Y[j+1]);
}
if (X[j] == X[j+1]&&Y[j]<Y[j+1])
{
swap(X[j],X[j+1])
swap(Y[j],Y[j+1]);
}
}
Since the above algorithm contains 2 nested loops over n.
So, it is O(n^2)
Answer:
C. analyzes data and trends and predicts future data and trends.
Explanation:
Predictive analytics can be defined as a statistical approach which typically involves the use of past and present data ( factual informations) in order to determine unknown events or future performances of a business firm or organization. It is focused on determining what is likely to happen in the future.
For example, a data analyst trying to determine how to effectively stock his company's warehouses incase of an anticipated pandemic and he's using current sales data to project the demands.
Hence, a predictive data analyst is an individual who analyzes data and trends and predicts future data and trends.
The only given option that is a physical security measure is; Passwords
<h3>
Computer Security</h3>
Physical security is defined as the protection of personnel, hardware, software, networks or data from the adverse effect of human actions and events. These adverse actions or events could lead to severe loss and damage to an enterprise or any institution or even personnel.
Now, among the given options, firewall is a network security that simply monitors and filters the incoming and outgoing network traffic on a computer.
Anti-virus is uses to detect and remove corrupt files from a computer system. Whereas passwords are physical security measures because they involve human actions.
Read about Computer security at; brainly.com/question/26260220