D. A DDoS knocks a webpage offline by spamming the IP with loads of traffic so it over loads the server.
Answer:
yeah I can help u but how will I get ur email and password?
Answer:
Isnt there another thing that is supposed to be there like some website
Explanation:
The total number of chars in each string is basically the size of each string.
Using JAVA:
String[] arr = {"hello", "my", "name", "is", "Felicia"}; int count = 0; for(int i = 0; i < arr.length; i++) { count = count + arr[i].length(); System.out.println("Characters in " + arr[i] + ": " + count); }
Output:
<span>Characters in hello: 5
Characters in my: 7
Characters in name: 11
Characters in is: 13
Characters in Felicia: 20</span>