Algorithm is part of computer science. You an learn it on Khan academy. (you probably werent looking for this but no one was answering)
Answer:
public ArrayList onlyBlue(String[] clothes){
ArrayList<String> blueCloths = new ArrayList<>();
for(int i =0; i<clothes.length; i++){
if(clothes[i].equalsIgnoreCase("blue")){
blueCloths.add(clothes[i]);
}
}
return blueCloths;
}
Explanation:
- Create the method to accept an Array object of type String representing colors with a return type of an ArrayList
- Within the method body, create and initialize an Arraylist
- Use a for loop to iterate the Array of cloths.
- Use an if statement within the for loop to check if item equals blue and add to the Arraylist.
- Finally return the arrayList to the caller
<span> 13,000 is the same as 1.3 x 10^4</span>
Answer:
this may help "Change default passwords. ...
Restrict access. ...
Encrypt the data on your network. ...
Protect your Service Set Identifier (SSID). ...
Install a firewall. ...
Maintain antivirus software. ...
Use file sharing with caution. ...
Keep your access point software patched and up to date."
Explanation: