Either wiped off the drive, or right next to the new ones, I do not recommend keeping the old files.
        
             
        
        
        
Usually you can just report the question as useless or just report in in general. But I myself have read some answers and they dont even pertain to the question, it confuses me alot 
 
        
                    
             
        
        
        
Answer:
see explaination 
Explanation:
import java.io.*;
import java.util.Scanner;
public class Winners {
 public static void main(String args[]) throws IOException {
 Scanner sc = new Scanner(new File("WorldSeriesWinners.txt"));
 String commands[] = new String[100000];
 int c = 0;
 while (sc.hasNextLine()) {
 
 String input = sc.nextLine();
 System.out.println(input);
 if (input.isEmpty())
 continue;
 commands[c++] = input;
 }
 sc.close();
 Scanner keyboard = new Scanner(System.in);
 System.out.println("Enter the name of a team: ");
 String name = keyboard.nextLine();
 int count = 0;
 for (int i = 0; i < c; i++) {
 if (commands[i] != null) {
 if (commands[i].equals(name)) {
 ++count;
 }
 }
 }
 if(count!=0)
 System.out.println(name + " has won the World Series in the time period from 1903 through 2018 " +count + " number of times" );
 else
 System.out.println("Team with name "+name+ " does not exists");
 }
}
 
        
             
        
        
        
The SQL SELECT built-in function COUNT none of the above options.
<h3>What is a SELECT query?</h3>
A select query is known to be a kind of a database object that depicts the information that is shown in Datasheet view. 
Note that A query does not save data, it shows data that is saved in tables.  The SELECT statement is known to be one that is often used to select data from what we call a database.
Hence, The data returned is said to be saved in a result table, known to be the result-set.
Based on the above, the SQL SELECT built-in function COUNT none of the above options.
Learn more about  SQL SELECT from
brainly.com/question/10097523
#SPJ1