“Opium is a type of a drug,it can be a weed or a narcotic.” (Opium not Acid or Weed
<span>D. all of the above is the answer
</span>
Answer:
An operating system (OS) is system software that manages computer hardware, software resources, and provides common services for computer programs. ... Other specialized classes of operating systems (special-purpose operating systems), such as embedded and real-time systems, exist for many applications.
Explanation:
hope it helps
First of all, we will need a function that checks if a number is prime or not:
boolean isPrime(int n){
for(int i=2; i<=math.sqrt(n); i++){
if(n % i == 0) return false;
}
return true;
}
Then, in the main program, we will call this function with all the desired inputs, and we will print the prime numbers:
for(int n=100; n<= 1000; n++){
if(isPrime(n)) print(n);
}