I would say D. But l may be incorrect. Al bots are not made for games, but are made for information.
Sorry l can't be much of help, but l do hope that I did help you out in a way.
Answer:
Explanation:
The following code is written in Java and is a function/method that takes in an int array as a parameter. The type of array can be changed. The function then creates a counter and loops through each element in the array comparing each one, whenever one element is found to be a duplicate it increases the counter by 1 and moves on to the next element in the array. Finally, it prints out the number of duplicates.
public static int countDuplicate (int[] arr) {
int count = 0;
for(int i = 0; i < arr.length; i++) {
for(int j = i + 1; j < arr.length; j++) {
if(arr[i] == arr[j])
count++;
}
}
return count;
}
Answer:
c. graphical user interface
Explanation:
An operating system may be defined as the system software which manages the various computer hardware, resources, software and also provides other computer services. It communicates the user with the computer and the computer runs according to the instruction provided by the operating system. It is commonly known as the OS.
Operating system does not provide any graphical user interface. It consists of necessary components of the software to facilitate the usage or running of the computer.
It seems that you have missed the necessary options for us to answer this question, so I had to look for it. Anyway, here is the answer. Among the kinds of software, the one that is not <span>usually included by an installed operating system is the SPREADSHEET. Hope this helps.</span>