Question: Given:
public class TestClass {
   static int count = 0;
   public static void main(String[] args) throws Exception{
       ExecutorService es = Executors.newFixedThreadPool(5);
       for(int i=0; i<5; i++){
           es.submit( () ->
           {
               for(int j=0; j<5000; j++){
                   TestClass.count++;
               }
           }
           );
       }
       es.awaitTermination(10, TimeUnit.SECONDS);
       es.shutdownNow();
       System.out.println(count);
   }Â
}
Identify correct statement(s) about the above code.
Select 2 option(s)