sosick8650 sosick8650 08-03-2024 Computers and Technology contestada How many times will the following loop be executed?Also show the dry run of the program.int x=1000;while(true){if(x<500)break;x=x-100;}