Answer: 1)-Language the browser is set to
b)-Type of browser
d)-Device and operating system
Explanation: Google Analytics Tracking code is the tool that works on the website for scanning the information and data present on pages of it. It can easily track the record of operating system and the number of users visiting the pages .
It can also keep the record of browser's languages that is set on the device and kind of browser that is being operated.Other option is incorrect because it does not trace the favorite website of user , it can only track the website type. Thus, the correct options are (1), (b) and (d).
1. C.) Macintosh
2. B.) Semiconductor
3. D.) Microchip
Honestly, that sounds like Space Invaders to me if that's an answer choice.
Answer:
"The British" are people statically from Great Britain in the UK.
Answer:
import java.util.*;
public class work {
// function for counting unique character
public static int numUnique(String input) {
boolean[] list = new boolean[Character.MAX_VALUE];
for (int i = 0; i < input.length(); i++) {
list[input.charAt(i)] = true;
}
int count = 0;
for (int i = 0; i <list.length; i++) {
if (list[i] == true){
count++;
}
}
return count;
}
public static void main(String args[])
{
List<String>list=new ArrayList<>(); // creatng array list of type string
list.add("abcdef");
list.add("aaabcd");
list.add("bccddee");
list.add("abcddd");
list.add("a");
for(String str:list)
{
// for printing the results
System.out.println("given string : "+ str+" , number of unique values :"+numUnique(str));
}
}
}
Explanation: