Answer:
#include <iostream>
using namespace std;
void findDuplicate(int arr[], int size) {
for(int i = 0; i < size; ++i) {
for(int j = i+1; j < size; ++j) {
if(arr[j] == arr[i]) {
cout << arr[j] << endl;
return;
}
}
}
cout << -1 << endl;
}
int main() {
int arr[] = {2, 3, 5, 6, 11, 20, 4, 8, 4, 9};
findDuplicate(arr, 20);
return 0;
}
Explanation:
A DoS attack is known as attempts to slow down or stop a computer system or network by sending repetitive requests for information.
<h3>What is a DoS attack?</h3>
A DoS attack is known to be a form of system attack that is often launched from a lot of compromised devices. It is said to be distributed in the world as a kind of botnet.
This is known to be a form of denial of service attacks, where there is the use of a single Internet-connected device that is the use of one network connection to drown a target with a deadly form of traffic.
Learn more about DoS attack from
brainly.com/question/13068595
Answer:
Explanation:
Circle(centerX, centerY, radius, fill='black', border=None,
borderWidth=2, opacity=100, rotateAngle=0, dashes=False,
align='center', visible=True)