Answer:
google can find u some discord servers
Explanation:
I think its C information. Sowwy if I’m wrong
The JavaScript DOM defines items on a web page such as graphics, tables, and headers as objects.
Answer:
idk what we are multipyling
Explanation:
please write out clearly so I can solve
Answer:
public int removeDupes(int[]a){
int n =0;
for(int x =0;x<a.length;x++){
for(int y=0;y<a.length;y++){
if(a[x]==a[y]){
n++;
}
}
int left = a.length-n;
return left;
}
}
Explanation: